pax_global_header00006660000000000000000000000064144011742240014511gustar00rootroot0000000000000052 comment=ccd5fad63bb63fd29d1c4891132f1077f26960b1 biber-2.19/000077500000000000000000000000001440117422400125275ustar00rootroot00000000000000biber-2.19/.github/000077500000000000000000000000001440117422400140675ustar00rootroot00000000000000biber-2.19/.github/workflows/000077500000000000000000000000001440117422400161245ustar00rootroot00000000000000biber-2.19/.github/workflows/main.yml000066400000000000000000000024061440117422400175750ustar00rootroot00000000000000name: Biber CI env: URL: https://www.cpan.org/src/5.0/perl-5.32.0.tar.gz MAKEFLAGS: -j2 BIBER_DEV_TESTS: 1 # Controls when the action will run. on: schedule: - cron: "0 2 * * *" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: test: runs-on: ubuntu-latest steps: - name: Install Perl run: | echo Downloading and compiling in [$PWD] from [$URL] mkdir perlsource wget -nc $URL tar -xf $(basename $URL) --strip-components=1 --directory=perlsource pushd perlsource bash +x ./Configure -sde -Dprefix="$RUNNER_WORKSPACE/localperl" test -f Makefile make make install popd - name: Set ENV run: | echo "$RUNNER_WORKSPACE/localperl/bin" >> $GITHUB_PATH echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$RUNNER_WORKSPACE/localperl/lib" >> $GITHUB_ENV - name: Checkout uses: actions/checkout@v2 - name: Install Biber Dependencies Without Test run: | cpan -T Module::Build perl Build.PL ./Build installdeps --cpan_client "cpan -T" - name: Run biber tests run: | ./Build test biber-2.19/.gitignore000066400000000000000000000004051440117422400145160ustar00rootroot00000000000000!*.bib !*.aux !*.bcf !*.bbl doc/*.pdf doc/*.aux doc/*.out doc/*.synctex auto MYMETA.yml MYMETA.json META.yml META.json dist/*/biber-* dist/*/scancache t/tdata/*.rng testfiles/test.bcf.html testfiles/test.blg testfiles/test.bbl dist/build-env-cmds *_flymake* *~ biber-2.19/BUILDERS.README000066400000000000000000000153101440117422400146170ustar00rootroot00000000000000Notes for builders of biber binaries for distribution via CTAN and TeXLive ========================================================================== INTRODUCTION ------------ Biber is a perl program which is "packed" into a stand-alone executable using the perl "pp" program which is part of the PAR::Packer module. The resulting binary is a completely self-contained perl installation including all modules and libraries needed. No perl installation is needed to run biber. On the first run, biber unpacks itself into a cache into a temporary platform-dependent location. This takes a little longer than a normal run as the one-time cache unpacking operation has some overhead. The location of the cache can be viewed by running, after the initial unpack run: biber --cache This cache can safely be deleted and biber will simply unpack itself again on the next run. For developers and the more adventurous, Biber can be run as a raw perl program from the github source and this requires perl to be installed. After fetching the github sources, run "perl Build.PL" and then "Build installdeps" to check the minimum perl requirements and install all required modules. You will also need to install the perl "PAR::Packer" module in order to build a binary version. BUILDING A biber EXECUTABLE --------------------------- In the dist/ directory of the source tree, you will find subdirectories named after various platforms. The directories each contain a "build.sh" bash script which is used to build a biber binary using "pp". To build biber for a new platform, simply copy an existing script and adopt it to your platform. The script basically just calls "pp" with various arguments which are mostly there to force the inclusion of modules and libraries which are not automatically detected by Module::ScanDeps for various reasons (usually, because the modules/libs are implicitly rather than explicitly mentioned in the code). See the biber documentation in the doc/ directory for details on the build process. RELEASING BIBER on CTAN ----------------------- ***** PLEASE open a ticket in the biber githib repo: https://github.com/plk/biber/issues if you wish to provide a binary to CTAN/TexLive to make sure someone isn't already doing this ***** The biber maintainers will make a new release from a new version tag when a new biber version is released. Please subscribe to new releases of https://github.com/plk/biber to be notified when a new biber release is made so that you can build your binaries from the release tag. New releases are usually only made a few times per year. Builders can then upload their binaries directly to CTAN at: https://ctan.org/upload The name of the package should be: biber- The upload should consist of an archive (zip, tar.gz etc.) with exactly the following structure: * biber-/README * biber-/biber--. . . . biber-/biber--. where: *** The top-level "biber-" directory should be lower-case *** is the biber version being built is the generic platform name used for the location in CTAN /biblio/biber/ e.g. "windows", "linux", "macos" etc. is the specific platform name and has no particular format requirements as long as it is clear e.g. "MSWIN64", "linux_x86_64", "darwin_universal" etc. is the archive format extension and you are free to use any commonly recognised format, e.g: .tar.gz .tgz .tar.xz .zip The archive containing biber itself should contain only a single binary called "biber" ("biber.exe" for Windows platforms) For example: biber-linux.tar.gz -> biber-linux/ README biber-2.18-linux_x86_32.tar.gz -> biber biber-2.18-linux_x86_64.tar.gz -> biber biber-windows.tar.gz -> biber-windows/ README.txt biber-2.18-MSWIN32.zip -> biber.exe biber-2.18-MSWIN64.zip -> biber.exe Note: If it necessary to push a fix for a particular platform in between biber releases, in a case for example where there is an issue with the build but there is no change in biber, you should append a dash "-" followed by a montonically increasing integer so that it is clear that the release is the same biber version but is a later version of the build for that platform, e.g: biber-linux.tar.gz -> biber-linux/ README biber-2.18-1-linux_x86_32.tar.gz -> biber biber-2.18-1-linux_x86_64.tar.gz -> biber biber-windows.tar.gz -> biber-windows/ README.txt biber-2.18-2-MSWIN32.zip -> biber.exe biber-2.18-2-MSWIN64.zip -> biber.exe ** DO NOT change the name of the binary inside the archive - it should always be "biber" or "biber.exe" ** A package update should always contain all platforms (e.g. 32 and 64 bit) ** This makes it clear that the biber version remains the same and all that is changed is some aspect of the binary cache infrastructure for the platform. The README should simply contain the following where is as described above: ------ These are biber binaries for the platform(s). See https://ctan.org/pkg/biber for documentation, sources, and all else. ------ When uploading to CTAN, use the biber version as the version number (with any platform-specific addition as mentioned above), e.g: 2.18 2.18-2 The "Suggested CTAN directory" should be a subdir of biblio/biber, e.g: biblio/biber/biber-linux biblio/biber/biber-linux-musl biblio/biber/biber-macosx biblio/biber/biber-solaris-intel biblio/biber/biber-windows biblio/biber/biber-cygwin Again, the directory name is not particularly important, as long it describes the platform specifically enough. Please re-use the directory for all future releases to make things easier for the CTAN maintainers. Builders are free to upload binary releases in between biber releases to fix binary issues but should not release new biber version binaries until a new biber version release has been made on github. TO be notified of new releases, you can subscribe to release notifications on github for biber. BINARIES ALSO AVAILABLE ON SOURCEFORGE -------------------------------------- Binaries can and usually are also uploaded to Sourceforge as people have historically obtained them from there manually when required: https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/ Please open a ticket in the biber github repo if you require permissions to do this. The biber maintainers regularly upload a development binary version of biber to Sourceforge so that people can try out fixes ahead of releases. biber-2.19/Build.PL000066400000000000000000000072351440117422400140320ustar00rootroot00000000000000 use strict; use warnings; use utf8; require Module::Build; my $class = Module::Build->subclass ( class => 'My::Builder', code => q{ sub ACTION_test { my $self = shift; $ENV{'LANG'} = 'C'; # set LANG to something known for tests $self->SUPER::ACTION_test; } sub ACTION_docs { my $self = shift; $self->depends_on('code'); $self->depends_on('manpages'); # skip html on perls where it's enabled } } ); my $builder = $class->new( dist_name => 'biblatex-biber', license => 'perl', dist_author => 'Philip Kime ', dist_abstract => 'Biber is a much-augmented bibtex replacement for biblatex users', dist_version_from => 'lib/Biber/Config.pm', test_requires => { 'Test::More' => 0, 'Test::Differences' => 0, 'File::Which' => 0 }, add_to_cleanup => [ 'biber-*' ], configure_requires => { 'Module::Build' => 0.38 }, build_requires => { 'Config::AutoConf' => '0.15', 'ExtUtils::LibBuilder' => '0.02' }, requires => { 'autovivification' => 0, 'Class::Accessor' => 0, 'Data::Dump' => 0, 'Data::Compare' => 0, 'Data::Uniqid' => 0, 'DateTime::Format::Builder' => 0, 'DateTime::Calendar::Julian' => 0, 'File::Slurper' => 0, 'IPC::Cmd' => 0, 'IPC::Run3' => 0, 'List::AllUtils' => 0, 'List::MoreUtils' => 0, 'List::MoreUtils::XS' => 0, 'Mozilla::CA' => '20160104', 'Regexp::Common' => 0, 'Log::Log4perl' => 0, 'Unicode::Collate' => '1.29', 'Unicode::Normalize' => '1.26', 'Unicode::LineBreak' => '2019.001', 'Unicode::GCString' => 0, 'Encode::Locale' => 0, 'Encode::EUCJPASCII' => 0, 'Encode::JIS2K' => 0, 'Encode::HanExtra' => 0, 'Parse::RecDescent' => 0, 'PerlIO::utf8_strict' => 0, 'XML::LibXML' => 1.70, 'XML::LibXML::Simple' => 0, 'XML::LibXSLT' => 0, 'XML::Writer' => 0, 'Sort::Key' => 0, 'Storable' => 0, 'Text::CSV' => 0, 'Text::CSV_XS' => 0, 'Text::Roman' => 0, 'IO::String' => 0, 'URI' => 0, 'Text::Balanced' => 0, 'Text::BibTeX' => '0.88', 'LWP::UserAgent' => 0, 'LWP::Protocol::https' => 0, 'Business::ISBN' => 0, 'Business::ISSN' => 0, 'Business::ISMN' => 0, 'Lingua::Translit' => '0.28', 'perl' => '5.32.0' }, script_files => [ glob( "bin/*" ) ], data_files => {'data/schemata/config.rnc' => 'lib/Biber/config.rnc', 'data/schemata/config.rng' => 'lib/Biber/config.rng', 'data/schemata/bcf.rnc' => 'lib/Biber/bcf.rnc', 'data/schemata/bcf.rng' => 'lib/Biber/bcf.rng', 'data/biber-tool.conf' => 'lib/Biber/biber-tool.conf', 'lib/Biber/LaTeX/recode_data.xml' => 'lib/Biber/LaTeX/recode_data.xml', 'data/bcf.xsl' => 'lib/Biber/bcf.xsl' } ); $builder->add_build_element('data'); $builder->create_build_script(); biber-2.19/Changes000066400000000000000000000635731440117422400140400ustar00rootroot00000000000000Revision history for Biber 2.19 (2023-03) * Misc bug fixes 2.18 (2022-06) * Added support for biblatex "pluralothers" option which allows "et al" to be forced to replace more than one name. * Universal x86_64/ARM64 binary * Support for citation-only rules for name templates in sorting (see \visibility macro in sorting name key templates in biblatex) 2.17 (2022-01) * Tool mode now supports tab indentation in output as well as spaces (see --output-indent) * More compact match/replace syntax for serial items in data maps * Native ARM64 binary for OSX now provided 2.16 (2020-12) * Better support for Unicode on Windows (10 1803+) with the --winunicode option * Option "output_macro_fields" no longer does anything as macro fields are auto-detected. * New options "output_no_macrodefs" and "output_all_macrodefs" control BibTeX macros (@STRING) output for bibtex format output. 2.15 (2020-08) * Added --output-legacy-dates and --output-field-replace options to aid in outputting legacy bibtex format in tool and non-tool mode * UTF-8 filenames supported on Windows * INCOMPATIBLE CHANGE - datasource globbing now has to be turned on explicitly with the --glob-datasources option. Globbing causes some issues with UTF8 encoding detection on some OSes and since it is a niche requirement, it is turned off by default. * DEPRECATION WARNING - The BBLXML output format will be removed in version 4. It is rarely used and complicates test suite maintenance considerably. 2.14 (2019-12) * XDATA now supports granular references so that specific fields/items in a list field may be used and inserted into fields/list positions. This allow, for example, re-use of names from a general XDATA entry containing data about authors. See the biblatex documentation. * Remote Zotero data source requests now send correct header * Annotations are now correctly output for related entries * Better sorting of some name edge cases * New map_entrykey_* mapping verbs * New options --noremove-tmp-dir and --show-tmp-dir to disable of removal on exit and showing location of temporary directory used for intermediate data. Useful for debugging. * Tool mode now accepts multiple data files on the command-line so that data can be spread over several files (e.g. main bib and crossrefs can be kept in separate files) * Biber no longer uses Text::BibTeX/btparse to generation initials from names in normal name parsing mode because it can't handle some Unicode situations. 2.13 (2019-08-13) * biber now exits with error on some very malformed names instead of skipping them as this can lead to data loss in bibliographies. * Support for named annotations 2.12 (2018-10-30) * Added support for biblatex literal and named annotation features * Added support for biblatex \ifnocite test * Case insensitive matching operators in sourcemaps (matchi/notmatchi) * Support for biblatex min/maxsortnames options * Added support for biblatex 'noroman' option to supporess roman numeral interpretation in ranges. * Misc bug fixes 2.11 (2018-02-14) * New entrynocite option for maps which create/clone entries * Misc bug fixes 2.10 (2017-12-19) * Misc bug fixes 2.9 (2017-11-04) * Misc bug fixes 2.8 (2017-11-04) * Updated copyright dates * Support for many new biblatex 3.8 features (see bibatex change doc and PDF manual). * --output-resolve option is now a meta-alias for the more granular --output-resolve-* options - see the biber -? output * The --nouri-encode option is removed. All urls are URL encoded and a new field urlraw is always output with an unencoded version. 2.7 (2016-12-08) * New option (--nouri-encode) to prevent URL encoding of URLs. Avoids breaking display of URLS which contain non-ASCII. * Misc bug fixes 2.6 (2016-09-10) * Improved tool mode bibtex output. This has some normalisation consequences for YEAR and custom fields. See PDF doc. * Support for new \ifuniquebaretitle test * Sourcemaps can now be restricted to particular refsections * Perl 5.24 is now required due to use of postfix deref notation * Removed RIS input driver due to lack of use * Added extended name format - see documentation * Added notfield function to sourcemaps - see documentation 2.5 (2016-05-10) * Added data annotations feature - see biblatex documentation. * Removed the "latinkeys.txt" Unicode::Collate table. This is now pointless because the compiled 'allkeys.txt' is faster and complete. * Incompatible biblatex/biber version is now a fatal error. * Significant performance improvements, particularly in sorting subsystem. * Addition of new bblXML output format and associated RelaxNG XML schema based on active datamodel. * Integration with new biblatex 3.4 labelprefix name change and refcontext option. * Integration with new biblatex 3.4 \DeclareDatafieldSet functionality. * Improved sourcemap looping functionality 2.4 (2016-03-01) * Misc bug fixes * There is now a 64-bit windows build built on windows 10 * Biblatexml datasources now support sourcemapping and have a schema automatically generated from the datamodel. See new biber options 'validate-bltxml' and 'no-bltxml-schema' in --help output. * New functionality in sourcemaps for creating new entries and looping over specified fields. * Sorting key used to sort names is now customisable. See \DeclareSortingNamekeyScheme in biblatex manual. * Support for Zotero RDF/XML and Endnote removed. These were experimental and messy. 2.3 (2015-12-28) * Misc bug fixes 2.2 (2015-10-21) * Tool mode now preserves comments at the end of the file * New ISBN formatting options for biber (--isbn10, --isnb13, --isbn-normalise) * Implemented way of ignoring certain regexps when counting fixed-width string in labels (see biblatex \DeclareNolabelwidthcount macro) * Updated binary builds to perl 5.22 * Cygwin binary build is now handled by Texlive builders * Misc bug fixes 2.1 (2015-05-06) * Misc bug fixes 2.0 (2015-04-20) * Misc bug fixes * New negated "per type" sourcemap verb for negating the application of maps to specific entry types * New "entry clone" sourcemap verb for cloning entries during sourcemapping. See PDF documentation for biber. * Added range length calculation support. Biber now calculates the length of ranges for biblatex and can handle roman numerals, including just about any UTF-8 composed, non-composed or compat versions * Complete re-write of the biblatex use* name functionality now automatically supports all name fields defined in the data model. See biblatex manual * Moved labelname and labeltitle resolution from biber to biblatex for more flexibility and future extensions * Moved to perl 5.20 for all internals and builds 1.9 (2014-05-25) * Misc bug fixes * Option names accept dashes as well as underscores for general TeX option compatibility. * New "--input-directory" option * Tool mode now also supports data validation * Perl 5.18 is now used to build all biber binaries * Locale-sensitive sorting now more granular (see biblatex "sortlocale" documentation) * Source mapping feature now interpolates from previous matches * Now supports generalised separated values lists using new "--xsvsep" option. * Macro <-> UTF-8 conversion now more robust * New Text::BibTeX library now supports generating initials from general UTF-8 strings (for, e.g. Russian names) 1.8 (2013-10-21) * Perl 5.18 compatibility (hash order randomisation) * Removed Data::Diver module due to linux licensing restrictions * Misc Bug Fixes 1.7 (2013-07-07) * Added clrmacros option * Added map_nomatch * Added --tool_macro_fields option * Exposed sorting option to user-level config file (so sorting in tool mode is possible) 1.6 (2013-04-30) * Bugfixes * Now uses perl 5.16. Non-binary (unpacked) use requires perl 5.16+ * Improved tool mode with some formatting options * Made Unicode NFD/NFC boundaries more robust * labelyear is now labeldate to match biblatex 2.6 * Support for new CLONESOURCEKEY field (see biblatex 2.6 docs) * New padding character option in labelalphatemplate (see biblatex 2.6 docs) 1.5 (2013-01-10) * Added new source mapping option "map_entry_null" * Renamed some options (old ones remain as aliases): bibencoding -> input_encoding bblencoding -> output_encoding bblsafechars -> output_safechars bblsafecharsset -> output_safecharsset outfile -> output_file outformat -> output_format * New "tool" mode with "--tool" option which takes a data source as argument and just performs reencoding and source mappings etc. as per options and config file. * Support for customisable BibTeX data source list and name separators * Better debug output for source mapping * Better defined source mapping hierarchy with bugfixes 1.4 (2012-11-28) * Support for biblatex 2.4 style sourcemaps (See \DeclareStyleSourcemap in biblatex docs) * entrykey is now a possible read-only pseudo field in sourcemaps * Reencode data interface completely re-written. New user option --recodedata allows users to specify a new data file for defining reencoding sets. * Internal changes to allow multiple script/lang variants of fields in biblatex in the future. * Citation key aliases now supported more comprehensively, in crossrefs etc. * Support for new RELATEDOPTIONS field (see biblatex docs) * Misc bug fixes 1.3 (01-11-2012) * New "append" mode for sourcemap to allow combining of fields * map_final now possible for map_set_field steps which causes map to stop completely if map_overwrite is false and the field to set already exists * Allow extrayear generation when there is no labelyear 1.2 (20-08-2012) * Misc bug fixes 1.1 (01-08-2012) * Misc bug fixes * Fixed later CentOS libz issue by including latest libz for linux builds * Fixed DOT output (SF bug 3544894) 1.0 (01-07-2012) * Internal data model processing changes * New labeltitleyear and extratitleyear disambiguation tracker * New labeltitle and extratitle disambiguation tracker * Sorting per list enabled for biblatex 2.0 * New noinit option for ignoring parts of names when generating initials * Some optimisations for large data sources * Fixed build issues which broke PAR::Packer binary under latest Debian (Wheezy) 0.9.9 (30-03-2012) * Added sortfirstinits option * HTTPS support for remote data sources * Biber now ignores names when it can't determine minimal information like a lastname. Before, it would throw lots of errors and die. * Strips UTF-8 BOMs before passing to Text::BibTeX otherwise it complains * Merged --graph and --bltxml options into --outformat option * Updated some internal Unicode 6.0 things * Minor bug fixes 0.9.8 (20-12-2012) * Changed config file sourcemap syntax and docs * Support for citekey aliases * New DOT output format 0.9.7 (27-11-2011) * per-datasource mapping restrictions * Completely new config file format to allow for extensions * Fixed --help issue with PAR::Packer * Fixed .bcf XSL inheritance attribute value issue * Moved XDATA output skip into structure where it should have been originally 0.9.6 (13-11-2011) * Fixed binary issue with Readonly::XS not being detected * Fixed bug tracker ticket #3436870 * Match/replace functionality for data source field filtering * New AUCTeX patches for better biblatex/biber support * Now requires perl 5.14 for full Unicode 6.0 support * New XDATA entrytype and field to allow more complex macro-style data inheritance * crossref cascading is in guaranteed resolve order now * Warnings/error summary is now a more consistent format with all other biber messages. * Matching of .bcf keys to datasource keys is now case-sensitive * Fixed biblatex bug tracker ticket #3399744 * Fixed bug tracker ticket #3402114 * max/minnames -> max/mincitenames * max/min* now all per-type and per-entry * uniquelist/uniquename now per-entry * Re-factored recode module with XML data and XSL->HTML transform doc 0.9.5 (18-08-2011) * Fixed auto-bblsafechars bug * refactored explicit "and others" in bibtex data sources * Fixed issue with sorting=none and \nocite{*} 0.9.4 (30-07-2011) * Added support for "SORTSHORTHAND" field * New "map" option to allow user field/entry type mapping (aliasing) in addition to .dcf settings * Made the relevant places depend on max/min{alpha,bib}names instead of just max/minnames * Bug fixes to bblsafechars * Implemented user-customisable labelalpha (not yet in biblatex) * Implemented per-name hashes 0.9.3 (05-06-2011) * New mininit and minfull uniquename options * New minyear uniquelist option * Major revamp of uniqueness code * Moved to new external process calling module because IPC::Run doesn't work on Windows in packed binaries (kpsewhich was returning nothing). 0.9.2 (09-05-2011) * Some internal changes for perl 5.14 * Bug fixes for uniquelist processing 0.9.1 (29-04-2011) * Made temp files all use a global temp dir. * Moved temp .utf8 conversions to temp dir so biber works using .bib files which are in non-writable locations. * Added back an info log message about finding data sources (Lyx compat) 0.9 (29-03-2011) * No longer auto-escapes any TeX markup in bibtex data sources. This is fraught with danger and is a mess. Best not to do it at all. * Supports biblatex \bibnamedelimi macro * Implementation of uniquename and uniquelist options for biblatex 1.4+ 0.8.4 (19-03-2011) * Bug fixes (wrong escaping of "[", "_" and "]" in .bbl) 0.8.3 14-03-2011 * Biber now in TexLive * Added several new binary builds * All name part and element formatting is now abstracted into macros so that it can be controlled via biblatex. * Much more documentation on binary builds for packagers * Bug fixes 0.8.2 (14-02-2011) * Bug fixes 0.8.1 (12-02-2011) * Small bug with default bibtex month macro support * Made remote file support a little more robust (URI return codes) 0.8 (11-02-2011) * Forces biblatex format for month field * Added support for remote data sources * Added experimental support for RIS data sources * Took out -a and -d flags. These are no longer very useful as the increasingly sophisticated biblatex options cannot be set on the command line anyway and so these flags are less and less relevant * New inheritance model in sync with biblatex defaults * Bug fixes 0.7.4 (05-02-2011) * Fix for mincrossrefs leaking across sections (biblatex SF bug #3173032) 0.7.3 (03-02-2011) * Performance tuning for sorting * Text::BibTeX 0.51 for increased macro stack space * Support for old BibTeX month macros by default * Re-write of datasource processing to allow for modular plugins * Generalised nosort option. * Merged LaTeX::Decode into Biber::LaTeX::Recode and added encoding to deal with inputenc's limitations for PDFLaTeX users * new options for forcing/tuning UTF-8 -> LaTeX macro conversion * Bug fixes 0.7.2 (08-01-2011) * Improved latexmk compatibility more 0.7.1 (07-01-2011) * Improved latexmk compatibility * Added "x-ascii" encoding alias for "ascii" to deal with inputenx ascii. * Bug fixes 0.7 (05-01-2011) * Completely re-written sorting routine using Schwartzian transform for real multi-field support and per-field sorting settings. * Bug fixes 0.6.9 (dev beta) * Bug fixes 0.6.8 (dev beta) * Generalised sorting behaviour in several respects * Bug fixes 0.6.7 (dev beta) * Bug fixes 0.6.6 (dev beta) * More generalised sorting options * Bug fixes 0.6.5 (dev beta) * Bug fixes 0.6.4 (dev beta) * Bug fixes 0.6.3 (dev beta) * Outputs labelname name list to the .bbl * Support for dynamic sets and simpler static set interface * Misc bug fixes 0.6.2 (dev beta) * Internal cleanup of structure code * Misc bug fixes 0.6.1 (dev beta) * More comprehensive structural checks on allowed entrytypes/fields and field combinations/formats * Added option validate_structure to turn on structural checks * Renamed option validate -> validate_control * Renamed option output-directory -> output_directory * Added labelname and labelyear as possible sort specifications * Misc bug fixes 0.6 (20-11-2010) * First non-beta release * More abstracted and extensible crossref inheritance model * U::C dependency to 0.67 * sortcase and sortupper options now take same argument forms as in biblatex * Misc bug fixes 0.5.7 (09-10-2010) * Misc bug fixes 0.5.6 (04-10-2010) * Latex character macro decoding is now better defined in the whole (re)encoding workflow. * "inputenc" option is now "bblencoding" * "locale" option is now "sortlocale" * New option "sortupper" * Unicode::Collate sorting is now default as version 0.61 of this has XS module and CLDR tailoring. * Added binary dist build scripts * Removed bundled Module::Build as there are some conflicts with later versions. This is less of a problem anyway because the binary build makes it less necessary to make builds easy on perl<5.10 * Misc bug fixes 0.5.5 (29-08-2010) * Biber::BibTeX moved to Biber::Input::BibTeX. If upgrading, please remove your installed /Biber/BibTeX.pm, just to be tidy * New aliases for EPRINT classes and types implemented (see BibLaTeX docs). * Biber now resolves XREFs as well as CROSSREFs so one less LaTeX pass is needed * Allows UTF-8 citekeys. Requires Text::BibTeX >= 0.46 and a fully UTF-8 aware TeX macro package (e.g. XeTeX or LuaLaTeX). Normal LaTeX with \inputenc will not work because the UTF-8 it uses is incomplete, macro based and not native. * RecDescent parser is no longer supported or included. If upgrading, please remove your installed /Biber/BibTeX directory, just to be tidy * Now requires LaTeX::Decode >= 0.03 * Stricter version dependency for Text::BibTeX. Older than 0.42 is rather useless for complex names. * Re-factored and enhanced auto-re-encoding of .bib/.bbl. With biblatex 0.9c, Biber handles all reencoding. * Misc bug fixes 0.5.4 (04-08-2010) * Case-sensitive sorting option * Multi-section support. Only one biber pass needed to process all bib sections using extended biblatex 0.9b .bbl format. * .aux file is no longer used by biber - all information is passed in .bcf file. * Misc bug fixes * LaTeX::Decode is now a separate CPAN module and is no longer included 0.5.3 (19-03-2010) * Changed semantics of --outfile and --output-directory. --outfile is now relative to --output-directory. If --outfile is absolute, it is stripped to the filename and the path discarded. Absolute .aux paths are stripped to filename for appending to --output-directory. * Updated PRD to use new encoding option names. Now works with -e. * sortlos was not settable to use bib sort order * With Text::BibTeX >= 0.42, will do all name/initials generation with btparse library. * Abstracted BBL output into Biber::Output class for better re-use and potential for output formats other than .bbl. * Synced uniquename .bcf values with change in biblatex 0.9a 0.5.2 (04-03-2010) * Locale fixes * Uniquename fixed to match BibLaTeX option values * Improved error message for malformed names * Fixed config file problems under windows and also added option to ignore config file * Bug with conflicting case between citations and bib entries * Moved pure perl parsename to PRD.pm * Re-write of name parsing to use Text::BibTeX::Name by default * Fields which can be null are explicitly flagged * Add THANKS file * Die early when biber is called without argument * Fixed Mac config path error * .bib parse continues after certain errors * regularised collate options processing * field nameaddon was missing from Biber::Constants * Improved warning message for missing backend=biber * SF bug 2952347 fix (empty date range end) * uniquename counter was being provided incorrectly 0.5.1 (15-02-2010) * Remove support for legacy control files (\jobname-blx.bib): Biber now only reads .bcf files written by biblatex with the option "backend=biber". * Improved handling of "uniquename" and "namehash". * Don't apply latexescape in bbl output, as it breaks math formatting. 0.5 (13-02-2010) * Supports all changes introduced by biblatex 0.9 * Moved all parts relating to the experimental BibLaTeXML format to the "biblatexml" branch on the git repo * Communication between biblatex and Biber can be done through a XML-based config file (extension .bcf): this is enabled with the experimental biblatex option "backend=biber" * Biber can now be customized with a configuration file * Considerable refactoring and cleanup of the code * Further enhancements to the test suite * Improved logging mechanism * More robust parsing of personal names * Ignore certain prefixes and diacritics in sort strings, for instance ʿAlī is sorted under A, and al-Hasan under H. This can be customized in the configuration file (biber.conf). * New command-line option --output-directory (like TeX) * Many, many bugfixes 0.4.3 (23-07-2009) * With biblatex option "backend=biber" and biber option --v2 the new experimental control file \jobname.bcf is used, which brings in many new features, such as per-entrytype settings. * More sophisticated/customizable sorting mechanism * More extensive test suite * Improved BibLaTeXML schema * improved handling of BibLaTeXML (enable nested children, formatting elements, nosort elements) * Do not apply latexescape() by default on xml strings * Skip title handling in BibLaTeXML when not existing * Ignore maxline, add option wraplines * Built-in sort is now default (option --fastsort) * Sorting with Unicode::Collate is possible with option --collate * Make tests succeed w/o Parse::RD and Regexp::Common * Don't output date and urldate in the bbl * Add missing fields "date" "urldate" "organization" "annotator" "foreword" and "eventtitle" * Use Data::Dump instead of Data::Dumper for debugging * Fields "library" and "remarks" are now skipped * Bugfix for aliases (e.g. address, school) * Bugfix: process urldate to get urlyear,urlmonth,urlday * Remove illegal value shorttranslator from labelname option * Changed biberdebug option to debug * Changed option inputencoding to bibencoding 0.4.2 (25-04-2009) * New option --inputencoding to handle 8-bit encoded bib files * $BIBINPUT environment is now searched * Improved parsing of personal names * @comments are now silently ignored * Fixed handling of @preamble; multiple preambles are allowed * Warnings and errors behave more like BibTeX * Alias fields are automatically converted (e.g. address -> location) * Take care of "phdthesis" and "mathesis" types * Cite keys of bib files are now case-insensitive * Default Unicode collation now uses the table "latinkeys.txt" (this is much faster than "allkeys.txt" which contains rules for all Unicode glyphs) * Unicode::Collate parameters can be passed as a command-line option * Faster sorting (with option -f) is also possible for specific locales given with option --locale (this is OS-dependent however) * PRD grammar is now precompiled * bbl output is now wrapped acc to maxline option * Empty fields are no longer printed in the bbl * Sorting is much improved. * Use sortstring separators 0 1 2 like biblatex.bst * Handle truncation of name lists acc to minnames/maxnames * bib2biblatexml has been improved * Windows version of Text::BibTeX provided as ppm. * Many more bugfixes 0.4.1 (31-03-2009) * Text::BibTeX now optional dependency 0.4 (27-03-2009) * Initial beta release biber-2.19/LICENSE000066400000000000000000000213061440117422400135360ustar00rootroot00000000000000 The Artistic License 2.0 Copyright (c) 2009-2023, François Charette and Philip Kime. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software. You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement. Definitions "Copyright Holder" means the individual(s) or organization(s) named in the copyright notice for the entire Package. "Contributor" means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder's procedures. "You" and "your" means any person who would like to copy, distribute, or modify the Package. "Package" means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version. "Distribute" means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization. "Distributor Fee" means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees. "Standard Version" refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder. "Modified Version" means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder. "Original License" means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future. "Source" form means the source code, documentation source, and configuration files for the Package. "Compiled" form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form. Permission for Use and Modification Without Distribution (1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version. Permissions for Redistribution of the Standard Version (2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package. (3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License. Distribution of Modified Versions of the Package as Source (4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following: (a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version. (b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version. (c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under (i) the Original License or (ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source (5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license. (6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version. Aggregating or Linking the Package (7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation. (8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package. Items That are Not Considered Part of a Modified Version (9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license. General Provisions (10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license. (11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license. (12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder. (13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed. (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. biber-2.19/MANIFEST000066400000000000000000000104321440117422400136600ustar00rootroot00000000000000bin/biber Build.PL Changes data/bcf.xsl data/biber-tool.conf data/schemata/bcf.rnc data/schemata/bcf.rng data/schemata/config.rnc data/schemata/config.rng data/schemata/texmap.rnc data/texmap.xsl doc/biber.tex lib/Biber/Annotation.pm lib/Biber/Config.pm lib/Biber/Constants.pm lib/Biber/Date/Format.pm lib/Biber/DataModel.pm lib/Biber/Entries.pm lib/Biber/Entry/Name.pm lib/Biber/Entry/Names.pm lib/Biber/Entry.pm lib/Biber/Input/file/biblatexml.pm lib/Biber/Input/file/bibtex.pm lib/Biber/Internals.pm lib/Biber/LangTags.pm lib/Biber/LangTag.pm lib/Biber/LaTeX/recode_data.xml lib/Biber/LaTeX/Recode.pm lib/Biber/Output/base.pm lib/Biber/Output/biblatexml.pm lib/Biber/Output/bibtex.pm lib/Biber/Output/bbl.pm lib/Biber/Output/dot.pm lib/Biber.pm lib/Biber/Section.pm lib/Biber/Sections.pm lib/Biber/DataList.pm lib/Biber/DataLists.pm lib/Biber/UCollate.pm lib/Biber/Utils.pm MANIFEST README.md BUILDERS.README TODO.org t/annotations.t t/basic-misc.t t/bcfvalidation.t t/biblatexml.t t/bibtex-aliases.t t/bibtex-output.t t/configfile.t t/crossrefs.t t/dm-constraints.t t/dateformats.t t/encoding.t t/extratitle.t t/extratitleyear.t t/extradate.t t/full-bbl.t t/full-bblxml.t t/full-bibtex.t t/full-dot.t t/labelalpha.t t/labelalphaname.t t/labelname.t t/langtags.t t/maps.t t/names.t t/names_x.t t/options.t t/related-entries.t t/remote-files.t t/sections-complex.t t/sections.t t/set-dynamic.t t/set-legacy.t t/set-static.t t/skips.t t/skipsg.t t/sort-case.t t/sort-complex.t t/sorting.t t/datalists.t t/sort-order.t t/sort-names.t t/sort-uc.t t/tool.t t/tool-bltxml.t t/tool-bltxml-inout.t t/tool-config.t t/translit.t t/truncation.t t/uniqueness.t t/uniqueness-nameparts.t t/utils.t t/xdata.t t/tdata/annotations.bib t/tdata/annotations.bcf t/tdata/basic-misc.bcf t/tdata/biber-test.conf t/tdata/tool-test.conf t/tdata/tool-testconfig.conf t/tdata/tool-testsort.conf t/tdata/biblatexml.bcf t/tdata/biblatexml.bltxml t/tdata/bibtex-aliases.bcf t/tdata/bibtex-aliases.bib t/tdata/bibtex-output.bcf t/tdata/crossrefs.bcf t/tdata/crossrefs.bib t/tdata/dm-constraints.bcf t/tdata/dm-constraints.bib t/tdata/dateformats.bcf t/tdata/dateformats.bib t/tdata/encoding1.bcf t/tdata/encoding1.bib t/tdata/encoding2.bcf t/tdata/encoding2.bib t/tdata/encoding3.bcf t/tdata/encoding3.bib t/tdata/encoding4.bcf t/tdata/encoding4.bib t/tdata/encoding5.bcf t/tdata/encoding5.bib t/tdata/encoding6.bcf t/tdata/encoding6.bib t/tdata/examples.bib t/tdata/extratitle.bcf t/tdata/extratitle.bib t/tdata/extratitleyear.bcf t/tdata/extratitleyear.bib t/tdata/extradate.bcf t/tdata/extradate.bib t/tdata/full-bblxml.bblxml t/tdata/full-bblxml.bcf t/tdata/full-bibtex_biber.bib t/tdata/full-bibtex.bcf t/tdata/full-dot.bcf t/tdata/full-dot.bib t/tdata/full-dot.dot t/tdata/full-bbl.bbl t/tdata/full-bbl.bcf t/tdata/full-bbl.bib t/tdata/general.bcf t/tdata/labelalpha.bcf t/tdata/labelalpha.bib t/tdata/labelalphaname.bcf t/tdata/labelalphaname.bib t/tdata/maps.bcf t/tdata/maps.bib t/tdata/names.bcf t/tdata/names_x.bcf t/tdata/names.bib t/tdata/names_x.bib t/tdata/options.bcf t/tdata/options.bib t/tdata/options.bib t/tdata/related.bcf t/tdata/related.bib t/tdata/remote-files.bcf t/tdata/sections1.bib t/tdata/sections2.bib t/tdata/sections3.bib t/tdata/sections4.bib t/tdata/sections.bcf t/tdata/sections-complex.bcf t/tdata/set-dynamic.bcf t/tdata/set-legacy.bcf t/tdata/sets.bib t/tdata/set-static.bcf t/tdata/skips.bcf t/tdata/skips.bib t/tdata/skipsg.bcf t/tdata/skipsg.bib t/tdata/sort.bib t/tdata/sort-case.bcf t/tdata/sort-case.bib t/tdata/sort-complex.bcf t/tdata/translit.bib t/tdata/translit.bcf t/tdata/datalists.bcf t/tdata/datalists.bib t/tdata/datalists.bltxml t/tdata/sort-order.bcf t/tdata/sort-order.bib t/tdata/sort-names.bcf t/tdata/sort-names.bib t/tdata/sort-uc.bcf t/tdata/sort-uc.bib t/tdata/tool.bib t/tdata/truncation.bcf t/tdata/truncation.bib t/tdata/uniqueness1.bcf t/tdata/uniqueness1.bib t/tdata/uniqueness2.bcf t/tdata/uniqueness2.bib t/tdata/uniqueness3.bcf t/tdata/uniqueness3.bib t/tdata/uniqueness4.bcf t/tdata/uniqueness4.bib t/tdata/uniqueness5.bcf t/tdata/uniqueness5.bib t/tdata/uniqueness6.bcf t/tdata/uniqueness6.bib t/tdata/uniqueness7.bcf t/tdata/uniqueness7.bib t/tdata/uniqueness-nameparts.bcf t/tdata/uniqueness-nameparts.bib t/tdata/xdata.bcf t/tdata/xdata.bib t/tdata/xdata.bltxml testfiles/test.bcf testfiles/test.bib visual.pl META.yml META.json biber-2.19/MANIFEST.SKIP000066400000000000000000000002731440117422400144270ustar00rootroot00000000000000^MANIFEST\.SKIP ^t/_moredata ^t/3rdparty ^_build ^_playground ^Build ^Build\.bat ^Makefile\.PL ^META\.yml ^blib ^\.git ^htdocs ^dist ^README\.win ^etc \.swp$ ^MYMETA\.yml$ ^MYMETA\.json$ biber-2.19/README.md000066400000000000000000000046311440117422400140120ustar00rootroot00000000000000# OVERVIEW Biber is a sophisticated bibliography processing backend for the LaTeX biblatex package. It supports an unsurpassed feature set for automated conformance to complex bibliography style requirements such as labelling, sorting and name handling. It has comprehensive Unicode support. **Please note**--the default download for all platforms is 64-bit. Please look in the files section for the correct 32-bit platform instead of using the default download button if you want 32-bit. ## REQUIREMENTS Biber is written in Perl with the aim of providing a customised and sophisticated data preparation backend for biblatex. You do not need to install Perl to use biber--binaries are provided for many operating systems via the main TeX distributions (TeXLive, MacTeX, MiKTeX) and also via download from SourceForge. You only need a Perl installation to use biber in one of the following cases: - A binary version is not available for your OS/platform. - You wish to keep up with all of the bleeding-edge git commits before they are packaged into a binary. For the vast majority of users, using the latest binary for the OS/platform you are using will be what you want to do. For details on the requirements for installing the Perl program version, please see the biber PDF documentation. The git repository for Biber is kept on github: [https://github.com/plk/biber](https://github.com/plk/biber) ## SUPPORT AND DOCUMENTATION After installing, `biber --help` will give you the basic documentation. The latest PDF documentation can be found here: [https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber](https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber) More information, bugfix releases, forums and bug tracker are available at: [https://github.com/plk/biber](https://github.com/plk/biber) ## BUILDING If you wish to build you own binary, see the main biber PDF documentation and particularly the included BUILDERS.README file The PDF documentation is in the `documentation` folder for the release on Sourceforge. ## LICENCE Copyright 2009-2023 François Charette and Philip Kime, all rights reserved. This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. biber-2.19/RELEASE000066400000000000000000000030371440117422400135350ustar00rootroot00000000000000* If first release in a new year, update copyright and licensing in files * Change content, if necessary, of README.md * Change version string in and content of "Changes" file * Change version strings in doc and update volatile doc info (e.g. compat matrix) * Update testfiles/* * Update main html page * Update "TODO" file * Change version string and beta flag in "Config.pm" * Change $BCF_VERSION/$BBL_VERSION in Constants.pm if necessary * "perl Build.PL" and "Build dist" to update YAML/JSON * Run test suite and make sure it passes cleanly * Commit and tag with version number * Create new github release so that builders can subscribe to know when a new release is made * Move "current" to version number on SF * Create "current" folder using SF GUI * Create a new empty version tree for new version, use the dist/empty_tree.sh script: empty_tree.sh current * Build binaries from release and upload to SF to new version folder using "current" as release * scp htdocs/*.html philkime,biblatex-biber@web.sourceforge.net:htdocs/ * Inform builders of binaries to update * Associate new defaults with new binaries and change labels * Replace test.bcf with test-dev.bcf on SF. Upload new test-dev.bcf if necessary * Update SF main page, news, add new README in web interface at root, if needed * run dist/re-package.sh which creates the files needed for CTAN release * upload biber source archive to /biblio/biber/base * upload platform binary archives to biblio/biber/biber-linux biblio/biber/biber-macos biblio/biber/biber-windows biber-2.19/TODO.org000066400000000000000000000232611440117422400140110ustar00rootroot00000000000000* DONE biblatex firstinits option to giveninits * DONE useprefix per names/name? * DONE More flexible sorting allowing arbitrary name part order? * DONE name taxonomy (first, middle, last) needs to be generalised. Internally in Biber too ** firstname -> given ** lastname -> family ** middlename -> middle ** prefix -> prefix ** suffix -> suffix * DONE lastname mandatory relaxed? How about just mandatory that some part is defined since sorting isn't always on lastname first? * DONE name parts and gender types in data model as constants * DONE \keypart round \namepart * DONE make namepart specs ** DONE named ** DONE selectable per sortlist *** DONE abx@aux@sortscheme etc. probably this needs to be generalised to mentioned refcontexts ** DONE per-entry ** DONE per-namelist, per name * DONE hashes use static construction from DM name constants - problem with uniquelist * DONE tool mode bltx output should write schema but controlled by option (normal output uses same option) * DONE per-names/name options are not in .bcf - matters? * DONE per-namelists/per-name options ** DONE needs per names/name support in biblatex and in bbl ** DONE sortnamekeyscheme needs per entry/names/name in bbl ** DONE biblatex macro support in formats for sortnamekeyscheme ** DONE What to do with gender attribute on name? * DONE Document example in biblatex manual of compound keypart * DONE implement patronymic namepart example * DONE Document year/month (datepart fields) are not allowed in bltxml * DONE Sorting ** OM/GRT enhancememts? ** Some integer tests with <=>? * DONE Transliteration interface ** Waiting for L::T release then make this a dep. * DONE Year is missing for knuth:ct in sorting.t? * DONE biblatexml.pm date parsing * DONE BCE, circa etc. ** In bbl/bblxml output *** year should be yearabs *** new *dateera={beforecommonera/commonera} and these should be localisation strings ** datezeros needs to force zeros, not just assume, then testoutput again * DONE biblatex output for date metadata * DONE biblatex input for date metadata * DONE enforce date field naming - where? * DONE datezeros needs to force zeros * DONE biblatex new test doc * DONE docs - negs, explicit era versions, bce bool, locale strings, circa/uncertain format and bools * DONE Test negative date sorting * DONE Volume and ? to ints and remove padding? * DONE Enforce year/month format as ints - sortyear should be int only and documented so. Enforce in biber (not datamodel as it's not part of that) * DONE final sort elements copy string into all further fields which dies on int schema * DONE Tune ... * DONE Remove/convert fastsort? * DONE Decomm RIS * DONE Eras/circa/uncertain in cites * DONE uniquename and initstrings etc. for xname should use DM and no explicit nameparts. ** Config.pm read for unt ** Document \DeclareUniquenameTemplate, add to release notes, add to XSLT * DONE useprefix namelist and name scope with bibtex * DONE LabelalphaNameTemplate implementation ** DONE .bcf read ** DONE config.pm opt read ** DONE compound, strwidth replace pstrwidth, pcompound and compound ** DONE xsl update ** DONE Doc - move pstrwidth (remove) -> strwidth, pcompound (remove) -> compound, strwidth on lant overrides on lat * DONE sortgiveninits ** DONE Should be moved to option of \namepart in SNKS ** DONE Remove biber option and make biblatex deprecated ** DONE Fix in Internals, Remove from Constants.pm and Config.pm ** DONE Change schema, .bcfs, xsl, doc * DONE giveninits should be autogen and inits ** DONE Doc (including scope) * DONE 'given' in _getnamehash_u in Internals - can be abstracted? * DONE nullable_check in Biber.pm - needed? It's a deep loop * DONE donames stuff is messy * DONE hash/fullhash for all names * DONE Implement EDTF Date/Times ** DONE circa/uncertain/era should apply to individual dates, not the range. ** DONE 5.2.5 - seasons - new field (not in DM, only from date parsing), containing localisation string ** DONE iso8601 -> EDTF in biblatex with fallback ** DONE < year for CE/AD ** DONE Document *season and all label* new fields ** DONE cite in 96 is circa xxxx-yyyy instead of circa xxxx-circa yyyy *** DONE Document mkday,month,yearzeros, changes ** DONE 5.2.2 - expand to ranges in biber and put in \Xdateuncertain{} *** DONE biblatex unspec *** DONE Document, remove 5.2.2 exclusion 96-test ** DONE Default for era *** DONE edtf toggle can be removed (not tests - see below) *** DONE Make a 'simple' option for dateera, default *** DONE make a value for dateera that can be tested, perhaps usermode too *** DONE convert edtf toggle tests to check for 'simple' *** DONE This will need to be added to mkranges like labelname but for edtf, no choice as now *** Doc, 96 ** DONE Putting all date meta things into labeldate resolution breaks the ability to treat labeldate parts as normal datepart fields. They shouldn't be applied there really - when they hit forcezeros etc. they cause an error. When they are simpler, forcezeros etc. can have \IfInteger to skip "nodate" etc. labeldate part values. However, labelyear printing in authoryear cites is already processed into a range etc. This probably shouldn't be the case any more so that labelyear is more easily processing like other years. ** DONE times *** DONE Option to decide TZ format (none, "EST", num). Get rid of "floating" in bbl *** DONE timezeros option? *** DONE \mktimezeros - needs options like mkdatezeros? probably not as each component is 2 digits *** DONE option labeldate makes time fields available *** DONE \bibtimesep, \bibtimezonesep AM PM strings *** DONE TZ display option *** DONE formats - 24hour (normal and compressed), 12 hour am/pm (localised) *** DONE Document *time={HH,HHcomp,hh} opts and formats, timelabel, alltimes, Expand bib:use:dat to include times. Format docs in aut:fmt:ich * DONE EDTF should set dateera=simple and use \dateeraprintpre/\enddateeraprintpre * DONE dateera=simple should -1 all bce years on output ** DONE Remove yearabs from biber, biblatex needs to +1 all bce abs values on output when dateera is not "astronomical" ** DONE fix biber tests ** DONE Fix spaces in cites, run tests, upload, reply * DONE bibtex output only works on bibtex input data as it uses ->rawfields - should be able to base it on biblatexml output ** DONE name to bib and name to xnamebib in Name.pm ** DONE Name lists "and others" ** DONE name list output should use namesep option value ** DONE name list output needs to care about x vs normal for per-namelist options. ** DONE error could be raw fields which are found by get_field? ** DONE *seps should have separate output versions, same as input ones ** DONE Output annotations ** DONE Order of fields needs to be determined ** DONE Document all in biber manual, add output_xname, output_*sep to the table there ** DONE Remove raw and references to raw ** DONE Check idiosyncratic fields in input bibtex.pm like keywords etc. ** DONE Tool tests with --output-xname * DONE Julian cutoff ** DONE cutoff option *must* be YYYY-MM-DD. Can be true or custom date. Document. Examples. ** DONE Passed in .bcf, probably no need to update schema if simple option. Must be in .bcf data model as global option. ** DONE Biber needs to put a *(end)datejulian boolean in the .bbl ** DONE Define \if*(end)datejulian and \if(end)datejulian tests * DONE datelabel has to become labeldate somehow, for consistency * DONE Times - more work ** DONE Add to EDTF ** DONE Add time output to standard formats (don't forget ranges in .lbx) *** DONE bibdatetimesp should be space by default for non EDTF output ** DONE Document \print*time are stand-alone time prints and \printdate will print times if *dateusetime is set ** DONE Document *dateusetime, labeldateusetime, alldatesusetime and \bibdatetimesep ** DONE Add *dateusetime, labeldateusetime, alldatesusetime to scope table in doc ** DONE Document that the *usetime options do nothing with compact date range formats as this would be confusing. ** DONE New output format like EDTF but options * DONE extrayear, (namestring, namestrings, namedisschema)->uniquelist, uniquename * DONE bibaltexml.pm needs uiquenametemplate processing removing * DONE sorting scheme names are not used. Create multiple and refer by name as with other dlist * DONE presort, exclude and include should not be inside a sorting spec * DONE ISO8601:2016 ** DONE Refer to biblatex date format in docs as ISO8601-201? Part 2, Clause 4 Extended Format ** DONE Replace all EDTF refs in comments with ISO8601-2:2016 ** DONE Need to define the profile and conformance to the various level 1 and level 2 features (see 4.1.2) ** DONE Uncertain+approximate ('?~') is now '%' ** DONE Unspecified 'u' is now 'X' ** DONE unknown, * -> missing, open -> .. ** DONE 'circa' should become 'approximate' to align with ISO8601 * DONE Look into variable length look/behinds in decode: http://www.drregex.com/2019/02/variable-length-lookbehinds-actually.html * DONE New sourcemap verb fieldsource=cited/nocited? * DONE XDATA generalisation ** DONE DOT output? ** DONE tool output *** DONE tests with resolve/non resolve and output seps change *** DONE output_xdatasep in tool mode ** DONE Document *** DONE Default position when omitted for list sources is 1 *** DONE granular xdata doesn't work for dates *** DONE granular xdata at field level and below must be between same field and datatypes * DONE sortcites changes ** DONE ** DONE create APA template, set as default, switch refcontext for \printbibliography to normal ** DONE Doc new \visibility option, bump .bcf version ** DONE doc \AtBeginRefsection, just after refsection number setting * TODO bibjson ** TODO Add validate-bibjson option ** TODO Generate bibjson schema option and add --no_bibjson_schema option ** TODO CSL-JSON? https://github.com/citation-style-language/schema/blob/master/schemas/input/csl-data.json biber-2.19/bin/000077500000000000000000000000001440117422400132775ustar00rootroot00000000000000biber-2.19/bin/biber000077500000000000000000001114401440117422400143110ustar00rootroot00000000000000#!/usr/bin/env perl use v5.24; use strict; use warnings; use constant { EXIT_OK => 0, EXIT_ERROR => 2 }; use Carp; use IPC::Cmd qw( can_run run ); use Log::Log4perl qw(:no_extra_logdie_message); use Log::Log4perl::Level; use POSIX qw(strftime); use Biber; use Biber::Utils; use Encode; use File::Spec; use Pod::Usage; use List::AllUtils qw( first ); use Getopt::Long qw/:config no_ignore_case/; my $opts = {}; GetOptions( $opts, 'annotation_marker|annotation-marker=s', 'bibencoding=s', # legacy alias for input_encoding 'bblencoding=s', # legacy alias for output_encoding 'bblsafechars', # legacy alias for output_safechars 'bblsafecharsset=s', # legacy alias for output_safecharsset 'cache', 'clrmacros', 'collate_options|collate-options|c=s', 'configfile|g=s', 'convert_control|convert-control', 'debug|D', 'decodecharsset=s', 'dieondatamodel', 'dot_include|dot-include:s@', 'fastsort|f', # does nothing now 'fixinits', 'glob_datasources|glob-datasources', 'help|h|?', 'input_directory|input-directory=s', 'input_encoding|input-encodinge=s', 'input_format|input-format=s', 'isbn10', 'isbn13', 'isbn_normalise|isbn-normalise', 'listsep=s', 'logfile=s', 'mincrossrefs|m=s', 'named_annotation_marker|named-annotation-marker=s', 'namesep=s', 'no_bblxml_schema|no-bblxml-schema', 'no_bltxml_schema|no-bltxml-schema', 'noconf', 'no_default_datamodel|no-default-datamodel', 'nodieonerror', 'nolog', 'nostdmacros', 'onlylog', 'others_string|others-string=s', 'outfile=s', # legacy alias for output_file 'outformat=s', # legacy alias for output_format 'output_align|output-align', 'output_all_macrodefs|output-all-macrodefs', 'output_annotation_marker|output-annotation-marker=s', 'output_directory|output-directory=s', 'output_encoding|output-encoding|E=s', 'output_fieldcase|output-fieldcase=s', 'output_field_order|output-field-order=s', 'output_field_replace|output-field-replace=s', 'output_file|output-file|O=s', 'output_format|output-format=s', 'output_indent|output-indent=s', 'output_legacy_dates|output-legacy-dates', 'output_listsep|output-listsep=s', 'output_macro_fields|output-macro-fields=s', 'output_named_annotation_marker|output-named-annotation-marker=s', 'output_namesep|output-namesep=s', 'output_no_macrodefs|output-no-macrodefs', 'output_resolve|output-resolve', 'output_resolve_xdata|output-resolve-xdata', 'output_resolve_crossrefs|output-resolve-crossrefs', 'output_resolve_sets|output-resolve-sets', 'output_safechars|output-safechars', 'output_safecharsset|output-safecharsset=s', 'output_xdatamarker|output-xdatamarker=s', 'output_xdatasep|output-xdatasep=s', 'output_xname|output-xname', 'output_xnamesep|output-xnamesep=s', 'quiet|q+', 'recodedata=s', 'noremove_tmp_dir|noremove-tmp-dir', 'noskipduplicates', 'noxname', 'show_tmp_dir|show-tmp-dir', 'sortdebug', 'sortcase=s', 'sortlocale|l=s', 'sortupper=s', 'ssl-nointernalca', 'ssl-noverify-host', 'strip_comments|strip-comments', 'tool', 'tool_align|tool-align', # legacy alias for output_align 'tool_config|tool-config', 'tool_fieldcase|tool-fieldcase=s', # legacy alias for output_fieldcase 'tool_noremove_missing_dependants|tool-noremove-missing-dependants', 'tool_indent|tool-indent=s', # legacy alias for output_indent 'tool_resolve|tool-resolve', # legacy alias for output_resolve 'trace|T', 'u', # alias for input_encoding=UTF-8 'U', # alias for output_encoding=UTF-8 'validate_bblxml|validate-bblxml', 'validate_bltxml|validate-bltxml', 'validate_config|validate-config', 'validate_control|validate-control', 'validate_datamodel|validate-datamodel|V', 'version|v', 'winunicode|W', 'wraplines|w', 'xdatamarker=s', 'xdatasep=s', 'xnamesep=s', 'xsvsep=s', ) or pod2usage(-verbose => 0, -exitval => EXIT_ERROR); # verbose > 1 uses external perldoc, this doesn't work with PAR::Packer binaries # so use "-noperldoc" to use built-in POD::Text if (exists $opts->{'help'}) { pod2usage(-verbose => 2, -noperldoc => 1, -exitval => EXIT_OK); } if (exists $opts->{'version'}) { my $v = "biber version: $Biber::Config::VERSION"; $v .= ' (beta)' if $Biber::Config::BETA_VERSION; say "$v"; exit EXIT_OK; } # Show location of PAR::Packer cache if (exists $opts->{'cache'}) { if (my $cache = $ENV{PAR_TEMP}) { $cache =~ s|//|/|og; # Sanitise path in case it worries people say $cache; } else { say "No cache - you are not running the PAR::Packer executable version of biber"; } exit EXIT_OK; } # Show location of default tool mode config file and exit if (exists $opts->{'tool_config'}) { (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Biber/Config.pm"} ); $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/' say File::Spec->catpath($vol, "$dir", 'biber-tool.conf'); exit EXIT_OK; } # Catch this situation early unless (@ARGV) { pod2usage(-verbose => 0, -exitval => EXIT_ERROR); } # Make sure ARGV is decoded UTF8 as this is important on Windows when using # the Windows 10 1803+ UTF8 system locale option if ($opts->{winunicode}) { @ARGV = map {decode('UTF-8', $_)} @ARGV; } # Resolve some option shortcuts and legacy aliases if (my $o = $opts->{tool_align}) { $opts->{output_align} = $o; delete $opts->{tool_align}; } if (my $o = $opts->{tool_fieldcase}) { $opts->{output_fieldcase} = $o; delete $opts->{tool_fieldcase}; } if (my $o = $opts->{tool_indent}) { $opts->{output_indent} = $o; delete $opts->{tool_indent}; } if (my $o = $opts->{tool_resolve}) { $opts->{output_resolve} = $o; delete $opts->{tool_resolve}; } if (my $o = $opts->{bibencoding}) { $opts->{input_encoding} = $o; delete $opts->{bibencoding}; } if (my $o = $opts->{bblencoding}) { $opts->{output_encoding} = $o; delete $opts->{bblencoding}; } if (my $o = $opts->{bblsafechars}) { $opts->{output_safechars} = $o; delete $opts->{bblsafechars}; } if (my $o = $opts->{bblsafecharsset}) { $opts->{output_safecharsset} = $o; delete $opts->{bblsafecharsset}; } if (my $o = $opts->{outfile}) { $opts->{output_file} = $o; delete $opts->{outfile}; } if (my $o = $opts->{outformat}) { $opts->{output_format} = $o; delete $opts->{outformat}; } if ($opts->{u}) { $opts->{input_encoding} = 'UTF-8'; delete $opts->{u}; } if ($opts->{U}) { $opts->{output_encoding} = 'UTF-8'; delete $opts->{U}; } # Break up resolve meta-option if (exists($opts->{output_resolve})) { $opts->{output_resolve_xdata} = 1; $opts->{output_resolve_crossrefs} = 1; $opts->{output_resolve_sets} = 1; delete $opts->{output_resolve}; } # Legacy warnings if ($opts->{output_macro_fields}) { say STDERR "Biber: Deprecated option 'output-macro-fields' - no longer needed as macros are auto-detected on output"; } # Check the output_format option if (my $of = $opts->{output_format}) { unless ($opts->{output_format} =~ /\A(?:bbl|dot|bibtex|biblatexml|bblxml|bibjson)\z/xms) { say STDERR "Biber: Unknown output format '$of', must be one of 'bbl', 'dot', 'bibtex', 'biblatexml', 'bblxml', 'bibjson'"; exit EXIT_ERROR; } if ($opts->{output_format} eq 'bblxml' or $opts->{output_format} eq 'dot') { say STDERR "Biber: Deprecated output format '" . $opts->{output_format} . "' - this will be removed in a future version"; } } # Auto-detect input-format from extension if not given if (exists($opts->{tool}) and not exists($opts->{input_format})) { if ($ARGV[0] =~ m/\.bib$/) { $opts->{input_format} = 'bibtex'; } elsif ($ARGV[0] =~ m/\.bltxml$/) { $opts->{input_format} = 'biblatexml'; } } # Check output-format value if (exists($opts->{tool}) and exists($opts->{output_format}) and $opts->{output_format} !~ /\A(?:bibtex|biblatexml|bibjson)\z/xms) { say STDERR "Biber: Output format in tool mode must be one of 'bibtex', 'biblatexml' or 'bibjson'"; exit EXIT_ERROR; } # Set default output format if (not exists($opts->{output_format})) { if (exists($opts->{tool})) { $opts->{output_format} = 'bibtex'; # default for tool mode is different } else { $opts->{output_format} = 'bbl'; # default for normal use } } # Check ISBN options if (exists($opts->{isbn10}) and exists($opts->{isbn13})) { say STDERR "Biber: Select only one of 'isbn10' or 'isbn13' but not both"; exit EXIT_ERROR; } # Check the tool_* options if (exists($opts->{output_indent}) and $opts->{output_indent} !~ /^\d+t?$/) { say STDERR "Biber: Invalid non-numeric argument for 'output_indent' option!"; exit EXIT_ERROR; } if (exists($opts->{output_fieldcase}) and $opts->{output_fieldcase} !~ /^(?:upper|lower|title)$/i) { say STDERR "Biber: Invalid argument for 'output_fieldcase' option - must be one of 'upper', 'lower' or 'title'!"; exit EXIT_ERROR; } # Check the dot_include option if (exists($opts->{dot_include}) and (not exists($opts->{output_format}) or (exists($opts->{output_format}) and $opts->{output_format} ne 'dot'))) { say STDERR "Biber: DOT output format specified but output format is not DOT!"; exit EXIT_ERROR; } if (exists($opts->{dot_include})) { $opts->{dot_include} = {map {lc($_) => 1} split(/,/,join(',',@{$opts->{dot_include}}))}; my @suboptions = ( 'section', 'field', 'crossref', 'xref', 'xdata', 'related' ); foreach my $g (keys $opts->{dot_include}->%*) { unless (first {$_ eq lc($g)} @suboptions) { say STDERR "Biber: '$g' is an invalid output type for DOT output"; exit EXIT_ERROR; } } } # Check input_format option if (exists($opts->{input_format}) and not exists($opts->{tool}) ) { say STDERR "Biber: 'input_format' option is only valid in tool mode"; exit EXIT_ERROR; } if (exists($opts->{input_format}) and $opts->{input_format} !~ /^(?:bibtex|biblatexml|)$/i) { say STDERR 'Biber: ' . $opts->{input_format} . ' is an invalid input format in tool mode'; exit EXIT_ERROR; } # Create Biber object, passing command-line options my $biber = Biber->new($opts->%*); # get the logger object my $logger = Log::Log4perl::get_logger('main'); my $screen = Log::Log4perl::get_logger('screen'); my $logfile = Log::Log4perl::get_logger('logfile'); my $outfile; my $time_string = strftime "%a %b %e, %Y, %H:%M:%S", localtime; $logfile->info("=== $time_string"); my $bcf = Biber::Config->getoption('bcf'); if (Biber::Config->getoption('output_file')) { $outfile = Biber::Config->getoption('output_file') } else { if (Biber::Config->getoption('tool')) { if (Biber::Config->getoption('output_format') eq 'bibtex') { # tool .bib output $outfile = $ARGV[0] =~ s/\.[^.]+$/_bibertool.bib/r; } elsif (Biber::Config->getoption('output_format') eq 'biblatexml') { # tool .blxtxml output $outfile = $ARGV[0] =~ s/\.[^.]+$/_bibertool.bltxml/r; } elsif (Biber::Config->getoption('output_format') eq 'bibjson') { # bibjson output $outfile = $ARGV[0] =~ s/\.[^.]+$/_bibertool.json/r; } } else { if (Biber::Config->getoption('output_format') eq 'dot') { # .dot output $outfile = $bcf =~ s/bcf$/dot/r; } elsif (Biber::Config->getoption('output_format') eq 'bibtex') { # bibtex output $outfile = $bcf =~ s/\..+$/_biber.bib/r; } elsif (Biber::Config->getoption('output_format') eq 'bbl') { # bbl output $outfile = $bcf =~ s/bcf$/bbl/r; } elsif (Biber::Config->getoption('output_format') eq 'bblxml') { # bblxml output $outfile = $bcf =~ s/bcf$/bblxml/r; } else { say "output_format option '" . Biber::Config->getoption('output_format') . "' only makes sense in tool mode (--tool)"; exit EXIT_ERROR; } } } # Set the .bbl path to the output dir, if specified if (my $outdir = Biber::Config->getoption('output_directory')) { my (undef, undef, $file) = File::Spec->splitpath($outfile); $outfile = File::Spec->catfile($outdir, $file) } # Set the output class. Should be a subclass of Biber::Output::base my $package = 'Biber::Output::' . Biber::Config->getoption('output_format'); eval "require $package" or biber_error("Error loading data source package '$package': $@"); $biber->set_output_obj(eval "${package}->new()"); # Get reference to output object my $biberoutput = $biber->get_output_obj; # Set the output filename and get ref to output object This has to come # before .bcf parsing so that we can detect .bcf parsing errors # early and clean up $biberoutput->set_output_target_file($outfile); # Fake some necessary .bcf parts if in tool mode if (exists($opts->{tool})) { $biber->tool_mode_setup; } else { # parse the .bcf control file. # This sets the 'tool' option for non-tool # mode bibtex output and so don't use Biber::Config::getoption('tool') # after this when we need to know if --tool was specified on the command # line $biber->parse_ctrlfile($bcf); } # Reset output filename now we have the output coding from the .bcf # because set_output_target_file() sets output encoding from information in .bcf my $outfileobj = $biberoutput->set_output_target_file($outfile, 1); # Postprocess biber options now that they are all read from the various places Biber::Config->postprocess_biber_opts; # Set the output target obj # Must come after ctrlfile/option parsing otherwise output encoding is not set $biberoutput->set_output_target($outfileobj); # Check to see if the .bcf set debug=1. If so, increase logging level # We couldn't set this on logger init as the .bcf hadn't been read then if (Biber::Config->getoption('debug')) { $logger->level($DEBUG); } if (Biber::Config->getoption('trace')) { $logger->trace("\n###########################################################\n", "############# Dump of initial config object: ##############\n", Data::Dump::pp($Biber::Config::CONFIG), "\n", "############# Dump of initial biber object: ###############\n", $biber->_stringdump, "\n###########################################################") } # Do all the real work exists($opts->{tool}) ? $biber->prepare_tool : $biber->prepare; if (Biber::Config->getoption('trace')) { $logger->trace("\n###########################################################\n", "############# Dump of final config object: ################\n", Data::Dump::pp($Biber::Config::CONFIG), "\n", "############# Dump of final biber object: #################\n", $biber->_stringdump, "\n###########################################################") } # Write the output to the target $biberoutput->output; $biber->display_end; exit EXIT_OK; __END__ =pod =encoding utf8 =head1 NAME C - A bibtex replacement for users of biblatex =head1 SYNOPSIS biber [options] file[.bcf] biber [options] --tool Creates "file.bbl" using control file "file.bcf" (".bcf" extension is optional). Normally use with biblatex requires no options as they are all set in biblatex and passed via the ".bcf" file In "tool" mode (see B<--tool> option), takes a datasource (defaults to "bibtex" datasource) and outputs a copy of the datasource with any command-line or config file options applied. Please run "biber --help" for option details =head1 DESCRIPTION C provides a replacement of the bibtex processor for users of biblatex. =head1 OPTIONS =over 4 =item B<--annotation-marker=[marker]> Sets the suffix which can be appended to a BibTeX data source field name to indicate that the value of the field is a data annotation. The default is C<+an>. =item B<--cache> If running as a PAR::Packer binary, show the cache location and exit. =item B<--clrmacros> Clears any BibTeX macros (@STRING) between BibLaTeX refsections. This prevents BibTeX warnings about macro redefinitions if you are using the same datasource several times for different refsections. =item B<--collate-options|-c [options]> Options to pass to the C object used for sorting (default is 'level => "4", variable => "non-ignorable"'). See C for details. =item B<--configfile|-g [file]> Use F as the configuration file for C instead of looking in the default locations which are, in order: * C or C<.biber.conf> in the current directory * C<$HOME/.biber.conf> * C<$ENV{XDG_CONFIG_HOME}/biber/biber.conf> * C<$HOME/.config/biber/biber.conf> * C<$HOME/Library/biber/biber.conf> (Mac OSX only) * C<$ENV{APPDATA}/biber.conf> (Windows only) * The output of C (if available on the system). In tool mode, (B<--tool>) the F installed with Biber is always used to set default options if a user-defined config file is not specified. Use the B<--tool-config> option to view the location of the default tool mode config file which may be useful as a source for writing your own. =item B<--convert-control> Converts the F<.bcf> control file into html using an XSLT transform. Can be useful for debugging. File is named by appending C<.html> to F<.bcf> file. =item B<--decodecharsset=[recode set name]> The set of characters included in the conversion routine when decoding LaTeX macros into UTF-8 (which happens when B<--bblencoding|-E> is set to UTF-8). Set to "full" to try harder with a much larger set or "base" to use a smaller basic set. Default is "base". You may want to try "full" if you have less common UTF-8 characters in your data source. The recode sets are defined in the reencoding data file which can be customised. See the B<--recodedata> option and the PDF manual. The virtual set name "null" may be specified which effectively turns off macro decoding. =item B<--debug|-D> Turn on debugging for C. =item B<--dieondatamodel> Exit immediately with error if using C<--validate-datamodel> and a datamodel validation error is found. Default is to warn and continue. =item B<--dot-include=section,field,xdata,crossref,xref,related> Specifies the element to include in GraphViz DOT output format if the output format is 'dot'. You can also choose to display crossref, xref, xdata and/or related entry connections. The default if not specified is C<--dot-include=section,xdata,crossref,xref>. =item B<--fixinits> Try to fix broken multiple initials when they have no space between them in BibTeX data sources. That is, "A.B. Clarke" becomes "A. B. Clarke" before name parsing. This can slightly mess up things like "{U.K. Government}" and other esoteric cases. =item B<--help|-h> Show this help message. =item B<--input-directory [directory]> F<.bcf> and data files will be looked for first in the F. See the biber PDF documentation for the other possibilities and how this interacts with the C<--output-directory> option. =item B<--input-encoding|-e [encoding]> Specify the encoding of the data source file(s). Default is "UTF-8" Normally it's not necessary to set this as it's passed via the .bcf file from biblatex's C option. See "perldoc Encode::Supported" for a list of supported encodings. The legacy option B<--bibencoding> is supported as an alias. =item B<--input-format=bibtex|biblatexml> Biber input format. This option only means something in tool mode (see B option) since normally the input format of a data source is specified in the F<.bcf> file and therefore from the B<\addbibresouce> macro in BibLaTeX. The default value when in tool mode is 'bibtex' =item B<--isbn10> Force all ISBNs to 10-digit versions on output. This will convert the ISBN internally to an ISBN object which will not have hyphens on output. If you use this option and want an ISBN with hyphens in the correct place on output, use the B<--isbn-normalise> option. =item B<--isbn13> Force all ISBNs to 13-digit versions on output. This will convert the ISBN internally to an ISBN object which will not have hyphens on output. If you use this option and want an ISBN with hyphens in the correct place on output, use the B<--isbn-normalise> option. =item B<--isbn-normalise> Normalise ISBNs with hyphens in the correct places on output. =item B<--logfile [file]> Use F as the name of the logfile. =item B<--listsep=[sep]> Use F as the separator for BibTeX data source list fields. Defaults to BibTeX's usual 'and'. =item B<--mincrossrefs|-m [number]> Set threshold for crossrefs. =item B<--named-annotation-marker=[marker]> Sets the separator between the C<--annotation-marker> and the name of a named annotation. The default is C<:>. =item B<--namesep=[sep]> Use F as the separator for BibTeX data source name fields. Defaults to BibTeX's usual 'and'. =item B<--no-bblxml-schema> When writing bblxml output, don't generate an RNG XML schema from the data model. =item B<--no-bltxml-schema> When reading or writing biblatexml data sources, don't generate an RNG XML schema from the data model. =item B<--noconf> Don't look for a configfile. =item B<--no-default-datamodel> Do not load the default datamodel coming from either the F<.bcf> or, when in tool mode, from the default tool mode config file. Use of this option implies that you will provide a complete datamodel in a config file. This option is useful when you wish to make major modifications to the datamodel because the simple add/modify operations to the default datamodel via a user config file are not enough. For example, to remove things from the default datamodel, you would use this option and supply a complete, reduced datamodel in the user config file. =item B<--nodieonerror> Don't exit on errors, just log and continue as far as possible. This can be useful if the error is something from, for example, the underlying BibTeX parsing C library which can complain about parsing errors which can be ignored. =item B<--glob-datasources> By default, glob (expand according to pattern) any data source filenames. Allows data sources to be specified like B<*.bib> to load all B<.bib> files in a directory. Can be overridden on a per-dataource basis with the B option to B<\addbibresource> in biblatex. =item B<--nolog> Do not write any logfile. =item B<--noskipduplicates> Don't skip duplicate bibliography keys if found. The detection of duplicate keys is done across all data sources. Sometimes you might need duplicates when using several data sources across several refsections in which case you might need to use this option. =item B<--nostdmacros> Don't automatically define any standard macros like month abbreviations. If you also define these yourself, this option can be used to suppress macro redefinition warnings. =item B<--noremove-tmp-dir> Do not remove the temporary directory used for various intermediate files and data before exit (default is false). Name of the directory can be obtained with the B<--show-tmp-dir> option. =item B<--noxname> Disable exended name processing in bibtex data sources. Can be useful if you don't use this and it causes problems due to auto-detection of extended name format. =item B<--onlylog> Do not write any message to screen. =item B<--others-string=[string]> Use F as the final name in a name field which implies "et al". Defaults to BibTeX's usual 'others'. =item B<--output-align> Align field values in neat columns in output. Effect depends on the output format. Default is false. The legacy option B<--tool-align> is supported as an alias. =item B<--output-all-macrodefs> When outputting bibtex format, whether to output all found macro (@STRING entries) definitions rather than just definitions for macros which are actually used in the output entries. Default is false. =item B<--output-annotation-marker=[marker]> As B<--annotation-marker> but for tool mode bibtex output. The default is C<+an>. =item B<--output-named-annotation-marker=[marker]> As B<--named-annotation-marker> but for tool mode bibtex output. The default is C<:>. =item B<--output-directory [directory]> Output files (including log files) are output to F instead of the current directory. Input files are also looked for in F before current directory unless C<--input-directory> is also specified in which case input files are only looked for in the directory specified by C<--input-directory>. =item B<--output-encoding|-E [encoding]> Specify the encoding of the output C<.bbl> file. Default is "UTF-8". Normally it's not necessary to set this as it's passed via the .bcf file from biblatex's C option. See C for a list of supported encodings. The legacy option B<--bblencoding> is supported as an alias. =item B<--output-fieldcase=upper|lower|title> Case for field names output. Effect depends on the output format. Defaults to 'upper'. The legacy option B<--tool-fieldcase> is supported as an alias. =item B<--output-field-order=[field1, ... fieldn]> When outputting bibtex format data in tool mode, this option allows the customisation of the order of fields within entries. The value is a comma-separated string of field names or classes of fields. Fields not mentioned in the list are output in sorted name order after the explicitly specified fields. The classes of fields are: 'names' - All name list fields 'lists' - All non-name list fields 'dates' - All date fields By default, its value is 'options,abstract,names,lists,dates'. =item B<--output-field-replace=[field1:replacefield1, ... fieldn:replacefieldn]> When outputting bibtex format output C instead of C. This can be used to output legacy formats which undo the default driver source map e.g B<--output-field-replace=location:address,journaltitle:journal>. See B<--output-legacy-dates> if legacy (YEAR/MONTH) date fields are required in bibtex format output. =item B<--output-file|-O [file]> Output to F instead of F F is relative to B<--output-directory>, if set (absolute paths in this case are stripped to filename only). F can be absolute if B<--output-directory> is not set. F can be '-' to output directly to STDOUT. The legacy option B<--outfile> is supported as an alias. =item B<--output-format=dot|bibtex|biblatexml|bbl|bblxml|bibjson> Biber output format. Default if not specified is of course, F. Use F to output a GraphViz DOT file instead of F<.bbl>. This is a directed graph of the bibliography data showing entries and, as requested, sections and fields. You must process this file with C, e.g. C to render the graph. See the B<--dot-include> option to select what is included in the DOT output. F is an XML version of the F format which you could transform using XSLT. By default, when outputting F, a RelaxNG XML schema is generated from the active data model and saved with a F extension along with the output file name (unless the B<--no-bblxml-schema> option is specified). You may validate the F using the schema with the B<--validate-bblxml> option. The legacy option B<--outformat> is supported as an alias. =item B<--output-indent=[num][t]> Indentation for body of entries in output. Effect depends on the output format. Defaults to 2. The C can be followed by C<'t'> to specify tabs instead of spaces. The legacy option B<--tool-indent> is supported as an alias. =item B<--output-legacy-dates> When outputting bibtex format, output YEAR/MONTH fields instead of DATE. This is not possible if the input is not convertible to legacy format, meaning that any date to be output with legacy fields can only have a YEAR part and perhaps a MONTH part. If a DAY or ENDYEAR part are found, the date is not convertible and the legacy output format will be skipped. Default is false. =item B<--output-listsep=[sep]> As B<--listsep> but for tool mode bibtex output. Defaults to BibTeX's usual 'and'. =item B<--output-namesep=[sep]> As B<--namesep> but for tool mode bibtex output. Defaults to BibTeX's usual 'and'. =item B<--output-no-macrodefs> When outputting BibTeX format, don't output macro definitions (@STRING entries). You might not want to output macro definitions if you keep them in a separate file. =item B<--output-resolve> Convenience option to set all of the B<--output-resolve-*> options to 'true'. The legacy option B<--tool-resolve> is supported as an alias. =item B<--output-resolve-xdata> Whether to resolve XDATA inheritance in tool mode or when B<--output-format=bibtex> in non tool mode. Defaults to 'false'. =item B<--output-resolve-crossrefs> Whether to resolve CROSSREF/XREF inheritance in tool mode or when B<--output-format=bibtex> in non tool mode. Defaults to 'false'. =item B<--output-resolve-sets> Whether to resolve data sets in tool mode or when B<--output-format=bibtex> in non tool mode. Defaults to 'false'. =item B<--output-safechars> Try to convert UTF-8 chars into LaTeX macros when writing the output. This can prevent unknown char errors when using PDFLaTeX and inputenc as this doesn't understand all of UTF-8. Note, it is better to switch to XeTeX or LuaTeX to avoid this situation. By default uses the --output-safecharsset "base" set of characters. The legacy option B<--bblsafechars> is supported as an alias. =item B<--output-safecharsset=[recode set name]> The set of characters included in the conversion routine for B<--output-safechars>. Set to "full" to try harder with a much larger set or "base" to use a basic set. Default is "base" which is fine for most use cases. You may need to load more macro packages to deal with the results of "full" (Dings, Greek characters, special symbols etc.). The recode sets are defined in the reencoding data file which can be customised. See the B<--recodedata> option and the PDF manual. The legacy option B<--bblsafecharsset> is supported as an alias. The virtual set name "null" may be specified which effectively turns off macro encoding. =item B<--output-xdatamarker=[marker]> As B<--xdatamarker> but for tool mode output. Default is 'xdata'. =item B<--output-xdatasep=[sep]> As B<--xdatasep> but for tool mode output. Default is '-'. =item B<--output-xname> When output is a .bib BibTeX file in tool mode, whether to output names the eXtended BibTeX name field format. =item B<--output-xnamesep=[sep]> As B<--xnamesep> but for tool mode bibtex output. Default is '='. =item B<--quiet|-q> Log only errors. If this option is used more than once, don't even log errors. =item B<--recodedata=[file]> The data file to use for the reencoding between UTF-8 and LaTeX macros. It defines the sets specified with the B<--output-safecharsset> and B<--decodecharsset> options. It defaults to F in the same directory as Biber's F module. See the PDF documentation for the format of this file. If this option is used, then F should be somewhere C can find it. =item B<--show-tmp-dir> Prints the location of the temporary directory used for various intermediate files and data. Only useful if B<--noremove-tmp-dir> is set to true. =item B<--sortdebug> Add comments to output with sorting keys. Useful for debugging. =item B<--sortcase=true|false> Case-sensitive sorting (default is true). =item B<--sortlocale|-l [locale]> Set the locale to be used for sorting. The locale is used to add CLDR tailoring to the sort (if available for the locale). =item B<--sortupper=true|false> Whether to sort uppercase before lowercase when sorting (default is true). =item B<--ssl-nointernalca> Don't try to use the default Mozilla CA certificates when using HTTPS to fetch remote data. This assumes that the user will set one of the perl LWP::UserAgent module environment variables to find the CA certs. =item B<--ssl-noverify-host> Turn off host verification when using HTTPS to fetch remote data sources. You may need this if the SSL certificate is self-signed for example. =item B<--strip-comments> In tool mode, strip all comments from the output file. =item B<--tool> Run in tool mode. This mode is datasource centric rather than document centric. biber reads a datasource (and a config file if specified), applies the command-line and config file options to the datasource and writes a new datasource. Essentially, this allows you to change your data sources using biber's transformation options (such as source mapping, sorting etc.) =item B<--tool-config> Show the location of the default tool mode config file and exit. Useful when you need to copy this file and customise it. =item B<--tool-noremove-missing-dependants> Use this option in tool mode if you don't want to remove C, C and C fields from the output which point to a missing entry. Useful if you have split datafiles where the e.g. Cs are in another file that you are not including in the tool mode run. =item B<--trace|T> Turn on tracing. Also turns on B<--debug|d> and additionally provides a lot of low-level tracing information in the log. =item B<-u> Alias for B<--input-encoding=UTF-8> =item B<-U> Alias for B<--output-encoding=UTF-8> =item B<--validate-bblxml> Schema validate bblXML output against a schema auto-generated from the BibLaTeX datamodel. The schema will be auto-generated with the name of the F<.bbl> file with a F<.rng> extension. The generated schema can be kept and used with standard XML editors to validate the output during XSL development. =item B<--validate-bltxml> Schema validate BibLaTeXML datasources against a schema auto-generated from the BibLaTeX datamodel. The schema will be auto-generated with the name of the F<.bcf> file with a F<.rng> extension. The generated schema can be kept and used with standard XML editors to validate the datasource during datasource development. The schema validation does not validate all semantic aspects of the datamodel (i.e. the data model constraints)---for this use the C<--validate-datamodel> option. =item B<--validate-config> Schema validate the biber config file. =item B<--validate-control> Schema validate the F<.bcf> biblatex control file. =item B<--validate-datamodel|-V> Validate the data against a data model. By default, the data model used is the one in the F<.bcf> file (normal mode) or in the default config file whose path can be shown with the C<--tool-config> option (tool mode). Use C<--no-default-datamodel> to ignore the default data model completely if you are using a complete data model via your own config file (with C<--configfile>). =item B<--version|-v> Display version number. =item B<--winunicode|-W> In Windows 10 1803+, turning on the 'Use Unicode UTF8 for worldwide language support' option makes Windows use UTF-8 instead of UTF-16 for many system APIs. If that option is enabled, use this option to turn off biber's UTF-16 filename support on Windows. This will result in much improved handling of Unicode filenames. =item B<--wraplines|-w> Wrap lines in the F<.bbl> file. =item B<--xdatamarker=[marker]> Use F as the string before C<--xdatasep> which introduces an XDATA reference in BibTeX format data sources. Not used in BibLaTeXML data sources as it has a dedicated XML attribute C' for this. Default is 'xdata'. =item B<--xdatasep=[sep]> Use F as the separator between XDATA sub-entry parts in the eXtended name format. See biber docs. Default is '-'. =item B<--xnamesep=[sep]> Use F as the separator between namepart names and the namepart values in the eXtended name format. Also applies to XDATA references as the separator between C<--xdatamarker> and the XDATA reference. See biber docs. Default is '='. =item B<--xsvsep=[sep]> Use F as the separator for fields of format type "xsv" in the data model. A Perl regexp can be specified. Defaults to a single comma surround by optional whitespace (\s*,\s*). =back =head1 AUTHOR Philip Kime, C =head1 BUGS & DOCUMENTATION To see the full documentation, run B or get the F manual from SourceForge. Please report any bugs or feature requests on our Github tracker at L. =head1 COPYRIGHT & LICENSE Copyright 2009-2012 François Charette and Philip Kime, all rights reserved. Copyright 2012-2023 Philip Kime, all rights reserved. This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. =cut biber-2.19/data/000077500000000000000000000000001440117422400134405ustar00rootroot00000000000000biber-2.19/data/bcf.xsl000066400000000000000000001755251440117422400147410ustar00rootroot00000000000000
Entrytype:
TargetFromTo

Sorting Scheme:

sort_final &darr; &uarr; Aa/ aA/ Aa/ aA/ A a A a
  • > <
Key
  • Heading Format: (sort-direction)(case-order)/(case-sensitivity)
  • Heading key: &uarr; = ascending sort, &darr; = descending sort, Aa = sort uppercase before lower, aA = sort lowercase before upper, A = case-sensitive sorting, a = case-insensitive sorting, sort fieldset is final master key if defined
  • Field key: Padding specification e.g. 0000field = pad field "field" from left with "0" to width 4. Substring specification e.g. field<<<< = take width 4 substring from right side of field "field"
BibLaTeX control file

BibLaTeX Control File (BCF format version: biblatex version: )


options for

OptionValue
,&nbsp;

Option Scope

OptionDatatypeOutput by backend?Input as by backend
&#10003;

Datafield Sets

NameMembers
datatype: &nbsp; fieldtype: ,&nbsp; ,&nbsp;

Datasource Mappings

Mappings for datatype (default overwrite = 1 0 , section = all )

Mapping ( overwrite = default overwrite , for types: , , for datasources: , , foreach loop field= )
map_final @ &rarr;@ map_newentryNEW created with key "" &rarr; &asymp; &asymp; &asymp; &asymp; &asymp; &asymp; &rarr; Entry must be CITED via \cite{key} Entry must be NOCITED via \nocite{key} or \nocite{*} Entry must be CITED or NOCITED via \cite{key} or \nocite{key} Entry must be NOCITED via \nocite{} Entry must only be NOCITED via \nocite{*} map_nullentry map_null ="" =TYPE =FIELD =FIELDVAL map_newentry applied to target ""

Key
  • condition: condition must obtain or mapping terminates
  • @source&rarr;@target: Change source entrytype to target entrytype
  • source&rarr;target: Change source field to target field
  • field: Delete field
  • entry: Delete entry
  • field="string": Set field to "string"
  • TYPE: Most recently mentioned source entrytype
  • FIELD: Most recently source field
  • FIELDVAL: Most recently source field value
  • field&asymp;MATCH: field must match Regular Expression MATCH
  • field&asymp;MATCH &rarr; REPLACE: Perform Regular Expression match/replace on field

Labelalpha Name Templates

Template for type

OrderPreUse optionWidthSideCompoundNamepart


Labelalpha Templates

Template for type

Part
  • la_final la_compound namecount=&rarr; > la_namessep() la_names= < v/ vf/ l &otimes;
Key
  • Heading key: Label parts are concatenated together in part order shown
  • Labelpart key: Final label, no more parts are considered. "namecount=n&rarr;field" - conditional name fieldpart, only used if there as many names as specified by the range n. Substring specification: ">>>field" = use three chars from left side of field. "field<<" = use two chars from right side of field. "fieldv/n" = variable-width substring, max n chars. "fieldvf/n" = variable-width substring fixed to same length as longest string occuring at least n times. "fieldl" = list scope disambiguation where the label as a whole is unique, not necessarily the individual parts. "field"=range=only use the names in the specified range to form the labelpart. "field(string)"=use string as separator between all names. &otimes; = supress alphaothers

Extradate specification

Fields
,&nbsp;

Inheritance

Defaults

Child type &asymp; Parent type Source field &rarr; Target field Suppress
* &asymp; * inherit_override * &rarr; inherit_override * inherit_override * &rarr; inherit_override &empty;
* &asymp; * inherit_override * &asymp; inherit_override * inherit_override * &rarr; inherit_override &empty;

Specifications

Child type &asymp; Parent type Source field &rarr; Target field Suppress
  • * &asymp; *
  • &rarr; &empty; inherit_override &rarr; inherit_override
Key
  • * matches all entrytypes or fields
  • X &asymp; Y: X inherits from Y
  • X &rarr; &empty;: Field X is suppressed
  • F &rarr; F': Field F in parent becomes field F' in child. If both field F and field F' exist, field in red overrides the other.

Global Default Sorting Options

Presort defaults

EntrytypePresort default
ALL

Sorting exclusions

EntrytypeFields excluded from sorting
,&nbsp;

Sorting inclusions

EntrytypeFields forcibly included in sorting
,&nbsp;

Uniquename Template

OrderBaseUse optionDisambiguation levelNamepart

Sorting Name Key Template

(visibility: )
OrderKeypart
(if use=) (Initials only) +

Sorting Schemes

Sorting Transliteration



Data Model

Constants

NameTypeValue

Legal entrytypes

EntrytypeLegal fields for entrytype
GLOBAL
,
GLOBAL fields
GLOBAL fields
,

Field Types

FieldField FormatData type
&empty; &loz; standard &nbsp;
Key
  • &empty; = field can null in .bbl, &loz; = field is not output to .bbl

Constraints

EntrytypesConstraint
  • &forall; &exist; &not;&exist; ( , ) &rarr; &forall; &exist; &not;&exist; ( , ) &le; ( , ) &le; ( , ) must be dates &oplus; ( field_xor_coerce , ) &or; ( , )
Key
  • C &rarr; C': If condition C is met then condition C' must also be met
  • &forall; ( ... ): True if all fields in list exist
  • &exist; ( ... ): True if one field in list exists
  • &not;&exist; ( ... ): True if no fields in list exist
  • n &le; ( ... ) &le; m: True if fields in list are have values in the range n-m
  • &oplus; ( ... ): True if at least and at most one of the fields in the list exists (XOR). If more than field in the set exists, all will be ignored except for the one in red
  • &or; ( ... ): True if at least one of the fields in the list exists (OR)

Reference Sections

Section 0

Data sourcesCitekeysCitekey countsDynamic sets
  • (&nbsp;)
  • ()
  • &nbsp;()

Section

Data sourcesCitekeysCitekey counts
  • (&nbsp;)
  • ()

Data Lists

Data list ""

TypeSorting SchemeLabelprefixUniquename Template NameLabelalphaname Template Name
Filters
Filter typeFilter value
biber-2.19/data/biber-tool.conf000066400000000000000000002110231440117422400163440ustar00rootroot00000000000000 prefix family given prefix family given suffix prefix mm citeorder sf,sm,sn,pf,pm,pn,pp family,given,prefix,suffix boolean,integer,string,xml default,transliteration,transcription,translation article artwork audio bibnote book bookinbook booklet collection commentary customa customb customc customd custome customf dataset inbook incollection inproceedings inreference image jurisdiction legal legislation letter manual misc movie music mvcollection mvreference mvproceedings mvbook online patent performance periodical proceedings reference report review set software standard suppbook suppcollection suppperiodical thesis unpublished video xdata sortyear volume volumes abstract addendum annotation booksubtitle booktitle booktitleaddon chapter edition eid entrysubtype eprintclass eprinttype eventtitle eventtitleaddon gender howpublished indexsorttitle indextitle isan isbn ismn isrn issn issue issuesubtitle issuetitle issuetitleaddon iswc journalsubtitle journaltitle journaltitleaddon label langid langidopts library mainsubtitle maintitle maintitleaddon nameaddon note number origtitle pagetotal part relatedstring relatedtype reprinttitle series shorthandintro subtitle title titleaddon usera userb userc userd usere userf venue version shorthand shortjournal shortseries shorttitle sorttitle sortshorthand sortkey presort institution lista listb listc listd liste listf location organization origlocation origpublisher publisher afterword annotator author bookauthor commentator editor editora editorb editorc foreword holder introduction namea nameb namec translator shortauthor shorteditor sortname authortype editoratype editorbtype editorctype editortype bookpagination nameatype namebtype namectype pagination pubstate type language origlanguage crossref xref date endyear year month day hour minute second timezone yeardivision endmonth endday endhour endminute endsecond endtimezone endyeardivision eventdate eventendyear eventyear eventmonth eventday eventhour eventminute eventsecond eventtimezone eventyeardivision eventendmonth eventendday eventendhour eventendminute eventendsecond eventendtimezone eventendyeardivision origdate origendyear origyear origmonth origday orighour origminute origsecond origtimezone origyeardivision origendmonth origendday origendhour origendminute origendsecond origendtimezone origendyeardivision urldate urlendyear urlyear urlmonth urlday urlhour urlminute urlsecond urltimezone urlyeardivision urlendmonth urlendday urlendhour urlendminute urlendsecond urlendtimezone urlendyeardivision doi eprint file verba verbb verbc url xdata ids entryset related keywords options relatedoptions pages execute abstract annotation authortype bookpagination crossref day doi eprint eprintclass eprinttype endday endhour endminute endmonth endsecond endtimezone endyear endyeardivision entryset entrysubtype execute file gender hour ids indextitle indexsorttitle isan ismn iswc keywords label langid langidopts library lista listb listc listd liste listf minute month namea nameb namec nameatype namebtype namectype nameaddon options origday origendday origendhour origendminute origendmonth origendsecond origendtimezone origendyear origendyeardivision orighour origminute origmonth origsecond origtimezone origyear origyeardivision origlocation origpublisher origtitle pagination presort related relatedoptions relatedstring relatedtype second shortauthor shorteditor shorthand shorthandintro shortjournal shortseries shorttitle sortkey sortname sortshorthand sorttitle sortyear timezone url urlday urlendday urlendhour urlendminute urlendmonth urlendsecond urlendtimezone urlendyear urlhour urlminute urlmonth urlsecond urltimezone urlyear usera userb userc userd usere userf verba verbb verbc xdata xref year yeardivision set entryset article addendum annotator author commentator editor editora editorb editorc editortype editoratype editorbtype editorctype eid issn issue issuetitle issuesubtitle issuetitleaddon journalsubtitle journaltitle journaltitleaddon language note number origlanguage pages pubstate series subtitle title titleaddon translator version volume bibnote note book author addendum afterword annotator chapter commentator edition editor editora editorb editorc editortype editoratype editorbtype editorctype eid foreword introduction isbn language location maintitle maintitleaddon mainsubtitle note number origlanguage pages pagetotal part publisher pubstate series subtitle title titleaddon translator volume volumes mvbook addendum afterword annotator author commentator edition editor editora editorb editorc editortype editoratype editorbtype editorctype foreword introduction isbn language location note number origlanguage pagetotal publisher pubstate series subtitle title titleaddon translator volume volumes inbook bookinbook suppbook addendum afterword annotator author booktitle bookauthor booksubtitle booktitleaddon chapter commentator edition editor editora editorb editorc editortype editoratype editorbtype editorctype eid foreword introduction isbn language location mainsubtitle maintitle maintitleaddon note number origlanguage part publisher pages pubstate series subtitle title titleaddon translator volume volumes booklet addendum author chapter editor editortype eid howpublished language location note pages pagetotal pubstate subtitle title titleaddon type collection reference addendum afterword annotator chapter commentator edition editor editora editorb editorc editortype editoratype editorbtype editorctype eid foreword introduction isbn language location mainsubtitle maintitle maintitleaddon note number origlanguage pages pagetotal part publisher pubstate series subtitle title titleaddon translator volume volumes mvcollection mvreference addendum afterword annotator author commentator edition editor editora editorb editorc editortype editoratype editorbtype editorctype foreword introduction isbn language location note number origlanguage publisher pubstate subtitle title titleaddon translator volume volumes incollection suppcollection inreference addendum afterword annotator author booksubtitle booktitle booktitleaddon chapter commentator edition editor editora editorb editorc editortype editoratype editorbtype editorctype eid foreword introduction isbn language location mainsubtitle maintitle maintitleaddon note number origlanguage pages part publisher pubstate series subtitle title titleaddon translator volume volumes dataset addendum author edition editor editortype language location note number organization publisher pubstate series subtitle title titleaddon type version manual addendum author chapter edition editor editortype eid isbn language location note number organization pages pagetotal publisher pubstate series subtitle title titleaddon type version misc software addendum author editor editortype howpublished language location note organization pubstate subtitle title titleaddon type version online addendum author editor editortype language note organization pubstate subtitle title titleaddon version patent addendum author holder location note number pubstate subtitle title titleaddon type version periodical addendum editor editora editorb editorc editortype editoratype editorbtype editorctype issn issue issuesubtitle issuetitle issuetitleaddon language note number pubstate series subtitle title titleaddon volume yeardivision mvproceedings addendum editor editortype eventday eventendday eventendhour eventendminute eventendmonth eventendsecond eventendtimezone eventendyear eventendyeardivision eventhour eventminute eventmonth eventsecond eventtimezone eventyear eventyeardivision eventtitle eventtitleaddon isbn language location note number organization pagetotal publisher pubstate series subtitle title titleaddon venue volumes proceedings addendum chapter editor editortype eid eventday eventendday eventendhour eventendminute eventendmonth eventendsecond eventendtimezone eventendyear eventendyeardivision eventhour eventminute eventmonth eventsecond eventtimezone eventyear eventyeardivision eventtitle eventtitleaddon isbn language location mainsubtitle maintitle maintitleaddon note number organization pages pagetotal part publisher pubstate series subtitle title titleaddon venue volume volumes inproceedings addendum author booksubtitle booktitle booktitleaddon chapter editor editortype eid eventday eventendday eventendhour eventendminute eventendmonth eventendsecond eventendtimezone eventendyear eventendyeardivision eventhour eventminute eventmonth eventsecond eventtimezone eventyear eventyeardivision eventtitle eventtitleaddon isbn language location mainsubtitle maintitle maintitleaddon note number organization pages part publisher pubstate series subtitle title titleaddon venue volume volumes report addendum author chapter eid institution isrn language location note number pages pagetotal pubstate subtitle title titleaddon type version thesis addendum author chapter eid institution language location note pages pagetotal pubstate subtitle title titleaddon type unpublished addendum author eventday eventendday eventendhour eventendminute eventendmonth eventendsecond eventendtimezone eventendyear eventendyeardivision eventhour eventminute eventmonth eventsecond eventtimezone eventyear eventyeardivision eventtitle eventtitleaddon howpublished language location note pubstate subtitle title titleaddon type venue abstract addendum afterword annotator author bookauthor booksubtitle booktitle booktitleaddon chapter commentator editor editora editorb editorc foreword holder institution introduction issuesubtitle issuetitle issuetitleaddon journalsubtitle journaltitle journaltitleaddon location mainsubtitle maintitle maintitleaddon nameaddon note organization origlanguage origlocation origpublisher origtitle part publisher relatedstring series shortauthor shorteditor shorthand shortjournal shortseries shorttitle sortname sortshorthand sorttitle subtitle title titleaddon translator venue article book inbook bookinbook suppbook booklet collection incollection suppcollection manual misc mvbook mvcollection online patent periodical suppperiodical proceedings inproceedings reference inreference report set thesis unpublished date year set entryset article author journaltitle title book mvbook author title inbook bookinbook suppbook author title booktitle booklet author editor title collection reference mvcollection mvreference editor title incollection suppcollection inreference author editor title booktitle dataset title manual title misc software title online title url doi eprint patent author title number periodical editor title proceedings mvproceedings title inproceedings author title booktitle report author title type institution thesis author title type institution unpublished author title isbn issn ismn gender biber-2.19/data/gen_latin.pl000077500000000000000000000034761440117422400157520ustar00rootroot00000000000000#!/opt/local/bin/perl use v5.16; use strict; use warnings; # First get the latest DUCET allkeys.txt and pass it as the first argument # Modify the ranges as per the Unicode standard you are using. Currently Unicode 7.0 # NOT USED ANY MORE - because allkeys.txt in U::C is precompiled ans is faster than using # an uncompiled latinkeys.txt a tenth of the size anyway. my $latin_ranges = [ ['0000', '007F'], # ASCII ['0080', '00FF'], # Latin-1 Supplement ['0100', '017F'], # Latin Extended-A ['0180', '024F'], # Latin Extended-B ['0250', '02AF'], # IPA Extensions ['1D00', '1D7F'], # Phonetic Extensions ['1D80', '1DBF'], # Phonetic Extensions Supplement ['1E00', '1EFF'], # Latin Extended Additional ['2070', '209F'], # Superscripts and Subscripts ['2100', '214F'], # Letterlike Symbols ['2460', '24FF'], # Enclosed Alphanumerics ['2C60', '2C7F'], # Latin Extended-C ['A720', 'A7FF'], # Latin Extended-D ['FB00', 'FB4F'], # Latin Ligatures ['1D400', '1D7FF'], # Mathematical Alphanumeric Symbols ['1F100', '1F1FF'], # Enclosed Alphanumeric Supplement ]; while (<>) { # match header lines print if m/^$/; print if m/^[\#\@]/; # match only single byte lines as no latin chars are double-byte anyway if (m/^([A-F0-9]+)\s+\;/) { print if check_range($1); } } # Convert to decimal to do the range checks sub check_range { my $c = shift; foreach my $range (@$latin_ranges) { if (hex($c) >= hex($range->[0]) and hex($c) <= hex($range->[1])) { return 1; } } return 0; } biber-2.19/data/schemata/000077500000000000000000000000001440117422400152255ustar00rootroot00000000000000biber-2.19/data/schemata/bcf.rnc000066400000000000000000000716651440117422400165020ustar00rootroot00000000000000namespace bcf = "https://sourceforge.net/projects/biblatex" start = element bcf:controlfile { # This is usually the same as the biblatex version string but not necessarily. # Sometimes the BCF format version doesn't change between biblatex releases attribute version { xsd:string {minLength="1"}}, attribute bltxversion { xsd:string {minLength="1"}}, # "Global" Biber options. It's not clear what a non-global biber option # would be but just in case, we have the option ... element bcf:options { attribute component { "biber" }, attribute type { "global" }, output_encoding, input_encoding, debug, mincrossrefs, minxrefs, sortcase, sortupper }, # Global BibLaTeX options. That is, options that apply to all # entrytypes (unless a more specifically scoped option is specified) element bcf:options { attribute component { "biblatex" }, attribute type { "global" }, alphaothers, extradatecontext, labelalpha, labelnamespec, labeltitle, labeltitlespec, labeltitleyear, labeldateparts, labeldatespec, julian, gregorianstart, maxalphanames, maxbibnames, maxcitenames, maxsortnames, maxitems, minalphanames, minbibnames, mincitenames, minsortnames, minitems, nohashothers, noroman, nosortothers, pluralothers, singletitle, skipbib, skipbiblist, skiplab, sortalphaothers?, sortlocale, sortingtemplatename, sortsets, uniquelist, uniquename, uniqueprimaryauthor, uniquetitle, uniquebaretitle, uniquework, useprefix, usenames }, # Per-entrytype BibLaTeX options element bcf:options { attribute component { "biblatex" }, attribute type { text }, alphaothers?, extradatecontext?, labelalpha?, labelnamespec?, labeltitle?, labeltitlespec?, labeltitleyear?, labeldateparts?, labeldatespec?, maxalphanames?, maxbibnames?, maxcitenames?, maxsortnames?, maxitems?, minalphanames?, minbibnames?, mincitenames?, minsortnames?, minitems?, nohashothers?, noroman?, nosortothers?, singletitle?, skipbib?, skipbiblist?, skiplab?, skiplos?, sortalphaothers?, uniquelist?, uniquename?, uniqueprimaryauthor?, uniquetitle?, uniquebaretitle?, uniquework?, useprefix?, usenames? }*, # Option scope element bcf:optionscope { attribute type { "GLOBAL" | "ENTRYTYPE" | "ENTRY" | "NAMELIST" | "NAME" }, element bcf:option { attribute datatype { "boolean" | "integer" | "string" | "xml" }, # Applies to ENTRY, NAMELIST and NAME scope # Only set for meta-options and if defined, what biber should split # the option into on reading it attribute backendin {xsd:string}?, # Applies to ENTRY, NAMELIST and NAME scope # Determines whether biber will write the option to its ouput (e.g. # .bbl) because biblatex needs to know the value. attribute backendout {xsd:boolean}?, xsd:string }+ }*, # datafield sets element bcf:datafieldset { attribute name { text }, element bcf:member { ((attribute fieldtype { dmfieldtype }?, attribute datatype { dmdatatype }?) | attribute field { text }?), empty }+ }+, # user field/entrytype mapping element bcf:sourcemap { element bcf:maps { attribute datatype { "bibtex" | "biblatexml" }, attribute map_overwrite { xsd:boolean }?, attribute level { "user" | "style" | "driver" }?, map+ }+ }?, # labelalphanametemplate specification element bcf:labelalphanametemplate { attribute name { xsd:string }?, element bcf:namepart { attribute order { xsd:integer }, attribute use { xsd:boolean }?, attribute pre { xsd:boolean }?, attribute substring_width { xsd:integer }?, attribute substring_compound { xsd:boolean }?, attribute substring_side { "left" | "right" }?, text }+ }+, # labelalpha template specification element bcf:labelalphatemplate { attribute type { xsd:string }?, # per-type? element bcf:labelelement { attribute order { xsd:integer }, element bcf:labelpart { attribute final { xsd:boolean }?, attribute pad_char { xsd:string {minLength="1"}}?, attribute pad_side { "left" | "right" }?, attribute substring_width { xsd:integer | "v" | "vf" | "l" }?, attribute substring_fixed_threshold { xsd:integer }?, attribute substring_width_max { xsd:integer }?, attribute substring_side { "left" | "right" }?, attribute ifnames { text }?, attribute names { text }?, attribute namessep { string }?, attribute noalphaothers { xsd:boolean }?, xsd:string }+ }+ }+, # Extradate specification element bcf:extradatespec { # Scope of extradate tracking - an ordered set of fields to try element bcf:scope { # A field used to track extradate element bcf:field { attribute order { xsd:integer }, text }+ }+ }, # Cross-reference inheritance specifications element bcf:inheritance { # Defaults element bcf:defaults { # Whether to inherit all fields attribute inherit_all { "true" | "false" }, # Should we overwrite the target field if it exists? attribute override_target { "true" | "false" }, # ignore of uniqueness tracking attribute ignore { text }?, # Default inherit_all and override_target settings for entrytype source/target pairs element bcf:type_pair { attribute source { "*" | xsd:string {minLength="1"}}, attribute target { "*" | xsd:string {minLength="1"}}, attribute inherit_all { "true" | "false" }?, attribute override_target { "true" | "false" }?, attribute suppress { text }?, empty }* }, # An inheritance specification element bcf:inherit { # ignore of uniqueness tracking attribute ignore { text }?, # applies to these pairs of source/target entrytypes element bcf:type_pair { attribute source { "*" | xsd:string {minLength="1"}}, attribute target { "*" | xsd:string {minLength="1"}}, empty }+, # and here are the field specifications element bcf:field { ( # either a "skip this field" specification # so we can say inherit all except certain fields OR ... (attribute source { xsd:string }, attribute skip { "true" | "false" }) | # ... a source and target field with an optional override attribute (attribute source { xsd:string {minLength="1"}}, attribute target { xsd:string {minLength="1"}}, attribute override_target { "true" | "false" }?) ), empty }+ }* }, # noinit specification element bcf:noinits { element bcf:noinit { attribute value { xsd:string }, empty }+ }?, # nolabel specification element bcf:nolabels { element bcf:nolabel { attribute value { xsd:string }, empty }+ }?, # nosort specification element bcf:nosorts { element bcf:nosort { attribute field { xsd:string }, attribute value { xsd:string }, empty }+ }?, # nonamestring specification element bcf:nonamestrings { element bcf:nonamestring { attribute field { xsd:string }, attribute value { xsd:string }, empty }+ }?, # Transliteration specification(s) translit*, # Uniquename template uniquenametemplate+, # Sorting name key specification sortingnamekeytemplate+, # presort default strings for different entry types element bcf:presort { attribute type { text }?, text }+, # excludes of certain fields for sorting for specified types element bcf:sortexclusion { attribute type { text }, element bcf:exclusion { text }+ }*, # forcibly includes certain fields excluded by sortexclusion for sorting for specified types element bcf:sortinclusion { attribute type { text }, element bcf:inclusion { text }+ }*, # Data model specification element bcf:datamodel { # Constants element bcf:constants { element bcf:constant { attribute type { "string" | "list" }?, attribute name { text }, text }+ }, # Valid entrytypes element bcf:entrytypes { element bcf:entrytype { # Some entrytypes should be completely skipped on output (XDATA etc.) attribute skip_output { "true" }?, text }+ }, # BibLaTeX field types. Biber uses this to determine how to output various types # to the .bbl element bcf:fields { element bcf:field { # fieldtype is "field" or "list" attribute fieldtype { dmfieldtype }, # format is a specification of the format of the field. If not specified, field contents # are just as is. attribute format { "xsv" }?, # datatype of field content attribute datatype { dmdatatype }, # Are we allowed to output a null field value to the .bbl for this field? attribute nullok { "true" }?, # Should this field be skipped and not output to the .bbl? attribute skip_output { "true" }?, # Field can be used as a label? This auto-generates some defaults in biblatex attribute label { "true" }?, text }+ }, # Allowable fields for entrytypes # Only one specification per entrytype: even though it might be nice to have several # so that one could share information, this would be hard to manage and confusing as it # not be visible in one place which fields were valid for an entrytype. element bcf:entryfields { element bcf:entrytype { text }*, element bcf:field { text }+ }+, # Allowable multiscript fields which can have alternate form/languages element bcf:multiscriptfields { element bcf:field { text }+ }, # Constraints on field (co-)existence and format element bcf:constraints { # Set of entrytypes that this constraint applies to # An entrytype can be specified in multiple constraints # element bcf:entrytype { text }*, # A constraint specification element bcf:constraint { ( # Conditional constraints have an antecedent and consequent # both of which have a quantifier. This allows you to enforce # constraints like: # # if field a,b,c are all present then one of x,y,z must be # if one of field a,b,c are present then none of x,y,z must be # etc. (attribute type { "conditional" }, element bcf:antecedent { attribute quant { "all" | "one" | "none"}, element bcf:field { text }+ }, element bcf:consequent { attribute quant { "all" | "one" | "none"}, element bcf:field { text }+ } ) | # Datatype and format constraints (attribute type { "data" }, # range* attributes are for limiting integer type range attribute datatype { "integer" | "isbn" | "issn" | "ismn" | "date" | "pattern" }?, attribute rangemin { xsd:int }?, attribute rangemax { xsd:int }?, attribute pattern { text }?, element bcf:field { text }+ ) | # Mandatoriness constraints which say which fields must appear (attribute type { "mandatory" }, (element bcf:field { text } | # An XOR set of fields so you can enforce: # # One (but not more) of fields a,b,c must exist element bcf:fieldxor { element bcf:field { text }+ } | # An OR set of fields so you can enforce: # # One (possibly more) of fields a,b,c must exist element bcf:fieldor { element bcf:field { text }+ } )+ ) ) }+ }+ }?, # Section specifications secspec+, sorting+, listspec+ } listspec = element bcf:datalist { attribute section { xsd:integer }, attribute type { "entry" | "list" }, attribute sortingtemplatename { xsd:string {minLength="1"} }, attribute sortingnamekeytemplatename { xsd:string {minLength="1"} }, attribute labelprefix { xsd:string }, attribute uniquenametemplatename { xsd:string }, attribute labelalphanametemplatename { xsd:string }, # name is only needed for list types attribute name { xsd:string {minLength="1"} }, (filter | filteror )* }* translit = element bcf:transliteration { attribute entrytype { "*" | xsd:string {minLength="1"} }, element bcf:translit { attribute langids { xsd:string {minLength="1"} }?, attribute target { "*" | xsd:string {minLength="1"} }, attribute from { xsd:string {minLength="1"} }, attribute to { xsd:string {minLength="1"} } }+ } uniquenametemplate = element bcf:uniquenametemplate { attribute name { xsd:string {minLength="1"} }, element bcf:namepart { attribute order { xsd:integer }, attribute use { xsd:boolean }?, attribute base { xsd:boolean }?, attribute disambiguation { "none" | "init" | "initorfull" | "full"}?, text }+ } sortingnamekeytemplate = element bcf:sortingnamekeytemplate { attribute name { text }, attribute visibility { text }, element bcf:keypart { attribute order { xsd:integer }, element bcf:part { attribute type { "namepart" | "literal" }, attribute order { xsd:integer }, attribute use { xsd:boolean }?, attribute inits { xsd:boolean }?, text }+ }+ }+ sorting = element bcf:sortingtemplate { # sorting template name attribute name { xsd:string {minLength="1"}}, # locale for entire sorting specification attribute locale { xsd:string {minLength="1"}}?, sort+ } sort = # sort specification element bcf:sort { # order of this specification in the set of all sort specifications attribute order { xsd:integer }, # Should we stop generating sorting information after this item? attribute final { "1" }?, # Sort ascending or descending attribute sort_direction { "ascending" | "descending" }?, # Sort case sensitive or not? attribute sortcase { xsd:boolean }?, # Sort upper before lower? attribute sortupper { xsd:boolean }?, # sortset specific override for locale attribute locale { xsd:string {minLength="1"}}?, # A sort item specification - a field or pseudo-field to get sort information from element bcf:sortitem { # Is this sortitem a literal string? attribute literal { xsd:boolean }?, # order of this item in the set of all other item specifications attribute order { xsd:integer }, # Just use a part of the item information for sorting? attribute substring_side { "left" | "right" }?, attribute substring_width { xsd:integer }?, # Pad the item information when sorting with it? attribute pad_side { "left" | "right" }?, attribute pad_width { xsd:integer }?, attribute pad_char { xsd:string { minLength = "1" maxLength = "1" } }?, text }+ }+ # Section specification secspec = # data sources element bcf:bibdata { # which sections the datafiles are for attribute section { xsd:integer }, element bcf:datasource { attribute type { "file" }, attribute datatype { "bibtex" | "biblatexml" }?, attribute encoding { text }?, attribute glob { "true" | "false" }?, xsd:anyURI }* }?, # citekeys or citekey sets in each section element bcf:section { attribute number { xsd:integer }, element bcf:citekey { ( attribute type { "set" }, attribute members { xsd:string {minLength="1"}}, xsd:string {minLength="1"}) | ( attribute order { xsd:integer }, attribute intorder { xsd:integer }?, attribute nocite { xsd:boolean }?, xsd:string {minLength="1"} ) }*, element bcf:citekeycount { attribute count { xsd:integer }, xsd:string {minLength="1"} }* } filteror = element bcf:filteror { filter+ } filter = element bcf:filter { attribute type { "type" | "nottype" | "subtype" | "notsubtype" | "keyword" | "notkeyword" | "field" | "notfield" }, xsd:string {minLength="1"} } # option definitions # use options are dynamically determined from data model extradatecontext = element bcf:option { attribute type { "multivalued" }, element bcf:key { "extradatecontext" }, element bcf:value { attribute order { xsd:integer }, text }+ } usenames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { xsd:string {pattern = "use.*"} }, element bcf:value { xsd:boolean } }+ useprefix = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "useprefix" }, element bcf:value { xsd:boolean } } labelalpha = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "labelalpha" }, element bcf:value { xsd:boolean } } labeltitle = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "labeltitle" }, element bcf:value { xsd:boolean } } labeltitlespec = element bcf:option { attribute type { "multivalued" }, element bcf:key { "labeltitlespec" }, element bcf:value { attribute order { xsd:integer }, text }+ } labeltitleyear = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "labeltitleyear" }, element bcf:value { xsd:boolean } } labeldateparts = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "labeldateparts" }, element bcf:value { xsd:boolean } } labeldatespec = element bcf:option { attribute type { "multivalued" }, element bcf:key { "labeldatespec" }, element bcf:value { attribute order { xsd:integer }, attribute type { "field" | "string" }, text }+ } singletitle = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "singletitle" }, element bcf:value { xsd:boolean } } skipbib = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "skipbib" }, element bcf:value { xsd:boolean } } skiplab = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "skiplab" }, element bcf:value { xsd:boolean } } skiplos = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "skiplos" }, element bcf:value { xsd:boolean } } skipbiblist = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "skipbiblist" }, element bcf:value { xsd:boolean } } # false = do not provide uniquelist information # true = disambiguate lists regardless of year # minyear = disambiguate lists only when year is the same uniquelist = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "uniquelist" }, element bcf:value { "false" | "true" | "minyear" } } nohashothers = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "nohashothers" }, element bcf:value { xsd:boolean } } noroman = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "noroman" }, element bcf:value { xsd:boolean } } nosortothers = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "nosortothers" }, element bcf:value { xsd:boolean } } # false = do not provide uniquename information # init = disambiguate with initials, only up to maxcitenames/uniquelist # full (true) = disambiguate with full name or initials, only up to maxcitenames/uniquelist # allinit = disambiguate with initials, ignore maxcitenames/uniquelist # allfull = disambiguate with full name or initials, ignore maxcitenames/uniquelist # mininit = disambiguate with initials, only between identical lists in different entries # minfull = disambiguate with full name or initials, only between identical lists in different entries pluralothers = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "pluralothers" }, element bcf:value { xsd:boolean } } uniquename = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "uniquename" }, element bcf:value { "false" | "init" | "full" | "allinit" | "allfull" | "mininit" | "minfull" } } uniqueprimaryauthor = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "uniqueprimaryauthor" }, element bcf:value { xsd:boolean } } uniquetitle = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "uniquetitle" }, element bcf:value { xsd:boolean } } uniquebaretitle = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "uniquebaretitle" }, element bcf:value { xsd:boolean } } uniquework = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "uniquework" }, element bcf:value { xsd:boolean } } julian = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "julian" }, element bcf:value { xsd:boolean } } gregorianstart = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "gregorianstart" }, element bcf:value { text } } maxitems = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "maxitems" }, element bcf:value { xsd:integer } } maxbibnames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "maxbibnames" }, element bcf:value { xsd:integer } } maxalphanames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "maxalphanames" }, element bcf:value { xsd:integer } } maxcitenames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "maxcitenames" }, element bcf:value { xsd:integer } } maxsortnames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "maxsortnames" }, element bcf:value { xsd:integer } } minitems = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "minitems" }, element bcf:value { xsd:integer } } minbibnames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "minbibnames" }, element bcf:value { xsd:integer } } minalphanames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "minalphanames" }, element bcf:value { xsd:integer } } mincitenames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "mincitenames" }, element bcf:value { xsd:integer } } minsortnames = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "minsortnames" }, element bcf:value { xsd:integer } } sortlocale = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "sortlocale" }, element bcf:value { text } } sortingtemplatename = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "sortingtemplatename" }, element bcf:value { text } } sortsets = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "sortsets" }, element bcf:value { xsd:boolean } } labelnamespec = element bcf:option { attribute type { "multivalued" }, element bcf:key { "labelnamespec" }, element bcf:value { attribute order { xsd:integer }, text }+ } mincrossrefs = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "mincrossrefs" }, element bcf:value { xsd:integer } } minxrefs = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "minxrefs" }, element bcf:value { xsd:integer } } debug = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "debug" }, element bcf:value { xsd:boolean } } wrapline = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "wrapline" }, element bcf:value { xsd:integer } } output_encoding = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "output_encoding" }, element bcf:value { text } } input_encoding = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "input_encoding" }, element bcf:value { text } } sortcase = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "sortcase" }, element bcf:value { xsd:boolean } } alphaothers = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "alphaothers" }, element bcf:value { xsd:normalizedString { pattern = "\S+" } } } sortupper = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "sortupper" }, element bcf:value { xsd:boolean } } sortalphaothers = element bcf:option { attribute type { "singlevalued" }, element bcf:key { "sortalphaothers" }, element bcf:value { xsd:normalizedString { pattern = "\S+" } } } map = element bcf:map { attribute map_overwrite { xsd:boolean }?, attribute map_foreach { xsd:string {minLength="1"} }?, attribute refsection { xsd:integer }?, element bcf:per_datasource { xsd:string {minLength="1"} }*, element bcf:per_type { xsd:string {minLength="1"} }*, element bcf:per_nottype { xsd:string {minLength="1"} }*, element bcf:map_step { ( ( attribute map_entry_clone { xsd:string {minLength="1"} } ) | ( attribute map_entry_new { xsd:string {minLength="1"} }, attribute map_entry_newtype { xsd:string {minLength="1"} } ) | ( attribute map_entrykey_cited { "1" }?, attribute map_entrykey_nocited { "1" }?, attribute map_entrykey_citedornocited { "1" }?, attribute map_entrykey_allnocited { "1" }?, attribute map_entrykey_starnocited { "1" }?, attribute map_type_source { xsd:string {minLength="1"} }?, attribute map_type_target { xsd:string {minLength="1"} }?, attribute map_field_source { xsd:string {minLength="1"} }?, attribute map_notfield { xsd:string {minLength="1"} }?, attribute map_field_target { xsd:string {minLength="1"} }?, attribute map_entrytarget { xsd:string {minLength="1"} }?, attribute map_field_set { xsd:string {minLength="1"} }?, attribute map_entry_null { "1" }?, attribute map_append { "1" }?, attribute map_appendstrict { "1" }?, attribute map_final { "1" }?, attribute map_match { xsd:string {minLength="1"} }?, attribute map_matches { xsd:string {minLength="1"} }?, attribute map_matchesi { xsd:string {minLength="1"} }?, attribute map_matchi { xsd:string {minLength="1"} }?, attribute map_notmatch { xsd:string {minLength="1"} }?, attribute map_notmatchi { xsd:string {minLength="1"} }?, attribute map_replace { xsd:string }?, ( attribute map_null { "1" } | attribute map_origfield { "1" } | attribute map_origfieldval { "1" } | attribute map_origentrytype { "1" } | attribute map_field_value { xsd:string {minLength="1"} } )? ) ), empty }+ } dmfieldtype = "field" | "list" dmdatatype = "literal" | "name" | "key" | "entrykey" | "date" | "verbatim" | "integer" | "range" | "code" | "uri" | "datepart" | "keyword" | "option" # Copyright 2009-2012 François Charette and Philip Kime, all rights reserved. # Copyright 2012-2023 Philip Kime, all rights reserved. # This code is free software. You can redistribute it and/or # modify it under the terms of the Artistic License 2.0. # This program is distributed in the hope that it will be useful, # but without any warranty; without even the implied warranty of # merchantability or fitness for a particular purpose. biber-2.19/data/schemata/bcf.rng000066400000000000000000002163661440117422400165050ustar00rootroot00000000000000 1 1 biber global biblatex global biblatex GLOBAL ENTRYTYPE ENTRY NAMELIST NAME boolean integer string xml bibtex biblatexml user style driver left right 1 left right v vf l left right true false true false * 1 * 1 true false true false * 1 * 1 true false 1 1 true false string list true xsv true true true conditional all one none all one none data integer isbn issn ismn date pattern mandatory entry list 1 1 1 * 1 1 * 1 1 1 1 none init initorfull full namepart literal 1 1 1 ascending descending 1 left right left right 1 1 file bibtex biblatexml true false set 1 1 1 1 type nottype subtype notsubtype keyword notkeyword field notfield 1 multivalued extradatecontext singlevalued use.* singlevalued useprefix singlevalued labelalpha singlevalued labeltitle multivalued labeltitlespec singlevalued labeltitleyear singlevalued labeldateparts multivalued labeldatespec field string singlevalued singletitle singlevalued skipbib singlevalued skiplab singlevalued skiplos singlevalued skipbiblist singlevalued uniquelist false true minyear singlevalued nohashothers singlevalued noroman singlevalued nosortothers singlevalued pluralothers singlevalued uniquename false init full allinit allfull mininit minfull singlevalued uniqueprimaryauthor singlevalued uniquetitle singlevalued uniquebaretitle singlevalued uniquework singlevalued julian singlevalued gregorianstart singlevalued maxitems singlevalued maxbibnames singlevalued maxalphanames singlevalued maxcitenames singlevalued maxsortnames singlevalued minitems singlevalued minbibnames singlevalued minalphanames singlevalued mincitenames singlevalued minsortnames singlevalued sortlocale singlevalued sortingtemplatename singlevalued sortsets multivalued labelnamespec singlevalued mincrossrefs singlevalued minxrefs singlevalued debug singlevalued wrapline singlevalued output_encoding singlevalued input_encoding singlevalued sortcase singlevalued alphaothers \S+ singlevalued sortupper singlevalued sortalphaothers \S+ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 field list literal name key entrykey date verbatim integer range code uri datepart keyword option biber-2.19/data/schemata/config.rnc000066400000000000000000000436521440117422400172100ustar00rootroot00000000000000start = element config { # Option scope element optionscope { attribute type { "GLOBAL" | "ENTRYTYPE" | "ENTRY" | "NAMELIST" | "NAME" }, element option { attribute datatype { "boolean" | "integer" | "string" | "xml" }, # Applies to ENTRY, NAMELIST and NAME scope # Only set for meta-options and if defined, what biber should split # the option into on reading it attribute backendin {xsd:string}?, # Applies to ENTRY, NAMELIST and NAME scope # Determines whether biber will write the option to its ouput (e.g. # .bbl) because biblatex needs to know the value. attribute backendout {xsd:boolean}?, xsd:string }+ }* & element clrmacros { "0" | "1" }? & element collate { "0" | "1" }? & element collate_options { element option { attribute name { text } & attribute value { text } }+ }? & # datafield sets element datafieldset { attribute name { text }, element member { ((attribute fieldtype { dmfieldtype }?, attribute datatype { dmdatatype }?) | attribute field { text }?), empty }+ }* & # Annotation marker element annotation_marker { text }? & # Can't specify the config file location in the config file ... # element configfile { text }? & element convert_control { "0" | "1" }? & element dot_include { text }? & # Data model specification (mainly for tool mode) datamodel? & element decodecharsset { text }? & element debug { "0" | "1" }? & element dieondatamodel { "0" | "1" }? & element fastsort { "0" | "1" }? & element fixinits { "0" | "1" }? & # Would never want this in the config file # element help { "0" | "1" }? & inheritance? & element input_encoding { text }? & element listsep { text }? & element logfile { text }? & element mincrossrefs { xsd:unsignedByte }? & element mssplit { text }? & element namesep { text }? & # Can't specify not to use a config file in the config file ... # element noconf { "0" | "1" }? & element nodieonerror { "0" | "1" }? & element nolog { "0" | "1" }? & # noinit specification element noinits { element noinit { attribute value { xsd:string }, empty }+ }? & # nolabel specification element nolabels { element nolabel { attribute value { xsd:string }, empty }+ }? & # nosort specification element nosort { element option { attribute name { text } & attribute value { text } }+ }? & # nonamestring specification element nonamestring { element option { attribute name { text } & attribute value { text } }+ }? & element nostdmacros { "0" | "1" }? & element onlylog { "0" | "1" }? & element others_string { text }? & element output_align { "0" | "1" }? & element output_all_macrodefs { "0" | "1" }? & element output_annotation_marker { text }? & element output_directory { text }? & element output_encoding { text }? & element output_fieldcase { "upper" | "lower" | "title" }? & element output_field_replace { text }? & element output_file { text }? & element output_format { "bibtex" | "bbl" | "biblatexml" | "dot" }? & element output_indent { xsd:unsignedByte }? & element output_legacy_dates { "0" | "1" }? & element output_listsep { text }? & element output_namesep { text }? & element output_no_macrodefs { "0" | "1" }? & element output_resolve_xdata { "0" | "1" }? & element output_resolve_crossrefs { "0" | "1" }? & element output_resolve_sets { "0" | "1" }? & element output_safechars { "0" | "1" }? & element output_safecharsset { "base" | "full" }? & element output_xdatamarker { text }? & element output_xdatasep { text }? & element output_xname { "0" | "1" }? & element output_xnamesep { text }? & element quiet { "0" | "1" }? & element recodedata { text }? & element sortcase { "0" | "1" }? & translit* & labelalphanametemplate* & labelalphatemplate? & uniquenametemplate* & sortingnamekeytemplate? & sortingtemplate? & # presort default strings for different entry types element presort { attribute type { text }?, text }* & # excludes of certain fields for sorting for specified types element sortexclusion { attribute type { text }, element exclusion { text }+ }* & # forcibly includes certain fields excluded by sortexclusion for sorting for specified types element sortinclusion { attribute type { text }, element inclusion { text }+ }* & element sortlocale { text }? & element sortupper { "0" | "1" }? & element sourcemap { element maps { attribute datatype { "bibtex" | "biblatexml" }, attribute map_overwrite { "0" | "1" }?, map+ }+ }? & element ssl-nointernalca { "0" | "1" }? & element ssl-noverify-host { "0" | "1" }? & element tool { "0" | "1" }? & element tool_config { text }? & element trace { "0" | "1" }? & element validate_config { "0" | "1" }? & element validate_control { "0" | "1" }? & element validate_datamodel { "0" | "1" }? & # Meaningless in the config file # element version { "0" | "1" }? & element wraplines { "0" | "1" }? & element xdatamarker { text }? & element xdatasep { text }? & element xname { "0" | "1" }? & element xnamesep { text }? } datamodel = element datamodel { # Constants element constants { element constant { attribute type { "string" | "list" }?, attribute name { text }, text }+ }?, # Valid entrytypes element entrytypes { element entrytype { # Some entrytypes should be completely skipped on output (XDATA etc.) attribute skip_output { "true" }?, text }+ }, # BibLaTeX field types. Biber uses this to determine how to output various types # to the .bbl element fields { element field { # fieldtype is "field" or "list" attribute fieldtype { dmfieldtype }, # format is a specification of the format of the field. If not specified, field contents # are just as is. attribute format { "xsv" }?, # datatype of field content attribute datatype { dmdatatype }, # Are we allowed to output a null field value to the .bbl for this field? attribute nullok { "true" }?, # Should this field be skipped and not output to the .bbl? attribute skip_output { "true" }?, # Field can be used as a label? This auto-generates some defaults in biblatex attribute label { "true" }?, text }+ }, # Allowable fields for entrytypes # Only one specification per entrytype: even though it might be nice to have several # so that one could share information, this would be hard to manage and confusing as it # not be visible in one place which fields were valid for an entrytype. element entryfields { element entrytype { text }*, element field { text }+ }+, # Allowable multiscript fields which can have alternate form/languages element multiscriptfields { element field { text }+ }?, # Constraints on field (co-)existence and format element constraints { # Set of entrytypes that this constraint applies to # An entrytype can be specified in multiple constraints # element entrytype { text }*, # A constraint specification element constraint { ( # Conditional constraints have an antecedent and consequent # both of which have a quantifier. This allows you to enforce # constraints like: # # if field a,b,c are all present then one of x,y,z must be # if one of field a,b,c are present then none of x,y,z must be # etc. (attribute type { "conditional" }, element antecedent { attribute quant { "all" | "one" | "none"}, element field { text }+ }, element consequent { attribute quant { "all" | "one" | "none"}, element field { text }+ } ) | # Datatype and format constraints (attribute type { "data" }, # range* attributes are for limiting integer type range attribute datatype { "integer" | "isbn" | "issn" | "ismn" | "date" | "pattern" }?, attribute rangemin { xsd:int }?, attribute rangemax { xsd:int }?, attribute pattern { text }?, element field { text }+ ) | # Mandatoriness constraints which say which fields must appear (attribute type { "mandatory" }, (element field { text } | # An XOR set of fields so you can enforce: # # One (but not more) of fields a,b,c must exist element fieldxor { element field { text }+ } | # An OR set of fields so you can enforce: # # One (possibly more) of fields a,b,c must exist element fieldor { element field { text }+ } )+ ) ) }+ }+ } translit = element transliteration { attribute entrytype { "*" | xsd:string {minLength="1"} }, element translit { attribute target { "*" | xsd:string {minLength="1"} }, attribute from { xsd:string {minLength="1"} }, attribute to { xsd:string {minLength="1"} } }+ } inheritance = # Cross-reference inheritance specifications element inheritance { # Defaults element defaults { # Whether to inherit all fields attribute inherit_all { "true" | "false" }, # Should we overwrite the target field if it exists? attribute override_target { "true" | "false" }, # ignore of uniqueness tracking attribute ignore { text }?, # Default inherit_all and override_target settings for entrytype source/target pairs element type_pair { attribute source { "*" | xsd:string {minLength="1"}}, attribute target { "*" | xsd:string {minLength="1"}}, attribute inherit_all { "true" | "false" }?, attribute override_target { "true" | "false" }?, attribute ignore { text }?, empty }* }, # An inheritance specification element inherit { # ignore of uniqueness tracking attribute ignore { text }?, # applies to these pairs of source/target entrytypes element type_pair { attribute source { "*" | xsd:string {minLength="1"}}, attribute target { "*" | xsd:string {minLength="1"}}, empty }+, # and here are the field specifications element field { ( # either a "skip this field" specification # so we can say inherit all except certain fields OR ... (attribute source { xsd:string }, attribute skip { "true" | "false" }) | # ... a source and target field with an optional override attribute (attribute source { xsd:string {minLength="1"}}, attribute target { xsd:string {minLength="1"}}, attribute override_target { "true" | "false" }?) ), empty }+ }* } map = element map { attribute map_overwrite { "0" | "1" }?, attribute map_foreach { xsd:string {minLength="1"} }?, attribute refsection { xsd:integer }?, element per_datasource { xsd:string {minLength="1"} }*, element per_type { xsd:string {minLength="1"} }*, element map_step { ( ( attribute map_entry_clone { xsd:string {minLength="1"} } ) | ( attribute map_entry_new { xsd:string {minLength="1"} }, attribute map_entry_newtype { xsd:string {minLength="1"} } ) | ( attribute map_entrykey_cited { "1" }?, attribute map_entrykey_nocited { "1" }?, attribute map_entrykey_citedornocited { "1" }?, attribute map_entrykey_allnocited { "1" }?, attribute map_entrykey_starnocited { "1" }?, attribute map_type_source { xsd:string {minLength="1"} }?, attribute map_type_target { xsd:string {minLength="1"} }?, attribute map_field_source { xsd:string {minLength="1"} }?, attribute map_notfield { xsd:string {minLength="1"} }?, attribute map_field_target { xsd:string {minLength="1"} }?, attribute map_entrytarget { xsd:string {minLength="1"} }?, attribute map_field_set { xsd:string {minLength="1"} }?, attribute map_entry_null { "1" }?, attribute map_append { "1" }?, attribute map_appendstrict { "1" }?, attribute map_final { "1" }?, attribute map_match { xsd:string {minLength="1"} }?, attribute map_matchi { xsd:string {minLength="1"} }?, attribute map_matches { xsd:string {minLength="1"} }?, attribute map_matchesi { xsd:string {minLength="1"} }?, attribute map_notmatch { xsd:string {minLength="1"} }?, attribute map_notmatchi { xsd:string {minLength="1"} }?, attribute map_replace { xsd:string }?, ( attribute map_null { "1" } | attribute map_origfield { "1" } | attribute map_origfieldval { "1" } | attribute map_origentrytype { "1" } | attribute map_field_value { xsd:string {minLength="1"} } )? ) ), empty }+ } labelalphanametemplate = element labelalphanametemplate { attribute name { xsd:string }?, element namepart { attribute order { xsd:integer }, attribute use { "0" | "1" }?, attribute pre { "0" | "1" }?, attribute substring_width { xsd:integer }?, attribute substring_compound { "0" | "1" }?, attribute substring_side { "left" | "right" }?, text }+ } labelalphatemplate = element labelalphatemplate { attribute type { xsd:string }?, # per-type? element labelelement { attribute order { xsd:integer }, element labelpart { attribute final { "0" | "1" }?, attribute pad_char { xsd:string {minLength="1"}}?, attribute pad_side { "left" | "right" }?, attribute substring_width { xsd:integer | "v" | "vf" | "l" }?, attribute substring_fixed_threshold { xsd:integer }?, attribute substring_width_max { xsd:integer }?, attribute substring_side { "left" | "right" }?, attribute ifnames { text }?, attribute names { text }?, attribute namessep { string }?, attribute noalphaothers { "0" | "1" }?, xsd:string }+ }+ } uniquenametemplate = element uniquenametemplate { attribute name { xsd:string {minLength="1"} }, element namepart { attribute order { xsd:integer }, attribute use { "0" | "1" }?, attribute base { "0" | "1" }?, attribute context { "none" | "init" | "initorfull" | "full" }?, text }+ } sortingnamekeytemplate = element sortingnamekeytemplate { attribute name { text }, attribute visibility { text }, element keypart { attribute order { xsd:integer }, element part { attribute type { "namepart" | "literal" }, attribute order { xsd:integer }, attribute use { "0" | "1" }?, attribute inits { "0" | "1" }?, text }+ }+ } sortingtemplate = element sortingtemplate { # sorting template name attribute name { xsd:string {minLength="1"}}, # locale for entire sorting specification attribute locale { xsd:string {minLength="1"}}?, sort+ } sort = # sort specification element sort { # order of this specification in the set of all sort specifications attribute order { xsd:integer }, # Should we stop generating sorting information after this item? attribute final { "1" }?, # Sort ascending or descending attribute sort_direction { "ascending" | "descending" }?, # Sort case sensitive or not? attribute sortcase { "0" | "1" }?, # Sort upper before lower? attribute sortupper { "0" | "1" }?, # sortset specific override for locale attribute locale { xsd:string {minLength="1"}}?, # A sort item specification - a field or pseudo-field to get sort information from element sortitem { # order of this item in the set of all other item specifications attribute order { xsd:integer }, # Just use a part of the item information for sorting? attribute substring_side { "left" | "right" }?, attribute substring_width { xsd:integer }?, # Pad the item information when sorting with it? attribute pad_side { "left" | "right" }?, attribute pad_width { xsd:integer }?, attribute pad_char { xsd:string { minLength = "1" maxLength = "1" } }?, attribute form { "original" | "translated" | "romanised" | "uniform" }?, text }+ }+ dmfieldtype = "field" | "list" dmdatatype = "literal" | "name" | "key" | "entrykey" | "date" | "verbatim" | "integer" | "range" | "code" | "uri" | "datepart" | "keyword" | "option" # Copyright 2012-2023 Philip Kime, all rights reserved. # This code is free software. You can redistribute it and/or # modify it under the terms of the Artistic License 2.0. # This program is distributed in the hope that it will be useful, # but without any warranty; without even the implied warranty of # merchantability or fitness for a particular purpose. biber-2.19/data/schemata/config.rng000066400000000000000000001465561440117422400172230ustar00rootroot00000000000000 GLOBAL ENTRYTYPE ENTRY NAMELIST NAME boolean integer string xml 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 upper lower title bibtex bbl biblatexml dot 0 1 0 1 0 1 0 1 0 1 0 1 base full 0 1 0 1 0 1 0 1 bibtex biblatexml 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 string list true xsv true true true conditional all one none all one none data integer isbn issn ismn date pattern mandatory * 1 * 1 1 1 true false true false * 1 * 1 true false true false * 1 * 1 true false 1 1 true false 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 left right 0 1 1 left right v vf l left right 0 1 1 0 1 0 1 none init initorfull full namepart literal 0 1 0 1 1 1 1 ascending descending 0 1 0 1 1 left right left right 1 1 original translated romanised uniform field list literal name key entrykey date verbatim integer range code uri datepart keyword option biber-2.19/data/schemata/texmap.rnc000066400000000000000000000017521440117422400172340ustar00rootroot00000000000000start = element texmap { element maps { # CSV list of sets attribute set { text }, attribute type { "accents" | "letters" | "diacritics" | "punctuation" | "symbols" | "negatedsymbols" | "superscripts" | "cmdsuperscripts" | "dings" | "greek" }, map+ }+, element encode_exclude { element char { text }+ } } map = element map { element from { attribute preferred {"1"}?,# preferred encoding form if more than one attribute raw {"1"}?,# use the encoding form "as is" in replacement - no extra envs/braces etc. text }, element to { attribute hex { text }, text } } # Copyright 2012-2023 Philip Kime, all rights reserved. # This code is free software. You can redistribute it and/or # modify it under the terms of the Artistic License 2.0. # This program is distributed in the hope that it will be useful, # but without any warranty; without even the implied warranty of # merchantability or fitness for a particular purpose. biber-2.19/data/texmap.xsl000066400000000000000000000132441440117422400154720ustar00rootroot00000000000000 Biber UTF-8 <xsl:text disable-output-escaping="yes">&harr;</xsl:text> LaTeX macro decoding/encoding map

Biber UTF-8 &harr; LaTeX macro decoding/encoding map

If you are using PDFTeX as opposed to a native UTF-8 engine like XeTeX or LuaTeX, you will have to load some extra packages to use macros in this section. See the "symbols" document that comes with TeXLive for a comprehensive list of symbols and the packages you need for PDFTeX (run "texdoc symbols" to see this document on a TeXLive system).

Key
  • In encoding mapping (UTF-8 &rarr; LaTeX macros), when there are multiple possible mappings, red highlighted macro is the preferred mapping
  • In encoding mapping, insert the encoded form as-is with no wrapping braces or escaping etc.

Excluded from encoding (ignore LaTeX special chars)

Character

(sets: )

preferred raw
MacroUnicode characterUnicode hex value
\ &nbsp;

biber-2.19/dist/000077500000000000000000000000001440117422400134725ustar00rootroot00000000000000biber-2.19/dist/MSWIN32/000077500000000000000000000000001440117422400145345ustar00rootroot00000000000000biber-2.19/dist/MSWIN32/build.bat000077500000000000000000000101511440117422400163240ustar00rootroot00000000000000:: The COPY/DEL steps are so that the packed biber main script is not :: called "biber" as on case-insensitive file systems, this clashes with :: the Biber lib directory and generates a (harmless) warning on first run. :: XML::LibXSLT has a workaround for LibXSLT.dll conflicting with libxslt.dll on :: windows due to case-insensitivity. The Makefile.PL for XML::LibXSLT forces its :: .dll to end in ".xs.dll" which avoids the conflict but breaks when packaged with pp. :: Since strawberry perl includes its own libxslt with a non-default name, it is therefore :: safe to use the default XML::LibXSLT .dll name which does work when packed with pp. :: To do this, you have to install your own XML::LibXSLT in strawberry perl: :: edit the Makefile.PL, line 195 or thereabouts and change it to: :: :: $config{DLEXT} = 'dll' if ($is_Win32); :: :: then build and install as usual (this seems ok with the included :: XML::LibXSLT with strawberry perl 5.16 for some reason) :: Have to explicitly include the Input* modules as the names of these are dynamically :: constructed in the code so Par::Packer can't auto-detect them. :: Same with some of the output modules. :: Unicode::Collate is bundled with perl but is often updated and this is a critical module :: for biber. There are some parts of this module which must be explicitly bundled by pp. :: Unfortunately, updates to the module go into site_perl and we must bundle the right version :: and so we check if there are any newer versions than came with the version of perl we are using :: by looking to see if there is a site_perl directory for the module. If there is, we use that :: version. set UCPATH=C:/strawberry/perl/lib/Unicode/Collate IF exist C:\strawberry\perl\site\lib\Unicode\Collate\ (set UCPATH=C:/strawberry/perl/site/lib/Unicode/Collate) ECHO USING Unicode::Collate at: %UCPATH% COPY C:\strawberry\perl\site\bin\biber %TEMP%\biber-MSWIN32 SET PAR_VERBATIM=1 CALL pp ^ --module=deprecate ^ --module=Biber::Input::file::bibtex ^ --module=Biber::Input::file::biblatexml ^ --module=Biber::Output::dot ^ --module=Biber::Output::bbl ^ --module=Biber::Output::bblxml ^ --module=Biber::Output::bibtex ^ --module=Biber::Output::biblatexml ^ --module=Pod::Simple::TranscodeSmart ^ --module=Pod::Simple::TranscodeDumb ^ --module=List::MoreUtils::XS ^ --module=List::SomeUtils::XS ^ --module=List::MoreUtils::PP ^ --module=HTTP::Status ^ --module=HTTP::Date ^ --module=Encode:: ^ --module=IO::Socket::SSL ^ --module=IO::String ^ --module=PerlIO::utf8_strict ^ --module=File::Find::Rule ^ --module=Text::CSV_XS ^ --module=DateTime ^ --module=Win32::Unicode ^ --link=C:\WINDOWS\system32\libbtparse.dll ^ --link=C:\strawberry\c\bin\libxslt-1_.dll ^ --link=C:\strawberry\c\bin\libexslt-0_.dll ^ --link=C:\strawberry\c\bin\zlib1_.dll ^ --link=C:\strawberry\c\bin\libxml2-2_.dll ^ --link=C:\strawberry\c\bin\libiconv-2_.dll ^ --link=C:\strawberry\c\bin\libssl-1_1_.dll ^ --link=C:\strawberry\c\bin\libcrypto-1_1_.dll ^ --link=C:\strawberry\c\bin\liblzma-5_.dll ^ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" ^ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" ^ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" ^ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" ^ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" ^ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" ^ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" ^ --addfile="%UCPATH%/Locale;lib/Unicode/Collate/Locale" ^ --addfile="%UCPATH%/CJK;lib/Unicode/Collate/CJK" ^ --addfile="%UCPATH%/allkeys.txt;lib/Unicode/Collate/allkeys.txt" ^ --addfile="%UCPATH%/keys.txt;lib/Unicode/Collate/keys.txt" ^ --addfile="C:/strawberry/perl/vendor/lib/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" ^ --addfile="C:/strawberry/perl/site/lib/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" ^ --cachedeps=scancache ^ --output=biber-MSWIN32.exe ^ %TEMP%\biber-MSWIN32 DEL %TEMP%\biber-MSWIN32 biber-2.19/dist/MSWIN64/000077500000000000000000000000001440117422400145415ustar00rootroot00000000000000biber-2.19/dist/MSWIN64/build.bat000077500000000000000000000101711440117422400163330ustar00rootroot00000000000000:: The COPY/DEL steps are so that the packed biber main script is not :: called "biber" as on case-insensitive file systems, this clashes with :: the Biber lib directory and generates a (harmless) warning on first run. :: XML::LibXSLT has a workaround for LibXSLT.dll conflicting with libxslt.dll on :: windows due to case-insensitivity. The Makefile.PL for XML::LibXSLT forces its :: .dll to end in ".xs.dll" which avoids the conflict but breaks when packaged with pp. :: Since strawberry perl includes its own libxslt with a non-default name, it is therefore :: safe to use the default XML::LibXSLT .dll name which does work when packed with pp. :: To do this, you have to install your own XML::LibXSLT in strawberry perl: :: edit the Makefile.PL, line 195 or thereabouts and change it to: :: :: $config{DLEXT} = 'dll' if ($is_Win32); :: :: then build and install as usual (this seems ok with the included :: XML::LibXSLT with strawberry perl 5.16 for some reason) :: Have to explicitly include the Input* modules as the names of these are dynamically :: constructed in the code so Par::Packer can't auto-detect them. :: Same with some of the output modules. :: Unicode::Collate is bundled with perl but is often updated and this is a critical module :: for biber. There are some parts of this module which must be explicitly bundled by pp. :: Unfortunately, updates to the module go into site_perl and we must bundle the right version :: and so we check if there are any newer versions than came with the version of perl we are using :: by looking to see if there is a site_perl directory for the module. If there is, we use that :: version. set UCPATH=C:/strawberry/perl/lib/Unicode/Collate IF exist C:\strawberry\perl\site\lib\Unicode\Collate\ (set UCPATH=C:/strawberry/perl/site/lib/Unicode/Collate) ECHO USING Unicode::Collate at: %UCPATH% COPY C:\strawberry\perl\site\bin\biber %TEMP%\biber-MSWIN64 SET PAR_VERBATIM=1 CALL pp ^ --module=deprecate ^ --module=Biber::Input::file::bibtex ^ --module=Biber::Input::file::biblatexml ^ --module=Biber::Output::dot ^ --module=Biber::Output::bbl ^ --module=Biber::Output::bblxml ^ --module=Biber::Output::bibtex ^ --module=Biber::Output::biblatexml ^ --module=Pod::Simple::TranscodeSmart ^ --module=Pod::Simple::TranscodeDumb ^ --module=List::MoreUtils::XS ^ --module=List::SomeUtils::XS ^ --module=List::MoreUtils::PP ^ --module=HTTP::Status ^ --module=HTTP::Date ^ --module=Encode:: ^ --module=IO::Socket::SSL ^ --module=IO::String ^ --module=PerlIO::utf8_strict ^ --module=File::Find::Rule ^ --module=Text::CSV_XS ^ --module=DateTime ^ --module=Win32::Unicode ^ --link=C:\strawberry\c\bin\libbtparse.dll ^ --link=C:\strawberry\c\bin\libxslt-1__.dll ^ --link=C:\strawberry\c\bin\libexslt-0__.dll ^ --link=C:\strawberry\c\bin\zlib1__.dll ^ --link=C:\strawberry\c\bin\libxml2-2__.dll ^ --link=C:\strawberry\c\bin\libiconv-2__.dll ^ --link=C:\strawberry\c\bin\libssl-1_1-x64__.dll ^ --link=C:\strawberry\c\bin\libcrypto-1_1-x64__.dll ^ --link=C:\strawberry\c\bin\liblzma-5__.dll ^ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" ^ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" ^ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" ^ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" ^ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" ^ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" ^ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" ^ --addfile="%UCPATH%/Locale;lib/Unicode/Collate/Locale" ^ --addfile="%UCPATH%/CJK;lib/Unicode/Collate/CJK" ^ --addfile="%UCPATH%/allkeys.txt;lib/Unicode/Collate/allkeys.txt" ^ --addfile="%UCPATH%/keys.txt;lib/Unicode/Collate/keys.txt" ^ --addfile="C:/strawberry/perl/vendor/lib/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" ^ --addfile="C:/strawberry/perl/site/lib/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" ^ --cachedeps=scancache ^ --output=biber-MSWIN64.exe ^ %TEMP%\biber-MSWIN64 DEL %TEMP%\biber-MSWIN64 biber-2.19/dist/build-env-local.sh000077500000000000000000000042241440117422400170100ustar00rootroot00000000000000#!/bin/bash # This modifies things on the build servers. Things like PAR::Packer etc. versions. # build-env-local.sh [[osx10.5] [osx10.6] | [osxen]] [[w32] [w64] | [win]] [[l32] [l64] | [linux]] me=$(whoami) if [ "$me" = "root" ]; then echo "You should be logged on as the vbox user to do this!" exit 1 fi function vmon { VM=$(pgrep -f -- "-startvm bbf-$1") if [ ! -z "$VM" ]; then echo "Biber build farm VM already running with PID: $VM" else nohup VBoxHeadless --startvm bbf-$1 & fi } function vmoff { VBoxManage controlvm bbf-$1 savestate } # get dir of script DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # Things to do on each server. In an external file ignored by git . $DIR/build-env-cmds # Build farm OSX 64-bit intel LECAGY (10.5 # # ./build-universal.sh development dev biber 0 0 1 # # is a SF subdir of /home/frs/project/biblatex-biber/biblatex-biber/ # is a git branch to checkout on the build farm servers # is the name of the biber binary to use for the release. # is a boolean which says to just build and stop without uploading # is a boolean which says to delete the scancache # is a boolean which says to not codesign OSX binary BASE=~/extcode/biber DOCDIR=$BASE/doc BINDIR=$BASE/dist XSLDIR=$BASE/data RELEASE=${1:-"development"} BRANCH=${2:-"dev"} BINARYNAME=${3:-"biber"} JUSTBUILD=${4:-"0"} DSCANCACHE=${5:-"0"} CODESIGN=${6:-"1"} # Set scancache deletion if requested if [ "$DSCANCACHE" = "1" ]; then echo "Deleting scan caches before builds"; SCANCACHE="rm -f scancache;" fi cd $BASE git checkout $BRANCH git pull perl ./Build.PL sudo ./Build installdeps sudo ./Build install cd $BINDIR/darwin_arm64 $SCANCACHE./build.sh ~/bin/pp_osx_codesign_fix biber-darwin_arm64 cd $BASE sudo ./Build realclean cd $BINDIR/darwin_arm64 \rm -rf biber-darwin_arm64.tar.gz if [ "$CODESIGN" = "1" ]; then echo "Signing binary" security unlock-keychain -p $( # Example: build.sh ~/Desktop/b development dev biber 1 # is where the binaries are # is a SF subdir of /home/frs/project/biblatex-biber/biblatex-biber/ # is a git branch to checkout on the build farm servers # is the name of the biber binary to use for the release. # is a boolean which says to just build and stop without uploading # is a boolean which says to delete the scancache # is a boolean which says to not codesign OSX binary me=$(whoami) if [ "$me" = "root" ]; then echo "You should be logged on as the vbox user to do this!" exit 1 fi function vmon { VM=$(pgrep -f -- "-startvm bbf-$1") if [ ! -z "$VM" ]; then echo "Biber build farm VM already running with PID: $VM" else nohup VBoxHeadless --startvm bbf-$1 & fi } function vmoff { VBoxManage controlvm bbf-$1 savestate } BASE="/usr/local/data/code/biblatex-biber" DOCDIR=$BASE/doc BINDIR=$BASE/dist XSLDIR=$BASE/data DIR=${1:-"/tmp/b"} RELEASE=${2:-"development"} BRANCH=${3:-"dev"} BINARYNAME=${4:-"biber"} JUSTBUILD=${5:-"0"} DSCANCACHE=${6:-"0"} CODESIGN=${7:-"1"} echo "** Checking out branch '$BRANCH' on farm servers **" echo "** If this is not correct, Ctrl-C now **" sleep 5 # Make binary dir if it doesn't exist if [ ! -e $DIR ]; then mkdir $DIR fi # Set scancache deletion if requested if [ "$DSCANCACHE" = "1" ]; then echo "Deleting scan caches before builds"; SCANCACHE="rm -f scancache;" fi # Create the binaries from the build farm if they don't exist # Build farm OSX 64-bit intel LEGACY (10.5/dev/null cd $BASE scp $DOCDIR/biber.pdf philkime,biblatex-biber@frs.sourceforge.net:/home/frs/project/biblatex-biber/biblatex-biber/$RELEASE/documentation/biber.pdf # Changes file scp $BASE/Changes philkime,biblatex-biber@frs.sourceforge.net:/home/frs/project/biblatex-biber/biblatex-biber/$RELEASE/Changes # Unicode <-> LaTeX macro mapping doc perl $BINDIR/xsl-transform.pl $BASE/lib/Biber/LaTeX/recode_data.xml $XSLDIR/texmap.xsl scp $BASE/lib/Biber/LaTeX/recode_data.xml.html philkime,biblatex-biber@frs.sourceforge.net:/home/frs/project/biblatex-biber/biblatex-biber/$RELEASE/documentation/utf8-macro-map.html \rm -f $BASE/lib/Biber/LaTeX/recode_data.xml.html # source cd $BASE ./Build dist scp $BASE/biblatex-biber-*.tar.gz philkime,biblatex-biber@frs.sourceforge.net:/home/frs/project/biblatex-biber/biblatex-biber/$RELEASE/biblatex-biber.tar.gz \rm -f $BASE/biblatex-biber-*.tar.gz cd $BASE biber-2.19/dist/cygwin32/000077500000000000000000000000001440117422400151375ustar00rootroot00000000000000biber-2.19/dist/cygwin32/build.sh000077500000000000000000000072371440117422400166060ustar00rootroot00000000000000#!/bin/bash # The cp/rm steps are so that the packed biber main script is not # called "biber" as on case-insensitive file systems, this clashes with # the Biber lib directory and generates a (harmless) warning on first run # Also, pp resolves symlinks and copies the symlink targets of linked libs # which then don't have the right names and so things that link to them # through the link name break. So, we copy them to the link names first and # and package those. # There’s no need to link cygssp-0.dll, because it’s present in a # minimal Cygwin installation. And we shouldn’t link cygcrypt-0.dll, # because it is a dependency of the cygperl DLL and needs to be # treated as an embedded file by PAR::Packer. See # https://rt.cpan.org/Public/Bug/Display.html?id=118053. # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. cp /usr/local/bin/biber /tmp/biber-cygwin declare -r perlv='5.32' declare ucpath="/usr/share/perl5/${perlv}/Unicode/Collate" # Unicode::Collate has a vendor_perl version so has been updated since this # perl was released if [ -d "/usr/lib/perl5/vendor_perl/${perlv}/i686-cygwin-threads-64int/Unicode/Collate" ] then ucpath="/usr/lib/perl5/vendor_perl/${perlv}/i686-cygwin-threads-64int/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" PAR_VERBATIM=1 pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=File::Find::Rule \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/bin/cygz.dll \ --link=/usr/bin/cyggcrypt-20.dll \ --link=/usr/bin/cygiconv-2.dll \ --link=/usr/bin/cyggpg-error-0.dll \ --link=/usr/bin/libbtparse.dll \ --link=/usr/bin/cygxml2-2.dll \ --link=/usr/bin/cygxslt-1.dll \ --link=/usr/bin/cygexslt-0.dll \ --link=/usr/bin/cygcrypto-1.0.0.dll \ --link=/usr/bin/cygssl-1.0.0.dll \ --link=/usr/bin/cygdatrie-1.dll \ --link=/usr/bin/cygthai-0.dll \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/usr/lib/perl5/${perlv}/i686-cygwin-threads-64int/PerlIO;lib/PerlIO" \ --addfile="/usr/lib/perl5/${perlv}/i686-cygwin-threads-64int/auto/PerlIO;lib/auto/PerlIO" \ --addfile="/usr/share/perl5/vendor_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --cachedeps=scancache \ --output=biber-cygwin32.exe \ /tmp/biber-cygwin \rm -f /tmp/biber-cygwin biber-2.19/dist/cygwin64/000077500000000000000000000000001440117422400151445ustar00rootroot00000000000000biber-2.19/dist/cygwin64/build.sh000077500000000000000000000072171440117422400166110ustar00rootroot00000000000000#!/bin/bash # The cp/rm steps are so that the packed biber main script is not # called "biber" as on case-insensitive file systems, this clashes with # the Biber lib directory and generates a (harmless) warning on first run # Also, pp resolves symlinks and copies the symlink targets of linked libs # which then don't have the right names and so things that link to them # through the link name break. So, we copy them to the link names first and # and package those. # There’s no need to link cygssp-0.dll, because it’s present in a # minimal Cygwin installation. And we shouldn’t link cygcrypt-0.dll, # because it is a dependency of the cygperl DLL and needs to be # treated as an embedded file by PAR::Packer. See # https://rt.cpan.org/Public/Bug/Display.html?id=118053. # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. cp /usr/local/bin/biber /tmp/biber-cygwin declare -r perlv='5.32' declare ucpath="/usr/share/perl5/${perlv}/Unicode/Collate" # Unicode::Collate has a vendor_perl version so has been updated since this # perl was released if [ -d "/usr/lib/perl5/vendor_perl/${perlv}/x86_64-cygwin-threads/Unicode/Collate" ] then ucpath="/usr/lib/perl5/vendor_perl/${perlv}/x86_64-cygwin-threads/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" PAR_VERBATIM=1 pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=File::Find::Rule \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/bin/cygz.dll \ --link=/usr/bin/cyggcrypt-20.dll \ --link=/usr/bin/cygiconv-2.dll \ --link=/usr/bin/cyggpg-error-0.dll \ --link=/usr/bin/libbtparse.dll \ --link=/usr/bin/cygxml2-2.dll \ --link=/usr/bin/cygxslt-1.dll \ --link=/usr/bin/cygexslt-0.dll \ --link=/usr/bin/cygcrypto-1.0.0.dll \ --link=/usr/bin/cygssl-1.0.0.dll \ --link=/usr/bin/cygdatrie-1.dll \ --link=/usr/bin/cygthai-0.dll \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/usr/lib/perl5/${perlv}/x86_64-cygwin-threads/PerlIO;lib/PerlIO" \ --addfile="/usr/lib/perl5/${perlv}/x86_64-cygwin-threads/auto/PerlIO;lib/auto/PerlIO" \ --addfile="/usr/share/perl5/vendor_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --cachedeps=scancache \ --output=biber-cygwin64.exe \ /tmp/biber-cygwin \rm -f /tmp/biber-cygwin biber-2.19/dist/darwin_arm64/000077500000000000000000000000001440117422400157675ustar00rootroot00000000000000biber-2.19/dist/darwin_arm64/build.sh000077500000000000000000000076721440117422400174410ustar00rootroot00000000000000#!/bin/bash # The cp/rm steps are so that the packed biber main script is not # called "biber" as on case-insensitive file systems, this clashes with # the Biber lib directory and generates a (harmless) warning on first run # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.36' declare ucpath="/opt/local/lib/perl5/${perlv}/Unicode/Collate" export PATH=/opt/local/libexec/perl${perlv}/sitebin:$PATH # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" ] then ucpath="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" cp /opt/local/libexec/perl${perlv}/sitebin/biber /tmp/biber-darwin PAR_VERBATIM=1 pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/opt/local/lib/libz.1.dylib \ --link=/opt/local/lib/libiconv.2.dylib \ --link=/opt/local/libexec/perl${perlv}/sitebin/libbtparse.dylib \ --link=/opt/local/lib/libxml2.2.dylib \ --link=/opt/local/lib/libxslt.1.dylib \ --link=/opt/local/lib/libgdbm.6.dylib \ --link=/opt/local/lib/libexslt.0.dylib \ --link=/opt/local/lib/libssl.3.dylib \ --link=/opt/local/lib/libcrypto.3.dylib \ --link=/opt/local/lib/liblzma.5.dylib \ --link=/opt/local/lib/libintl.8.dylib \ --link=/opt/local/lib/libicui18n.71.dylib \ --link=/opt/local/lib/libicuuc.71.dylib \ --link=/opt/local/lib/libicudata.71.dylib \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/auto/Unicode/LineBreak/LineBreak.bundle;lib/auto/Unicode/LineBreak/LineBreak.bundle" \ --cachedeps=scancache \ --output=biber-darwin_arm64 \ /tmp/biber-darwin \rm -f /tmp/biber-darwin biber-2.19/dist/darwin_x86_64/000077500000000000000000000000001440117422400157745ustar00rootroot00000000000000biber-2.19/dist/darwin_x86_64/build.sh000077500000000000000000000077031440117422400174410ustar00rootroot00000000000000#!/bin/bash # The cp/rm steps are so that the packed biber main script is not # called "biber" as on case-insensitive file systems, this clashes with # the Biber lib directory and generates a (harmless) warning on first run # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.32' declare ucpath="/opt/local/lib/perl5/${perlv}/Unicode/Collate" export PATH=/opt/local/libexec/perl${perlv}/sitebin:$PATH # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" ] then ucpath="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" cp /opt/local/libexec/perl${perlv}/sitebin/biber /tmp/biber-darwin PAR_VERBATIM=1 pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/opt/local/lib/libz.1.dylib \ --link=/opt/local/lib/libiconv.2.dylib \ --link=/opt/local/libexec/perl${perlv}/sitebin/libbtparse.dylib \ --link=/opt/local/lib/libxml2.2.dylib \ --link=/opt/local/lib/libxslt.1.dylib \ --link=/opt/local/lib/libgdbm.6.dylib \ --link=/opt/local/lib/libexslt.0.dylib \ --link=/opt/local/lib/libssl.1.0.0.dylib \ --link=/opt/local/lib/libcrypto.1.0.0.dylib \ --link=/opt/local/lib/liblzma.5.dylib \ --link=/opt/local/lib/libintl.8.dylib \ --link=/opt/local/lib/libicui18n.58.dylib \ --link=/opt/local/lib/libicuuc.58.dylib \ --link=/opt/local/lib/libicudata.58.dylib \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/auto/Unicode/LineBreak/LineBreak.bundle;lib/auto/Unicode/LineBreak/LineBreak.bundle" \ --cachedeps=scancache \ --output=biber-darwin_x86_64 \ /tmp/biber-darwin \rm -f /tmp/biber-darwin biber-2.19/dist/darwinlegacy_x86_64/000077500000000000000000000000001440117422400171615ustar00rootroot00000000000000biber-2.19/dist/darwinlegacy_x86_64/build.sh000077500000000000000000000076511440117422400206300ustar00rootroot00000000000000#!/bin/bash # The cp/rm steps are so that the packed biber main script is not # called "biber" as on case-insensitive file systems, this clashes with # the Biber lib directory and generates a (harmless) warning on first run # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.32' declare ucpath="/opt/local/lib/perl5/${perlv}/Unicode/Collate" # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" ] then ucpath="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" cp /opt/local/libexec/perl${perlv}/sitebin/biber /tmp/biber-darwin PAR_VERBATIM=1 pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/opt/local/lib/libz.1.dylib \ --link=/opt/local/lib/libiconv.2.dylib \ --link=/opt/local/libexec/perl${perlv}/sitebin/libbtparse.dylib \ --link=/opt/local/lib/libxml2.2.dylib \ --link=/opt/local/lib/libxslt.1.dylib \ --link=/opt/local/lib/libgdbm.6.dylib \ --link=/opt/local/lib/libexslt.0.dylib \ --link=/opt/local/libexec/openssl3/lib/libssl.3.dylib \ --link=/opt/local/libexec/openssl3/lib/libcrypto.3.dylib \ --link=/opt/local/lib/liblzma.5.dylib \ --link=/opt/local/lib/libintl.8.dylib \ --link=/opt/local/lib/libicui18n.67.dylib \ --link=/opt/local/lib/libicuuc.67.dylib \ --link=/opt/local/lib/libicudata.67.dylib \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/auto/Unicode/LineBreak/LineBreak.bundle;lib/auto/Unicode/LineBreak/LineBreak.bundle" \ --cachedeps=scancache \ --output=biber-darwinlegacy_x86_64 \ /tmp/biber-darwin \rm -f /tmp/biber-darwin biber-2.19/dist/empty_tree.sh000077500000000000000000000011101440117422400161770ustar00rootroot00000000000000#!/bin/bash if [ -z "$1" ]; then echo "No folder name provided!" exit 1 fi mkdir -p /tmp/sftree/documentation mkdir -p /tmp/sftree/binaries/Cygwin mkdir -p /tmp/sftree/binaries/Linux mkdir -p /tmp/sftree/binaries/Linux-musl mkdir -p /tmp/sftree/binaries/Solaris_Intel mkdir -p /tmp/sftree/binaries/FreeBSD mkdir -p /tmp/sftree/binaries/MacOS mkdir -p /tmp/sftree/binaries/Windows mkdir -p /tmp/sftree/binaries/ARM chmod -R 777 /tmp/sftree scp -r /tmp/sftree/* philkime,biblatex-biber@frs.sourceforge.net:/home/frs/project/biblatex-biber/biblatex-biber/$1 \rm -rf /tmp/sftree biber-2.19/dist/freebsd_amd64/000077500000000000000000000000001440117422400160775ustar00rootroot00000000000000biber-2.19/dist/freebsd_amd64/biber.files000066400000000000000000000021041440117422400202030ustar00rootroot00000000000000../../data/biber-tool.conf;lib/Biber/biber-tool.conf ../../data/schemata/config.rnc;lib/Biber/config.rnc ../../data/schemata/config.rng;lib/Biber/config.rng ../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc ../../data/schemata/bcf.rng;lib/Biber/bcf.rng ../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml ../../data/bcf.xsl;lib/Biber/bcf.xsl /usr/local/lib/perl5/site_perl/5.26.1/amd64-freebsd/Unicode/Collate/Locale;lib/Unicode/Collate/Locale /usr/local/lib/perl5/site_perl/5.26.1/amd64-freebsd/Unicode/Collate/CJK;lib/Unicode/Collate/CJK /usr/local/lib/perl5/site_perl/5.26.1/amd64-freebsd/Unicode/Collate/allkeys.txt;lib/Unicode/Collate/allkeys.txt /usr/local/lib/perl5/site_perl/5.26.1/amd64-freebsd/Unicode/Collate/keys.txt;lib/Unicode/Collate/keys.txt /usr/local/lib/perl5/site_perl/5.26.1/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem /usr/local/lib/perl5/5.26.1/amd64-freebsd/PerlIO;lib/PerlIO /usr/local/lib/perl5/5.26.1/amd64-freebsd/auto/PerlIO;lib/auto/PerlIO /usr/local/lib/perl5/site_perl/5.26.1/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml biber-2.19/dist/freebsd_amd64/build.sh000077500000000000000000000035011440117422400175340ustar00rootroot00000000000000#!/bin/sh # For some reason, PAR::Packer on linux is clever and when processing link lines # resolves any symlinks but names the packed lib the same as the link name. This is # a good thing. # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them # ----------------------------------------------------------------------------- PAR_VERBATIM=1 export PAR_VERBATIM /usr/local/bin/pp -vv \ --unicode \ --module=deprecate \ --module=App::Packer::PAR \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=Pod::Perldoc \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=Readonly::XS \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=File::Find::Rule \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/lib/libbtparse.so \ --link=/usr/local/lib/libiconv.so.3 \ --link=/usr/local/lib/libxml2.so.5 \ --link=/usr/local/lib/libxslt.so.2 \ --link=/usr/local/lib/libexslt.so.8 \ --link=/usr/local/lib/libgdbm.so.4 \ --link=`ls /lib/libz.so.*` \ --link=`ls /lib/libcrypt.so.*` \ --link=`ls /lib/libutil.so.*` \ --link=`ls /lib/libcrypto.so.*` \ --link=`ls /usr/lib/libssl.so.*` \ --addlist=biber.files \ --cachedeps=scancache \ --output=biber-2.8.`uname -m`-freebsd`uname -r | sed 's/\..*//' | sed 's/8/8,9,10,11,12/'` \ /usr/local/bin/biber biber-2.19/dist/freebsd_i386/000077500000000000000000000000001440117422400156555ustar00rootroot00000000000000biber-2.19/dist/freebsd_i386/biber.files000066400000000000000000000020761440117422400177710ustar00rootroot00000000000000../../data/biber-tool.conf;lib/Biber/biber-tool.conf ../../data/schemata/config.rnc;lib/Biber/config.rnc ../../data/schemata/config.rng;lib/Biber/config.rng ../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc ../../data/schemata/bcf.rng;lib/Biber/bcf.rng ../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml ../../data/bcf.xsl;lib/Biber/bcf.xsl /usr/local/lib/perl5/site_perl/5.26.1/i386-freebsd/Unicode/Collate/Locale;lib/Unicode/Collate/Locale /usr/local/lib/perl5/site_perl/5.26.1/i386-freebsd/Unicode/Collate/CJK;lib/Unicode/Collate/CJK /usr/local/lib/perl5/site_perl/5.26.1/i386-freebsd/Unicode/Collate/allkeys.txt;lib/Unicode/Collate/allkeys.txt /usr/local/lib/perl5/site_perl/5.26.1/i386-freebsd/Unicode/Collate/keys.txt;lib/Unicode/Collate/keys.txt /usr/local/lib/perl5/site_perl/5.26.1/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem /usr/local/lib/perl5/5.26.1/i386-freebsd/PerlIO;lib/PerlIO /usr/local/lib/perl5/5.26.1/i386-freebsd/auto/PerlIO;lib/auto/PerlIO /usr/local/lib/perl5/site_perl/5.26.1/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml biber-2.19/dist/freebsd_i386/build.sh000077500000000000000000000035011440117422400173120ustar00rootroot00000000000000#!/bin/sh # For some reason, PAR::Packer on linux is clever and when processing link lines # resolves any symlinks but names the packed lib the same as the link name. This is # a good thing. # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them # ----------------------------------------------------------------------------- PAR_VERBATIM=1 export PAR_VERBATIM /usr/local/bin/pp -vv \ --unicode \ --module=deprecate \ --module=App::Packer::PAR \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=Pod::Perldoc \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=Readonly::XS \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=File::Find::Rule \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/lib/libbtparse.so \ --link=/usr/local/lib/libiconv.so.3 \ --link=/usr/local/lib/libxml2.so.5 \ --link=/usr/local/lib/libxslt.so.2 \ --link=/usr/local/lib/libexslt.so.8 \ --link=/usr/local/lib/libgdbm.so.4 \ --link=`ls /lib/libz.so.*` \ --link=`ls /lib/libcrypt.so.*` \ --link=`ls /lib/libutil.so.*` \ --link=`ls /lib/libcrypto.so.*` \ --link=`ls /usr/lib/libssl.so.*` \ --addlist=biber.files \ --cachedeps=scancache \ --output=biber-2.8.`uname -m`-freebsd`uname -r | sed 's/\..*//' | sed 's/8/8,9,10,11,12/'` \ /usr/local/bin/biber biber-2.19/dist/linux-musl_x86_64/000077500000000000000000000000001440117422400166255ustar00rootroot00000000000000biber-2.19/dist/linux-musl_x86_64/build.sh000077500000000000000000000106451440117422400202710ustar00rootroot00000000000000#!/bin/bash # For some reason, PAR::Packer on linux is clever and when processing link lines # resolves any symlinks but names the packed lib the same as the link name. This is # a good thing. This is a feature of PAR::Packer on ELF systems. # Have to be very careful about Perl modules with .so binary libraries as sometimes # (LibXML.so for example), they include RPATH which means that the PAR cache # is not searched first, even though it's at the top of LD_LIBRARY_PATH. So, the wrong # libraries will be found and things may well break. Strip any RPATH out of such libs # with "chrpath -d ". Check for presence with "readelf -d ". # # Check all perl binaries with: # for file in `find /usr/local/perl/lib* -name \*.so`; do echo $file >> /tmp/out ;readelf -d $file >> /tmp/out; done # and then grep the file for "RPATH" # Had to add /etc/ld.so.conf.d/biber.conf and put "/usr/local/perl/lib64" in there # and then run "sudo ldconfig" so that libbtparse.so is found. Doesn't really make # a difference to the build, just the running of Text::BibTeX itself. # Using a newer locally built libz and libxml2 (and rebuilt XML::LibXML) in /usr/local because # beginning with 32-bit Debian Wheezy, the older ones would segfault # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them # Same with some of the output modules. # Added libz as some linux distros like SUSE 11.3 have a slightly older zlib # which doesn't have gzopen64 in it. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.32.0' declare ucpath="/usr/local/lib/perl5/site_perl/Unicode/Collate" # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/usr/local/perl/lib/site_perl/${perlv}/x86_64-linux-thread-multi/Unicode/Collate" ] then ucpath="/usr/local/perl/lib/site_perl/${perlv}/x86_64-linux-thread-multi/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" PAR_VERBATIM=1 /usr/local/bin/pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/lib/libbtparse.so \ --link=/usr/lib/libxml2.so.2 \ --link=/lib/libz.so.1 \ --link=/usr/lib/liblzma.so.5 \ --link=/usr/lib/libxslt.so.1 \ --link=/usr/lib/libexslt.so.0 \ --link=/usr/lib/libssl.so.1.1 \ --link=/usr/lib/libcrypto.so.1.1 \ --link=/usr/lib/libgcrypt.so.20 \ --link=/usr/lib/libgpg-error.so.0 \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng"\ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/usr/local/share/perl5/site_perl/Mozilla/CA/cacert.pem" \ --addfile="/usr/local/lib/perl5/site_perl/PerlIO" \ --addfile="/usr/local/share/perl5/site_perl/Business/ISBN/RangeMessage.xml" \ --cachedeps=scancache \ --output=/opt/biber \ /usr/local/bin/biber biber-2.19/dist/linux_aarch64-musl/000077500000000000000000000000001440117422400171175ustar00rootroot00000000000000biber-2.19/dist/linux_aarch64-musl/build.sh000077500000000000000000000106471440117422400205650ustar00rootroot00000000000000#!/bin/bash # For some reason, PAR::Packer on linux is clever and when processing link lines # resolves any symlinks but names the packed lib the same as the link name. This is # a good thing. This is a feature of PAR::Packer on ELF systems. # Have to be very careful about Perl modules with .so binary libraries as sometimes # (LibXML.so for example), they include RPATH which means that the PAR cache # is not searched first, even though it's at the top of LD_LIBRARY_PATH. So, the wrong # libraries will be found and things may well break. Strip any RPATH out of such libs # with "chrpath -d ". Check for presence with "readelf -d ". # # Check all perl binaries with: # for file in `find /usr/local/perl/lib* -name \*.so`; do echo $file >> /tmp/out ;readelf -d $file >> /tmp/out; done # and then grep the file for "RPATH" # Had to add /etc/ld.so.conf.d/biber.conf and put "/usr/local/perl/lib64" in there # and then run "sudo ldconfig" so that libbtparse.so is found. Doesn't really make # a difference to the build, just the running of Text::BibTeX itself. # Using a newer locally built libz and libxml2 (and rebuilt XML::LibXML) in /usr/local because # beginning with 32-bit Debian Wheezy, the older ones would segfault # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them # Same with some of the output modules. # Added libz as some linux distros like SUSE 11.3 have a slightly older zlib # which doesn't have gzopen64 in it. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.32.0' declare ucpath="/usr/local/lib/perl5/site_perl/Unicode/Collate" # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/usr/local/perl/lib/site_perl/${perlv}/aarch64-linux-thread-multi/Unicode/Collate" ] then ucpath="/usr/local/perl/lib/site_perl/${perlv}/aarch64-linux-thread-multi/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" PAR_VERBATIM=1 /usr/local/bin/pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/lib/libbtparse.so \ --link=/usr/lib/libxml2.so.2 \ --link=/lib/libz.so.1 \ --link=/usr/lib/liblzma.so.5 \ --link=/usr/lib/libxslt.so.1 \ --link=/usr/lib/libexslt.so.0 \ --link=/usr/lib/libssl.so.1.1 \ --link=/usr/lib/libcrypto.so.1.1 \ --link=/usr/lib/libgcrypt.so.20 \ --link=/usr/lib/libgpg-error.so.0 \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng"\ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/usr/local/share/perl5/site_perl/Mozilla/CA/cacert.pem" \ --addfile="/usr/local/lib/perl5/site_perl/PerlIO" \ --addfile="/usr/local/share/perl5/site_perl/Business/ISBN/RangeMessage.xml" \ --cachedeps=scancache \ --output=/opt/biber \ /usr/local/bin/biber biber-2.19/dist/linux_aarch64/000077500000000000000000000000001440117422400161415ustar00rootroot00000000000000biber-2.19/dist/linux_aarch64/build.sh000066400000000000000000000055421440117422400176020ustar00rootroot00000000000000#!/bin/bash # Main comments see: dist/linux_x86_64. # # We directly use Unicode::Collate from site_perl (must be updated by cpan Unicode::Collate!). # -r: Readonly. declare -r PERL_VERSION='5.36.0' PAR_VERBATIM=1 /usr/local/bin/pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/lib/aarch64-linux-gnu/libz.so.1 \ --link=/lib/aarch64-linux-gnu/libgpg-error.so.0 \ --link=/lib/aarch64-linux-gnu/libcrypt.so.1 \ --link=/lib/aarch64-linux-gnu/libgcrypt.so.20 \ --link=/usr/local/lib/libbtparse.so \ --link=/usr/lib/aarch64-linux-gnu/libxslt.so \ --link=/usr/lib/aarch64-linux-gnu/libexslt.so \ --link=/usr/lib/aarch64-linux-gnu/libxml2.so \ --link=/usr/lib/aarch64-linux-gnu/libicui18n.so.63 \ --link=/usr/lib/aarch64-linux-gnu/libicuuc.so \ --link=/usr/lib/aarch64-linux-gnu/libicudata.so \ --link=/usr/lib/aarch64-linux-gnu/liblzma.so \ --link=/usr/lib/aarch64-linux-gnu/libssl.so \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng"\ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/Business/ISBN/RangeMessage.xml" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/Mozilla/CA/cacert.pem" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/aarch64-linux-gnu/PerlIO" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/aarch64-linux-gnu/Unicode/Collate/Locale;lib/Unicode/Collate/Locale" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/aarch64-linux-gnu/Unicode/Collate/CJK;lib/Unicode/Collate/CJK" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/aarch64-linux-gnu/Unicode/Collate/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="/usr/local/lib/perl5/site_perl/${PERL_VERSION}/aarch64-linux-gnu/Unicode/Collate/keys.txt;lib/Unicode/Collate/keys.txt" \ --cachedeps=scancache \ --output=biber-linux_arm64 \ /usr/local/bin/biber biber-2.19/dist/linux_armel/000077500000000000000000000000001440117422400160115ustar00rootroot00000000000000biber-2.19/dist/linux_armel/biber.files000066400000000000000000000024141440117422400201210ustar00rootroot00000000000000../../data/biber-tool.conf;lib/Biber/biber-tool.conf ../../data/schemata/config.rnc;lib/Biber/config.rnc ../../data/schemata/config.rng;lib/Biber/config.rng ../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc ../../data/schemata/bcf.rng;lib/Biber/bcf.rng ../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml ../../data/bcf.xsl;lib/Biber/bcf.xsl /usr/local/perl-5.24.0/lib/5.24.0/Unicode/Collate/Locale;lib/Unicode/Collate/Locale /usr/local/perl-5.24.0/lib/5.24.0/Unicode/Collate/CJK;lib/Unicode/Collate/CJK /usr/local/perl-5.24.0/lib/5.24.0/Unicode/Collate/allkeys.txt;lib/Unicode/Collate/allkeys.txt /usr/local/perl-5.24.0/lib/5.24.0/Unicode/Collate/keys.txt;lib/Unicode/Collate/keys.txt /usr/local/perl-5.24.0/lib/site_perl/5.24.0/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem /usr/local/perl-5.24.0/lib/5.24.0/armv7l-linux/PerlIO;lib/PerlIO /usr/local/perl-5.24.0/lib/5.24.0/armv7l-linux/auto/PerlIO;lib/auto/PerlIO /usr/local/perl-5.24.0/lib/site_perl/5.24.0/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml /usr/local/perl-5.24.0/lib/5.24.0/armv7l-linux/PerlIO;lib/PerlIO /usr/local/perl-5.24.0/lib/5.24.0/armv7l-linux/auto/PerlIO;lib/auto/PerlIO /usr/local/perl-5.24.0/lib/site_perl/5.24.0/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml biber-2.19/dist/linux_armel/build.sh000077500000000000000000000024311440117422400174470ustar00rootroot00000000000000#!/bin/bash # Note that our perl location is in non-standard place PAR_VERBATIM=1 /usr/local/perl-5.24.0/bin/pp \ --unicode \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/perl-5.24.0/lib/libbtparse.so \ --link=/usr/lib/arm-linux-gnueabi/libxml2.so.2 \ --link=/lib/arm-linux-gnueabi/libz.so.1 \ --link=/usr/lib/arm-linux-gnueabi/libxslt.so.1 \ --link=/usr/lib/arm-linux-gnueabi/libexslt.so.0 \ --link=/usr/lib/arm-linux-gnueabi/libssl.so.1.0.0 \ --link=/usr/lib/arm-linux-gnueabi/libcrypto.so.1.0.0 \ --addlist=biber.files \ --cachedeps=scancache \ --output=biber-linux_armel \ /usr/local/perl-5.24.0/bin/biber biber-2.19/dist/linux_x86_32/000077500000000000000000000000001440117422400156425ustar00rootroot00000000000000biber-2.19/dist/linux_x86_32/build.sh000077500000000000000000000107651440117422400173110ustar00rootroot00000000000000#!/bin/bash # For some reason, PAR::Packer on linux is clever and when processing link lines # resolves any symlinks but names the packed lib the same as the link name. This is # a good thing. This is a feature of PAR::Packer on ELF systems. # Have to be very careful about Perl modules with .so binary libraries as sometimes # (LibXML.so for example), they include RPATH which means that the PAR cache # is not searched first, even though it's at the top of LD_LIBRARY_PATH. So, the wrong # libraries will be found and things may well break. Strip any RPATH out of such libs # with "chrpath -d ". Check for presence with "readelf -d ". # # Check all perl binaries with: # for file in `find /usr/local/perl/lib* -name \*.so`; do echo $file >> /tmp/out ;readelf -d $file >> /tmp/out; done # and then grep the file for "RPATH" # Had to add /etc/ld.so.conf.d/biber.conf and put "/usr/local/perl/lib" in there # and then run "sudo ldconfig" so that libbtparse.so is found. Doesn't really make # a difference to the build, just the running of Text::BibTeX itself. # Using a newer locally built libz and libxml2 (and rebuilt XML::LibXML) in /usr/local because # beginning with 32-bit Debian Wheezy, the older ones would segfault # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlpath="/usr/local/perl" declare -r perlv='5.32.1' declare ucpath="${perlpath}/lib/${perlv}/Unicode/Collate" # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "${perlpath}/lib/site_perl/${perlv}/i686-linux-thread-multi/Unicode/Collate" ] then ucpath="${perlpath}/lib/site_perl/${perlv}/i686-linux-thread-multi/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" PAR_VERBATIM=1 ${perlpath}/bin/pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/perl/lib/libbtparse.so \ --link=/usr/lib/i386-linux-gnu/libxml2.so \ --link=/usr/lib/i386-linux-gnu/libz.so \ --link=/usr/lib/i386-linux-gnu/libxslt.so \ --link=/usr/lib/i386-linux-gnu/libexslt.so \ --link=/usr/lib/i386-linux-gnu/libssl.so \ --link=/usr/lib/i386-linux-gnu/libcrypto.so \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="${perlpath}/lib/site_perl/${perlv}/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" \ --addfile="${perlpath}/lib/${perlv}/i686-linux-thread-multi/PerlIO;lib/PerlIO" \ --addfile="${perlpath}/lib/${perlv}/i686-linux-thread-multi/auto/PerlIO;lib/auto/PerlIO" \ --addfile="${perlpath}/lib/site_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --cachedeps=scancache \ --output=biber-linux_x86_32 \ ${perlpath}/bin/biber biber-2.19/dist/linux_x86_32/striprpath.sh000077500000000000000000000006501440117422400204020ustar00rootroot00000000000000DEL_FLAG="false" while getopts ":d" opt; do case $opt in d) DEL_FLAG="true";; esac done shift $((OPTIND -1)) if [ -z "$1" ] then echo "No search path" exit 1 fi for file in `find $1 -name \*.so`; do if `readelf -d $file | grep -q RPATH`; then if [[ "$DEL_FLAG" == "true" ]]; then echo "remove RPATH from $file" chrpath -d $file else echo "$file" fi fi done biber-2.19/dist/linux_x86_64/000077500000000000000000000000001440117422400156475ustar00rootroot00000000000000biber-2.19/dist/linux_x86_64/build.sh000077500000000000000000000110761440117422400173120ustar00rootroot00000000000000#!/bin/bash # For some reason, PAR::Packer on linux is clever and when processing link lines # resolves any symlinks but names the packed lib the same as the link name. This is # a good thing. This is a feature of PAR::Packer on ELF systems. # Have to be very careful about Perl modules with .so binary libraries as sometimes # (LibXML.so for example), they include RPATH which means that the PAR cache # is not searched first, even though it's at the top of LD_LIBRARY_PATH. So, the wrong # libraries will be found and things may well break. Strip any RPATH out of such libs # with "chrpath -d ". Check for presence with "readelf -d ". # # Check all perl binaries with: # for file in `find /usr/local/perl/lib* -name \*.so`; do echo $file >> /tmp/out ;readelf -d $file >> /tmp/out; done # and then grep the file for "RPATH" # Had to add /etc/ld.so.conf.d/biber.conf and put "/usr/local/perl/lib64" in there # and then run "sudo ldconfig" so that libbtparse.so is found. Doesn't really make # a difference to the build, just the running of Text::BibTeX itself. # Using a newer locally built libz and libxml2 (and rebuilt XML::LibXML) in /usr/local because # beginning with 32-bit Debian Wheezy, the older ones would segfault # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them # Same with some of the output modules. # Added libz as some linux distros like SUSE 11.3 have a slightly older zlib # which doesn't have gzopen64 in it. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.32.0' declare ucpath="/usr/local/perl/lib/${perlv}/Unicode/Collate" # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/usr/local/perl/lib/site_perl/${perlv}/x86_64-linux-thread-multi/Unicode/Collate" ] then ucpath="/usr/local/perl/lib/site_perl/${perlv}/x86_64-linux-thread-multi/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" PAR_VERBATIM=1 /usr/local/perl/bin/pp \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/local/perl/lib/libbtparse.so \ --link=/usr/local/lib/libxml2.so.2 \ --link=/usr/local/lib/libz.so.1 \ --link=/usr/local/lib/libxslt.so.1 \ --link=/usr/local/lib/libexslt.so.0 \ --link=/usr/lib/libssl.so.0.9.8 \ --link=/usr/lib/libcrypto.so.0.9.8 \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng"\ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/usr/local/perl/lib/site_perl/${perlv}/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" \ --addfile="/usr/local/perl/lib/${perlv}/x86_64-linux-thread-multi/PerlIO;lib/PerlIO" \ --addfile="/usr/local/perl/lib/${perlv}/x86_64-linux-thread-multi/auto/PerlIO;lib/auto/PerlIO" \ --addfile="/usr/local/perl/lib/site_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --cachedeps=scancache \ --output=biber-linux_x86_64 \ /usr/local/perl/bin/biber biber-2.19/dist/obsolete/000077500000000000000000000000001440117422400153065ustar00rootroot00000000000000biber-2.19/dist/obsolete/darwin_x86_i386/000077500000000000000000000000001440117422400200505ustar00rootroot00000000000000biber-2.19/dist/obsolete/darwin_x86_i386/build.sh000077500000000000000000000076261440117422400215210ustar00rootroot00000000000000#!/bin/bash # The cp/rm steps are so that the packed biber main script is not # called "biber" as on case-insensitive file systems, this clashes with # the Biber lib directory and generates a (harmless) warning on first run # Don't try to build 32-bit 10.5 binaries on >10.5 by manipulating macports # flags and SDKs. It doesn't work. You need a real 10.5 box/VM. # # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. # Unicode::Collate is bundled with perl but is often updated and this is a critical module # for biber. There are some parts of this module which must be explicitly bundled by pp. # Unfortunately, updates to the module go into site_perl and we must bundle the right version # and so we check if there are any newer versions than came with the version of perl we are using # by looking to see if there is a site_perl directory for the module. If there is, we use that # version. declare -r perlv='5.26' declare ucpath="/opt/local/lib/perl5/${perlv}/Unicode/Collate" # Unicode::Collate has a site_perl version so has been updated since this # perl was released if [ -d "/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" ] then ucpath="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/Unicode/Collate" fi echo "USING Unicode::Collate at: ${ucpath}" cp /opt/local/libexec/perl5.26/sitebin/biber /tmp/biber-darwin PAR_VERBATIM=1 pp \ --unicode \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=File::Find::Rule \ --module=Text::CSV_XS \ --module=DateTime \ --link=/opt/local/lib/libz.1.dylib \ --link=/opt/local/lib/libiconv.2.dylib \ --link=/opt/local/libexec/perl5.26/sitebin/libbtparse.dylib \ --link=/opt/local/lib/libxml2.2.dylib \ --link=/opt/local/lib/libxslt.1.dylib \ --link=/opt/local/lib/libssl.1.0.0.dylib \ --link=/opt/local/lib/libcrypto.1.0.0.dylib \ --link=/opt/local/lib/libgdbm.4.dylib \ --link=/opt/local/lib/libexslt.0.dylib \ --link=/opt/local/lib/liblzma.5.dylib \ --link=/opt/local/lib/libintl.8.dylib \ --addfile="../../data/biber-tool.conf;lib/Biber/biber-tool.conf" \ --addfile="../../data/schemata/config.rnc;lib/Biber/config.rnc" \ --addfile="../../data/schemata/config.rng;lib/Biber/config.rng" \ --addfile="../../data/schemata/bcf.rnc;lib/Biber/bcf.rnc" \ --addfile="../../data/schemata/bcf.rng;lib/Biber/bcf.rng" \ --addfile="../../lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml" \ --addfile="../../data/bcf.xsl;lib/Biber/bcf.xsl" \ --addfile="${ucpath}/Locale;lib/Unicode/Collate/Locale" \ --addfile="${ucpath}/CJK;lib/Unicode/Collate/CJK;lib/Unicode/Collate/CJK" \ --addfile="${ucpath}/allkeys.txt;lib/Unicode/Collate/allkeys.txt" \ --addfile="${ucpath}/keys.txt;lib/Unicode/Collate/keys.txt" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml" \ --addfile="/opt/local/lib/perl5/site_perl/${perlv}/darwin-thread-multi-2level/auto/Unicode/LineBreak/LineBreak.bundle;lib/auto/Unicode/LineBreak/LineBreak.bundle" \ --cachedeps=scancache \ --output=biber-darwin_x86_i386 \ /tmp/biber-darwin \rm -f /tmp/biber-darwin biber-2.19/dist/re-package.sh000077500000000000000000000063431440117422400160360ustar00rootroot00000000000000#!/bin/bash # Collect all binaries and re-package for CTAN # re-package.sh declare -r ROOT='/tmp/biber-repack' mkdir -p ${ROOT} cd ${ROOT} declare VER=$1 declare RELEASE=${2:-"current"} declare PACKAGEEXT="" declare PLATFORMS=("linux_x86_32" "linux_x86_64" "MSWIN64" "MSWIN32" "darwinlegacy_x86_64" "darwin_universal") declare METAPLATFORMS=("linux" "linux" "windows" "windows" "macos" "macos") declare SFPLATFORMS=("Linux" "Linux" "Windows" "Windows" "MacOS" "MacOS") declare EXTS=("tar.gz" "tar.gz" "zip" "zip" "tar.gz" "tar.gz") function create-readme { cat <$2 These are biber binaries for the $1 platform(s), released under: Perl Artistic License, version 2 See https://ctan.org/pkg/biber for documentation, sources, and all else. EOF } # Binaries for i in "${!PLATFORMS[@]}"; do PLATFORM=${PLATFORMS[i]} METAPLATFORM=${METAPLATFORMS[i]} # CTAN requires top-level dir in lowercase SFPLATFORM=${SFPLATFORMS[i]} EXT=${EXTS[i]} if [ ! -e biber$PACKAGEEXT-$METAPLATFORM/biber$PACKAGEEXT-$VER-$PLATFORM.$EXT ]; then echo -n "Retrieving $PLATFORM ... " mkdir biber$PACKAGEEXT-$METAPLATFORM 2>/dev/null /opt/local/bin/wget --content-disposition --level=0 -c https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/$RELEASE/binaries/$SFPLATFORM/biber$PACKAGEEXT-$PLATFORM.$EXT -O biber$PACKAGEEXT-$METAPLATFORM/biber$PACKAGEEXT-$VER-$PLATFORM.$EXT >/dev/null 2>&1 [ $? -eq 0 ] || exit 1 create-readme $METAPLATFORM biber$PACKAGEEXT-$METAPLATFORM/README echo "done" fi done SMETAPLATFORMS=($(printf "%s\n" "${METAPLATFORMS[@]}" | sort -u)) for i in "${!SMETAPLATFORMS[@]}"; do SMETAPLATFORM=${SMETAPLATFORMS[i]} echo -n "Packaging $SMETAPLATFORM ... " tar zcf biber$PACKAGEEXT-$SMETAPLATFORM.tgz biber$PACKAGEEXT-$SMETAPLATFORM \rm -rf biber$PACKAGEEXT-$SMETAPLATFORM echo "done" done # base if [ ! -e biber$PACKAGEEXT-base.tgz ]; then echo -n "Packaging base ... " mkdir biber$PACKAGEEXT 2>/dev/null cd biber$PACKAGEEXT mkdir source mkdir documentation /opt/local/bin/wget --content-disposition --level=0 -c https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/$RELEASE/biblatex-biber.tar.gz -O source/biblatex-biber$PACKAGEEXT.tar.gz >/dev/null 2>&1 [ $? -eq 0 ] || exit 1 /opt/local/bin/wget --content-disposition --level=0 -c https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/$RELEASE/documentation/biber.pdf -O documentation/biber$PACKAGEEXT.pdf >/dev/null 2>&1 [ $? -eq 0 ] || exit 1 /opt/local/bin/wget --content-disposition --level=0 -c https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/$RELEASE/Changes -O documentation/Changes >/dev/null 2>&1 [ $? -eq 0 ] || exit 1 /opt/local/bin/wget --content-disposition --level=0 -c https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/$RELEASE/documentation/utf8-macro-map.html -O documentation/utf8-macro-map.html >/dev/null 2>&1 [ $? -eq 0 ] || exit 1 /opt/local/bin/wget --content-disposition --level=0 -c https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/README.md -O README.md >/dev/null 2>&1 cd .. tar zcf biber$PACKAGEEXT-base.tgz biber$PACKAGEEXT \rm -rf biber$PACKAGEEXT echo "done" fi biber-2.19/dist/solaris_x86_64/000077500000000000000000000000001440117422400161645ustar00rootroot00000000000000biber-2.19/dist/solaris_x86_64/biber.files000077500000000000000000000023371440117422400203030ustar00rootroot00000000000000../biber/data/biber-tool.conf;lib/Biber/biber-tool.conf ../biber/data/schemata/config.rnc;lib/Biber/config.rnc ../biber/data/schemata/config.rng;lib/Biber/config.rng ../biber/data/schemata/bcf.rnc;lib/Biber/bcf.rnc ../biber/data/schemata/bcf.rng;lib/Biber/bcf.rng ../biber/lib/Biber/LaTeX/recode_data.xml;lib/Biber/LaTeX/recode_data.xml ../biber/data/bcf.xsl;lib/Biber/bcf.xsl ../biber/data/latinkeys.txt;lib/Unicode/Collate/latinkeys.txt /usr/perl5/5.24/lib/site_perl/5.24/i86pc-solaris-thread-multi-64/Unicode/Collate/Locale;lib/Unicode/Collate/Locale /usr/perl5/5.24/lib/site_perl/5.24/i86pc-solaris-thread-multi-64/Unicode/Collate/CJK;lib/Unicode/Collate/CJK /usr/perl5/5.24/lib/site_perl/5.24/i86pc-solaris-thread-multi-64/Unicode/Collate/allkeys.txt;lib/Unicode/Collate/allkeys.txt /usr/perl5/5.24/lib/site_perl/5.24/i86pc-solaris-thread-multi-64/Unicode/Collate/keys.txt;lib/Unicode/Collate/keys.txt /usr/perl5/5.24/lib/site_perl/5.24/Mozilla/CA/cacert.pem;lib/Mozilla/CA/cacert.pem /usr/perl5/5.24/lib/5.24/i86pc-solaris-thread-multi-64/PerlIO;lib/PerlIO /usr/perl5/5.24/lib/5.24/i86pc-solaris-thread-multi-64/auto/PerlIO;lib/auto/PerlIO /usr/perl5/5.24/lib/site_perl/5.24/Business/ISBN/RangeMessage.xml;lib/Business/ISBN/RangeMessage.xml biber-2.19/dist/solaris_x86_64/build.sh000077500000000000000000000025131440117422400176230ustar00rootroot00000000000000#!/bin/bash # Have to explicitly include the Input* modules as the names of these are dynamically # constructed in the code so Par::Packer can't auto-detect them. # Same with some of the output modules. PAR_VERBATIM=1 /usr/perl5/5.24/bin/pp \ --unicode \ --module=deprecate \ --module=Biber::Input::file::bibtex \ --module=Biber::Input::file::biblatexml \ --module=Biber::Output::dot \ --module=Biber::Output::bbl \ --module=Biber::Output::bblxml \ --module=Biber::Output::bibtex \ --module=Biber::Output::biblatexml \ --module=Pod::Simple::TranscodeSmart \ --module=Pod::Simple::TranscodeDumb \ --module=List::MoreUtils::XS \ --module=List::SomeUtils::XS \ --module=List::MoreUtils::PP \ --module=HTTP::Status \ --module=HTTP::Date \ --module=Encode:: \ --module=File::Find::Rule \ --module=IO::Socket::SSL \ --module=IO::String \ --module=PerlIO::utf8_strict \ --module=Text::CSV_XS \ --module=DateTime \ --link=/usr/perl5/5.24/lib/libbtparse.so \ --link=/usr/lib/amd64/libxml2.so.2 \ --link=/usr/lib/amd64/libz.so.1 \ --link=/usr/lib/amd64/libxslt.so.1 \ --link=/usr/lib/amd64/libexslt.so.0 \ --link=/usr/lib/amd64/libssl.so.0.9.8 \ --link=/usr/lib/amd64/libcrypto.so.0.9.8 \ --addlist=biber.files \ --cachedeps=scancache \ --output=biber-solaris_x86_64 \ /usr/perl5/5.24/bin/biber biber-2.19/dist/xsl-transform.pl000077500000000000000000000010731440117422400166520ustar00rootroot00000000000000#!/opt/local/bin/perl use XML::LibXML; use XML::LibXSLT; use Carp; my $xslt = XML::LibXSLT->new(); my $xml = $ARGV[0]; my $xsl = $ARGV[1]; croak "No XML file given" unless $xml; croak "No XSL file given" unless $xsl; croak "Can't find XML file" unless -e $xml; croak "Can't find XSL file" unless -e $xsl; my $style = XML::LibXML->load_xml( location => $xsl, no_cdata=>1 ); my $data = XML::LibXML->load_xml(location => $xml); my $stylesheet = $xslt->parse_stylesheet($style); my $out = $stylesheet->transform($data); $stylesheet->output_file($out, $xml . '.html'); biber-2.19/doc/000077500000000000000000000000001440117422400132745ustar00rootroot00000000000000biber-2.19/doc/biber.tex000066400000000000000000004255631440117422400151200ustar00rootroot00000000000000\documentclass{ltxdockit} \pdfvariable suppressoptionalinfo \numexpr512\relax \usepackage{btxdockit} \usepackage[british]{babel} \usepackage[strict=true,autostyle=true]{csquotes} \usepackage{ifthen} \usepackage{fontspec} \usepackage{tikz} \usepackage{graphicx} \usepackage{booktabs} \usepackage{fixfoot} \usepackage{xcolor} \usepackage{listings} \usepackage{metalogo} \usepackage{colortbl} \usepackage[retainmissing]{MnSymbol} \setmainfont[Ligatures=TeX]{CMU Serif} \setsansfont[Ligatures=TeX]{CMU Sans Serif} \setmonofont{CMU Typewriter Text} \def\BibLaTeX{\textsc{Bib}\latex} \def\BibTeX{\textsc{Bib}\kern-.08em \TeX} \renewcommand{\labelitemii}{$\circ$} \newcommand*{\biber}{Biber\xspace} \newcommand*{\biblatex}{Biblatex\xspace} \MakeAutoQuote{«}{»} \gdef\biberversion{2.19} % BIBER VERSION \gdef\biblatexversion{3.19} % BIBLATEX VERSION % colour for tables \definecolor{Gray}{gray}{0.85} \newcolumntype{a}{>{\columncolor{Gray}}l} % Set up tikz things \usetikzlibrary{shapes.geometric} \usetikzlibrary{arrows} \usetikzlibrary{fit} \usetikzlibrary{calc} \tikzstyle{file} = [rectangle, black, very thick, draw=blue, fill=blue!20, minimum width=6em, minimum height=3em, align=center] \tikzstyle{funit} = [rectangle, rounded corners=1ex, black, very thick, shape border rotate=-90, draw=green, fill=green!20, minimum size=3em, align=center] % colours for the .dot examples \xdefinecolor{centry}{HTML}{A0D0FF} \xdefinecolor{ncentry}{HTML}{DEEFFF} \xdefinecolor{doentry}{HTML}{FDFFD9} \xdefinecolor{section}{HTML}{FCE3FA} \xdefinecolor{set}{HTML}{E3DADC} \xdefinecolor{related}{HTML}{AD1741} \xdefinecolor{clone}{HTML}{AD1741} \xdefinecolor{crossref}{HTML}{7D7879} \xdefinecolor{xref}{HTML}{7D7879} \xdefinecolor{xdata}{HTML}{2CA314} \DeclareFixedFootnote{\tpb}{Binary maintained by third party. See README in binary download directory for this platform for support/contact details. Usually, the binary maintainer is also the binary build provider for \TeX Live.} \titlepage{% title={biber}, subtitle={A backend bibliography processor for biblatex}, url={http://biblatex-biber.sourceforge.net}, author={Philip Kime, François Charette}, email={Philip@kime.org.uk}, revision={biber \biberversion\ (biblatex \biblatexversion)}, date={\today}} \hypersetup{% pdftitle={biber}, pdfsubject={A backend bibliography processor for biblatex}, pdfauthor={Philip Kime}, pdfkeywords={biblatex, bibliography}} % Control list spacing \usepackage{enumitem} \setdescription{noitemsep} \setenumerate{noitemsep} \setitemize{noitemsep} \def\biberex#1{\hbox{\hspace{-4em}\texttt{\small \detokenize{#1}}}} \begin{document} \definecolor{grey}{rgb}{0.7,0.7,0.7} \printtitlepage \tableofcontents \section{Important Changes}\label{special} Please see the \verb+Changes+ file which accompanies \biber\ for the details on changes in each version. This section is just for important things like incompatible changes which users should be aware of. \minisec{2.15} The BBLXML output format is deprected and will be removed in version 4. It is rarely used and is not worth the overhead of test complications. Datamodel override via the user configuration file has been made more robust. User datamodel declarations in the user configuration file by default only override or modify the default datamodel. To remove elements from the default datamodel or to make major changes to the default datamodel, use the \biber option \opt{--no-default-datamodel} which will not load any default datamodel and assumes that a complete datamodel will be provided in the user configuration file. \minisec{2.13} In tool mode (\opt{--tool}), \biber now allows datamodel configuration in a user configuration file to add to or override the default datamodel contained in the main \file{biber-tool.conf} file. Previously it was necessary to copy the entire default data model into a user configuration file and then alter it. \minisec{2.6} When outputting \bibtex\ data in tool mode (\opt{--tool}), \biber now follows a full internal processing chain involving the data model. In previous versions, \bibtex output would just output the raw \bibtex input data, only allowing for some re-formatting options and therefore no tool mode conversions from other formats into \bibtex format were possible. This change has some normalisation consequences: \begin{itemize} \item Dates are normalised into \bibfield{DATE} fields. Legacy \bibfield{YEAR} fields are never output in \bibtex format data output. \item Fields which are not defined in the data model described in the default \file{biber-tool.conf} are ignored and are neither read nor output. If custom fields are required, they should be defined in the data model by using a custom tool mode config file (see below). If you would like to have ignored fields reported on, use the \opt{--validate-datamodel} option. \end{itemize} \minisec{1.9} \biber no longer checks the environment for locales to use for sorting. This was always rather against the spirit of \tex since it means that the same document might look different when compiled by different people. However, \biblatex now passes Babel/Polyglossia language identifiers (or real locale identifiers if you prefer) in the \file{.bcf} and \biber can use these to set the sorting locale globally or on a per-sortscheme basis. This is better than using environment variables since Babel/Polyglossia are more \latex relevant language environments anyway. \minisec{1.8} Various option name changes. Old names are retained for backwards compatibility. See the output of the \opt{--help} option. \minisec{1.0} The \opt{--validate-structure} option is now called \opt{--validate-datamodel} \minisec{0.9.9} The output format option \opt{--graph} has been moved to a new option \opt{--output-format}. The option \opt{--graph} should now be specified as \opt{--output-format=dot} and the \linebreak\opt{--dot-include} option should be used to specify the elements to include in the DOT output. For example: \begin{verbatim} biber --graph=section,field \end{verbatim} \noindent is now: \begin{verbatim} biber --output-format=dot --dot-include=section,field \end{verbatim} \minisec{1.8} \textcolor{red}{Several option names have changed}. Several options have changed names to facilitate better semantic classification of options. The previous names are supported as legacy aliases. See the \opt{--help} output of the \biber command. \minisec{0.9.8} \textcolor{red}{The \opt{sourcemap} option syntax has changed}.The syntax was too confusing. It is now simplified and more powerful. It is uses a sequential processing model to apply mappings to an entry. See section \ref{ref:map}. \minisec{0.9.7} \textcolor{red}{The user config file has a completely new format}.The reason for this is that the older \verb+Config::General+ format could not be extended to deal with more sophisticated features like per-datasource restrictions. An XML format is much better and in fact easier to understand. The old format of the \opt{map} option (now called \opt{sourcemap}) was rather confusing because of limitations in the old config file format. Please see section \ref{ref:map} and convert your config files to the new format. \minisec{0.9.6} \textcolor{red}{Matching of citation keys and datasource entry keys is now \emph{case-sensitive}}. This is to enforce consistency across the entire Bib\latex\ and \biber\ processing chain. All of the usual referencing mechanisms in \latex\ are case-sensitive and so is the matching in Bib\latex\ of citations to entries in the \texttt{.bbl} file generated by \biber. It is inconsistent and messy to enforce case-insensitivity in only \biber's matching of citations keys to datasource entry keys. If \biber\ detects what looks like a case mismatch between citation keys, it will warn you. \noindent \textcolor{red}{Summary of warnings/errors is now a new format}. When \biber\ finishes writing the \verb+.bbl+, it gives a summary count of errors/warnings. It used to do this in the same format as Bib\TeX, for compatibility. Now it uses a more consistent and easier to parse format which matches all other \biber\ messages. Please note if you need to support \biber\ in an external tool. I have updated the notes on AUC\TeX\ support below to reflect this. \section{Introduction}\label{int} \subsection{About} \biber\ is conceptually a \BibTeX\ replacement for \biblatex. It is written in Perl with the aim of providing a customised and sophisticated data preparation backend for \biblatex. You do \emph{not} need to install Perl to use \biber---binaries are provided for many operating systems via the main \TeX\ distributions (\TeX Live, Mac\TeX, MiK\TeX) and also via download from SourceForge. Functionally, \biber\ offers a superset of \BibTeX's capabilities but is tightly coupled with \biblatex\ and cannot be used as a stand-alone tool with standard \verb+.bst+ styles. \biber's primary role is to support \biblatex\ by performing the following tasks: \begin{itemize} \item Parsing data from datasources \item Processing cross-references, entry sets, related entries \item Generating data for name, name list and name/year disambiguation \item Structural validation according to \biblatex\ data model \item Sorting reference lists \item Outputting data to a \verb+.bbl+ for \biblatex\ to consume \end{itemize} \biber\ also has the ability to output different formats than \file{.bbl} and can, for example, output a new \bibtex\ file which contains only cited entries from the datasources (using the \opt{--output-format=bibtex} option). There is also a «,very thick] (mapp); \node[funit] (dyn) [below of=mapp,node distance=6em] {Instantiate dynamic sets and\\related entries} edge [<-,very thick] (mapp); \node[funit] (xdata) [below of=dyn,node distance=6em] {Process XDATA} edge [<-,very thick] (dyn); \node[funit] (crossrefs) [below of=xdata,node distance=6em] {Process cross-references and\\sets} edge [<-,very thick] (xdata); \node[funit] (validate) [below of=crossrefs,node distance=6em] {Validate data model} edge [<-,very thick] (crossrefs); \node[funit] (pre) [below of=validate,node distance=6em] {Resolve label* fields\\generate hashes\\enforce mincrossrefs} edge [<-,very thick] (validate); \node[funit] (unique) [right of=decode,node distance=16em] {Generate uniqueness data}; \draw[->,very thick] (pre.east) -- ($ (pre.east) + (2em,0) $) -- ($ (unique.west) - (2em,0) $) -- (unique.west); \node[funit] (visible) [below of=unique,node distance=6em] {Generate name visibility data} edge [<-,very thick] (unique); \node[funit] (post) [below of=visible,node distance=6em] {Generate more hashes and\\labels} edge [<-,very thick] (visible); \node[funit] (sort) [below of=post,node distance=6em] {Perform sorting} edge [<-,very thick] (post); \node[funit] (output) [below of=sort,node distance=6em] {Construct output objects} edge [<-,very thick] (sort); \node[funit] (encode) [below of=output,node distance=6em] {Encode to output encoding} edge [<-,very thick] (output); \node[file] (bbl) [below of=encode,node distance=8em] {output file} edge [<-,very thick] (encode); \end{tikzpicture} \caption{Overview of \biber's main functional units} \label{fig:overview} \end{figure} It may be useful to know something about the different routes a datasource entry can take as it passes through \biber. \begin{enumerate} \item\label{list:cited} All cited entries which are subsequently found in a datasource are instantiated in the internal \biber\ data model. \item Some uncited entries on which cited entries depend are instantiated in the internal \biber\ data model: \begin{itemize} \item Entries with entrytype \bibtype{XDATA} which are referenced from cited entries. \item Entries mentioned in the \bibfield{CROSSREF} or \bibfield{XREF} field of a cited entry (unless they are also cited themselves in which case they are already instantiated as per item \ref{list:cited} above). \item Clones of entries mentioned as a «related» entry of a cited entry. \item Members of sets, either explicit \bibtype{SET} entrytype entries or dynamic sets. \end{itemize} \item Some uncited but instantiated entries are promoted to cited status so that they make it into the output: \begin{itemize} \item Entries instantiated by being members of a set. \item Entries instantiated by being mentioned as a \bibfield{CROSSREF} are promoted to cited status if \bibfield{CROSSREF}'ed or \bibfield{XREF}'ed at least \opt{mincrosref} times. \item Clones of entries mentioned as a «related» entry of a cited entry. \end{itemize} \item Some of these auto-cited entries have the «dataonly» option set on them so that \biblatex\ will only use them for data and will not output them to the bibliography: \begin{itemize} \item Clones of entries mentioned as a «related» entry of a cited entry. \end{itemize} \end{enumerate} \subsection{Performance} \biber\ can't really be compared with \BibTeX\ in any meaningful way performance-wise. \biber\ is written in Perl and does a \emph{great} deal more than \BibTeX\ which is written in C. One of \biber's test cases is a 2150 entry, 15,000 line \verb+.bib+ file which references a 630 entry macros file with a resulting 160 or so page (A4) formatted bibliography. This takes \biber\ just under 30 seconds to process on a reasonable computer. This is perfectly acceptable, especially for a batch program. \subsection{Acknowledgements} François Charette originally wrote a first modest version of \biber. Philip Kime joined in the development in 2009 and is largely responsible for making it what it is today. \section{Use} Firstly, please note that \biber\ will \emph{not} attempt to sanitise the content of \BibTeX\ datasources. That is, don't expect it to auto-escape any \TeX\ special characters like «\verb+&+» or «\verb+%+» which it finds in, for example, your \bibfield{TITLE} fields. It used to do this in earlier versions in some cases but as of version 0.9, it doesn't because it's fraught with problems and leads to inconsistent expectations and behaviour between different datasource types. In your \BibTeX\ data sources, please make sure your entries are legal \TeX\ code. Running \opt{biber --help} will display all options and description of each and is the primary source of usage information. \biber\ returns an exit code of 0 on success or 2 if there was an error. Most \biber\ options can be specified in long or short format. When mentioning options below, they are referred to as «\opt{long form|short form}» when an option has both a long and short form. As usual with such options, when the option requires an argument, the long form is followed by an equals sign «\verb+=+» and then the argument, the short form is followed by a space and then the argument. For example, the \opt{--configfile|-g} option can be given in two ways: \begin{verbatim} biber --configfile=somefile.conf biber -g somefile.conf \end{verbatim} With the \opt{backend=biber} option, \biblatex\ switches its backend interface and passes all options and information relevant to \biber's operation in a control file with extension \verb+.bcf+\footnote{\biblatex\ Control File}. This is conceptually equivalent to the \verb+.aux+ file which \latex\ uses to pass information to \BibTeX. The \verb+.bcf+ file is XML and contains many options and settings which configure how \biber\ is to process the bibliography and generate the \verb+.bbl+ file. The usual way to call \biber\ is simply with the \verb+.bcf+ file as the only argument. \biblatex\ always writes the control file with a \verb+.bcf+ extension. Specifying the «\verb+.bcf+» extension to \biber\ is optional. Assuming a control file called \verb+test.bcf+, the following two commands are equivalent: \begin{verbatim} biber test.bcf biber test \end{verbatim} \noindent Figure \ref{fig:biber-mdf} is a graphical overview of the data flow for data model information. See Figure \ref{fig:overview} for a more complete overview of \biber's processing steps. \begin{figure}[!htpb] \centering\small \begin{tikzpicture} \node[file] (dsfile) {datasource}; \node[funit] (remap) [below of=dsfile, node distance=8em] {remap} edge [<-,dashed] (dsfile); \node[file] (docremap) [left of=dsfile, node distance=15em] {document data model mapping\\from \texttt{.bcf}} edge [->,dashed] (remap); \node[file] (defaultremap) [left of=remap, node distance=15em] {default data model mapping\\from \texttt{.bcf}} edge [->,dashed] (remap); \node[file] (conf) [below of=remap, node distance=7em] {data model mapping\\from \biber\ config file} edge [->,dashed] (remap); \node[funit] (parser) [right of=remap, node distance=8em] {parser} edge [<-,very thick] (remap); \node[funit] (validation) [right of=parser, node distance=8em] {validation} edge [<-,very thick] (parser); \node[file] (hard) [above of=validation, node distance=8em] {\biblatex\ data\\model from \texttt{.bcf}} edge [->,dashed] (parser) edge [->,dashed] (remap) edge [->,dashed] (validation); \node[file] (bbl) [below of=validation, node distance=8em] {output file} edge [<-,very thick] (validation); \end{tikzpicture} \caption{Model data flow in \biber} \label{fig:biber-mdf} \end{figure} \bigskip \subsection{Options and config file}\label{conffile} \biblatex\ options which \biber\ needs to know about are passed via the \verb+.bcf+ file. See Table \ref{tab:bltxopts} for the \biblatex\ options which \biber\ uses and also for the scopes which are supported for each option. \biber\ also has its own options which are set using the following resource chain, given in decreasing precedence order:\\[2ex] \begin{table} \begin{center} \small \begin{tabular}{lllll} \toprule \biblatex\ option & Global & Per-type & Per-entry\\ \midrule alphaothers & \checkmark & \checkmark & \\ dataonly & & \checkmark & \checkmark\\ inheritance & \checkmark & & \\ labelalpha & \checkmark & \checkmark & \\ labelalphatemplate & \checkmark & \checkmark & \\ labeldate & \checkmark & \checkmark & \\ labeldatespec & \checkmark & \checkmark & \\ labelnamespec & \checkmark & \checkmark & \\ labelnumber & \checkmark & \checkmark & \\ labeltitle & \checkmark & \checkmark & \\ labeltitleyear & \checkmark & \checkmark & \\ maxalphanames & \checkmark & \checkmark & \checkmark\\ maxbibnames & \checkmark & \checkmark & \checkmark\\ maxcitenames & \checkmark & \checkmark & \checkmark\\ maxitems & \checkmark & \checkmark & \checkmark\\ minalphanames & \checkmark & \checkmark & \checkmark\\ minbibnames & \checkmark & \checkmark & \checkmark\\ mincitenames & \checkmark & \checkmark & \checkmark\\ minitems & \checkmark & \checkmark & \checkmark\\ presort & \checkmark & \checkmark & \checkmark\\ singletitle & \checkmark & \checkmark & \\ skipbib & & \checkmark & \checkmark\\ skiplab & & \checkmark & \checkmark\\ skiplos & & \checkmark & \checkmark\\ sortalphaothers & \checkmark & \checkmark & \\ sortexclusion & & \checkmark & \\ sortfirstinits & \checkmark & & \\ sorting & \checkmark & & \\ uniquelist & \checkmark & \checkmark & \checkmark\\ uniquename & \checkmark & \checkmark & \checkmark\\ useauthor & \checkmark & \checkmark & \checkmark\\ useeditor & \checkmark & \checkmark & \checkmark\\ useprefix & \checkmark & \checkmark & \checkmark\\ usetranslator & \checkmark & \checkmark & \checkmark\\ \bottomrule \end{tabular} \end{center} \caption{\biblatex\ options which \biber\ uses} \label{tab:bltxopts} \end{table} \noindent command line options $\rightarrow$\\ \hspace*{1em}\verb+biber.conf+ file $\rightarrow$\\ \hspace*{2em}\verb+.bcf+ file$\rightarrow$\\ \hspace*{3em}\biber\ hard-coded defaults\\[2ex] \noindent Users do not need to care directly about the contents or format of the \verb+.bcf+ file as this is generated from the options which they specify via \biblatex. The config file is a place to set commonly used command-line options and also to set options which cannot be set on the command line. The configuration file is by default called \verb+biber.conf+ but this can be changed using the \opt{--configfile|-g} option. Unless \opt{--configfile|-g} is used, the config file is looked for in the following places, in decreasing order of preference:\\[2ex] \noindent \verb+biber.conf+ in the current directory $\rightarrow$\\ \hspace*{1em}\verb+$HOME/.biber.conf+ $\rightarrow$\\ \hspace*{2em}\verb+$XDG_CONFIG_HOME/biber/biber.conf+ $\rightarrow$\\ \hspace*{3em}\verb+$HOME/Library/biber/biber.conf+ (Mac OSX only)\\ \hspace*{3em}\verb+$APPDATA/biber.conf+ (Windows only) $\rightarrow$\\ \hspace*{4em}the output of «\verb+kpsewhich biber.conf+» (if available on the system)\\[2ex] \noindent The config file is XML. Below is an example config file which displays the \biber\ defaults: \begin{lstlisting}[language=xml] 0 0 base 0 0 UTF-8 and 0 and 0 0 0 0 others 0 UTF-8 upper bbl 2 0 0 0 0 base xdata - = 0 true true false false 0 0 0 0 0 xdata - = \s*,\s* \end{lstlisting} \noindent In practice, the most commonly used options will be set via \biblatex\ macros in your document and automatically passed to \biber\ via the \verb+.bcf+ file. Certain options apply only to \biber\ and can only be set in the config file, particularly the more complex options. Most options are simple tags. Exceptions are the \opt{nosort}, \opt{nonamestring}, \opt{noinit} and \opt{collate-options} options which are slightly more complex and can have sub-options as shown. A much more complex option is the \opt{sourcemap} option which is not set by default and which is described in section \ref{ref:map}. \subsubsection{The \texttt{output-format} option}\label{ref:of} \biber\ is able to output formats other than \file{.bbl} files for \biblatex\ to consume. It is also able to output other formats such as \file{DOT} for visualisation of entry dependencies (see section \ref{ref:vis}), the experimental \verb+biblatexml+ XML format, \bibtex\ \file{.bib} files and an XML version of the \file{.bbl} format with extension \file{.bblxml}. \file{.bib} output is possible in tool mode, when you are converting an entire datasource file independently of any particular document (see section \ref{ref:tool}). It is also useful when you want, instead of a \file{.bbl}, a new \file{.bib} file containing only the cited entries from a document so that you can, for example, send a minimally complete package for typesetting to someone. To do this, you would, after the first \latex run, call \biber like this: \begin{verbatim} biber --output-format=bibtex test.bcf \end{verbatim} \noindent This would result in a new \file{.bib} file called \file{test\_biber.bib} containing all cited entries in \file{test.tex}, in citation order, formatted according to the various \opt{ouput-*} options. You could of course also perform more processing like source mapping (see section \ref{ref:map}), reencoding (see section \ref{ref:enc}) etc. using more command line options or a config file. The \file{.bblxml} format for output is an XML version of the \file{.bbl}. It cannot be read by \biblatex\ but contains the same information as in the \file{.bbl} and may be useful if you want to transform a document bibliography into some other format since XML is a well-supported transformation format (using, for example, XSLT). By default, when choosing \file{.bblxml} output with the option \opt{--output-format=bblxml}, a RelaxNG XML schema is also generated (unless the \opt{--no-bblxml-schema} is used). This schema is derived from the active datamodel in the document (passed in the \file{.bcf} from \biblatex) and is placed in the same directory as the \file{.bblxml} output file. The extension of the schema is \file{.rng}. The option \opt{--validate-bblxml} may be used to validate the \file{.bblxml} against the schema. \subsubsection{The \texttt{sourcemap} option}\label{ref:map} The datasource drivers implement a mapping from datasource entrytypes and fields into the \biblatex\ data model. If you want to override or augment the driver mappings you can use the \opt{sourcemap} option which makes it possible to, for example, have a datasource with non-standard entrytypes or fields and to have these automatically mapped into other entrytypes/fields without modifying your datasource. Essentially, this alters the source data stream which \biber\ uses to build the internal \biblatex\ data model and is an automatic way of editing the datasource as it is read by \biber. Source mappings can be defined at different «levels» which are applied in a defined order. See the \biblatex\ manual regarding these macros:\\[2ex] \noindent \texttt{user}-level maps defined with \cmd{DeclareSourcemap}$\rightarrow$\\ \hspace*{1em}\texttt{user}-level maps defined in the \biber\ config file (described below)$\rightarrow$\\ \hspace*{2em}\texttt{style}-level maps defined with \cmd{DeclareStyleSourcemap}$\rightarrow$\\ \hspace*{3em}\texttt{driver}-level maps defined with \cmd{DeclareDriverSourcemap}\\[2ex] The \opt{sourcemap} option can only be set in the config file and not on the command line as it has a complex structure. This option allows you to perform various datasource mapping tasks which can be useful for pre-processing data which you do not generate yourself: \begin{itemize} \item Map datasource entrytypes to different entrytypes. \item Map datasource fields to different fields. \item Add new fields to an entry \item Remove fields from an entry \item Modify the contents of a field using standard Perl regular expression match and replace. \item Restrict any of the above operations to entries coming from particular datasources which you defined in \verb+\addresource{}+ macros. \item Restrict any of the above operations to entries only of a certain entrytype. \end{itemize} \noindent There is in fact, more flexibility than the above suggests, examples will show this below. The format of the \opt{sourcemap} option section in the config file is described below, followed by examples which will make things clearer. Items in \textcolor{red}{red} are not literal, they are descriptive meta-values which are explained in the accompanying text. Items in \textcolor{blue}{blue} are optional within their parent section or element. The general structure is: \lstset{showspaces=false} \lstset{showstringspaces=false} \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] ... $\vdots$ ... $\vdots$ ... $\vdots$ ... \end{lstlisting} \noindent Here, \textcolor{red}{\texttt{driver$_1$}}\ldots \textcolor{red}{\texttt{driver$_n$}} are the names of valid \biber\ data source drivers (see section \ref{dsd}). One thing to note here is the \opt{map\_overwrite} attribute. This boolean attribute determines whether, for this driver mapping section, you may overwrite existing fields when adding new fields or mapping them. This attribute can be overridden on a per-map basis, see below. A warning will be issued either way saying whether an existing field will or will not be overwritten. If omitted, it defaults to «0». The \opt{map} elements are processed in sequence and contain a number of \opt{map\_step}s which are also processed in sequence. Each \opt{map\_step} allows you to do a particular thing or combination of things: \begin{itemize} \item Change the entrytype of an entry \item Change the name of a field \item Add extra fields the entry \item Change the contents of a field \end{itemize} \noindent These facilities are explained in more detail below, with examples. A \opt{map} element looks like this: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] +\textcolor{blue}{\textcolor{red}{datasource}}+ +\textcolor{blue}{\textcolor{red}{entrytype}}+ +\textcolor{blue}{\textcolor{red}{entrytype}}+ \end{lstlisting}%| <- sometimes emacs highlighting needs this \begin{itemize} \item If there are any \textcolor{red}{\texttt{datasource}}s named in \textcolor{blue}{\texttt{per\_datasource}} elements, this mapping only applies to entries coming from the named \textcolor{red}{\texttt{datasource}}s. There can be multiple \textcolor{blue}{\texttt{per\_datasource}} elements each specifying one of the datasource names given in a \biblatex\ \verb+\addbibresource+ macro. \item If there are any \textcolor{red}{\texttt{entrytypes}}s named in \textcolor{blue}{\texttt{per\_type}} elements, this mapping only applies to entries of the named \textcolor{red}{\texttt{entrytypes}}s. \item If there are any \textcolor{red}{\texttt{entrytypes}}s named in \textcolor{blue}{\texttt{per\_nottype}} elements, this mapping only applies to entries not of the named \textcolor{red}{\texttt{entrytypes}}s. \item The \texttt{map\_overwrite} attribute can be used to override the value for this attribute set on the parent \opt{maps} element. If omitted, it defaults to the parent \opt{maps} attribute value. \item The \texttt{map\_foreach} attribute loops over all \cmd{step}s in this \cmd{map}, setting the special variable \verb+$MAPLOOP+ to each of the comma-separated values contained in \textcolor{red}{\texttt{loopval}}. \textcolor{red}{\texttt{loopval}} can either be the name of a datafield set defined with \biblatex's \cmd{DeclareDatafieldSet}, a datasource field which contains a comma-separated values list or an explicit comma-separated values list itself (and \textcolor{red}{\texttt{loopval}} is determined in that order). This allows the user to repeat a group of \opt{map\_step}s for each value of \textcolor{red}{\texttt{loopval}}. The special variable \verb+$MAPUNIQ+ may also be used in the \opt{map\_step}s to generate a random unique string. This can be useful when creating keys for new entries. The special variable \verb+$MAPUNIQVAL+ may be used the \opt{map\_step}s to refer to the value of the last random unique string generated with \verb+$MAPUNIQ+. \end{itemize} \noindent Each \opt{map\_step} is looked at in turn and compared with the datasource entry being processed. A \opt{map\_step} works like this: \begin{itemize} \item If \textcolor{blue}{\texttt{map\_entry\_new}} is set, a new entry is created with the entry key \textcolor{red}{\texttt{newentrykey}} and the entry type \textcolor{red}{\texttt{newentrykeytype}} given in the option \textcolor{blue}{\texttt{map\_entry\_newtype}}. This entry is only in-scope during the processing of the current entry and can be referenced by \textcolor{red}{\texttt{newentrykey}} given as the value to \textcolor{blue}{\texttt{map\_entrytarget}}. In \textcolor{red}{\texttt{newentrykey}}, you may use standard Perl regular expression backreferences to captures from a previous \textcolor{blue}{\texttt{map\_match}} step. \item When a \textcolor{blue}{\texttt{map\_field\_set}} step has \textcolor{blue}{\texttt{map\_entrytarget}} set to the entrykey of an entry created by \textcolor{blue}{\texttt{map\_entry\_new}}, the target for the field set will be the \textcolor{blue}{\texttt{map\_entrytarget}} entry rather than the entry being currently processed. This allows users to create new entries and set fields in them. \item If \textcolor{blue}{\texttt{map\_entry\_null}} is set, processing of the \opt{map} immediately terminates and the current entry is not created. It is as if it did not exist in the datasource. Obviously, you should select the entries which you want to apply this to using prior mapping steps. \item If \textcolor{blue}{\texttt{map\_entry\_clone}} is set, a clone of the entry is created with an entry key \textcolor{red}{\texttt{clonekey}}. Obviously this may cause labelling problems in author/year styles etc. and should be used with care. The cloned entry is in-scope during the processing of the current entry and can be modified by passing its key as the value to \textcolor{blue}{\texttt{map\_entrytarget}}. In \textcolor{red}{\texttt{clonekey}}, you may use standard Perl regular expression backreferences to captures from a previous \textcolor{blue}{\texttt{map\_match}} step. \item Change the \textcolor{red}{\texttt{source-entrytype}} to \textcolor{red}{\texttt{target-entrytype}}, if defined. If \textcolor{blue}{\texttt{map\_final}} is set then if the entrytype of the entry is not \textcolor{red}{\texttt{source-entrytype}}, processing of this \opt{map} immediately terminates. \item Change the \textcolor{red}{\texttt{source-field}} to \textcolor{red}{\texttt{target-field}}, if defined. If \textcolor{blue}{\texttt{map\_final}} is set, then if there is no \textcolor{red}{\texttt{source-field}} field in the entry, processing of this \opt{map} immediately terminates. \item If \textcolor{blue}{\texttt{map\_entrykey\_cite}} is used then only apply the step if the entry key was specifically \cmd{cite}ed. \item If \textcolor{blue}{\texttt{map\_entrykey\_nocite}} is used then only apply the step if the entry key was specifically \cmd{nocite}ed or included by \cmd{nocite\{*\}}. \item If \textcolor{blue}{\texttt{map\_entrykey\_citedornocited}} is used then only apply the step if the entry key was specifically \cmd{cite}ed or \cmd{nocite}ed. \item If \textcolor{blue}{\texttt{map\_entrykey\_allnocited}} is used then only apply the step if the entry key was included by \cmd{nocite\{*\}} \item If \textcolor{blue}{\texttt{map\_notfield}} is used then only apply the step if the \textcolor{red}{\texttt{source-field}} does not exist. \item If \textcolor{blue}{\texttt{map\_match}} is defined but \textcolor{blue}{\texttt{map\_replace}} is not, only apply the step if the \textcolor{red}{\texttt{source-field}} matches \textcolor{blue}{\texttt{map\_match}}. You can use parentheses as usual to capture parts of the match and can then use these later when setting a \textcolor{blue}{\texttt{map\_field\_value}}. \item \textcolor{blue}{\texttt{map\_matchi}} is the same as \textcolor{blue}{\texttt{map\_match}} but case insensitive \item \textcolor{blue}{\texttt{map\_notmatch}} is the same as \textcolor{blue}{\texttt{map\_match}} but with the logic reversed. \item \textcolor{blue}{\texttt{map\_notmatchi}} is the same as \textcolor{blue}{\texttt{map\_notmatch}} but case insensitive. \item If \textcolor{blue}{\texttt{map\_matches}} is defined, it should be a comma-separated list of literal strings which are replaced by corresponding locations in a comma-separated list provided in \textcolor{blue}{\texttt{map\_replace}}. The lists must have the same number of elements or the step will be skipped. \item \textcolor{blue}{\texttt{map\_matchesi}} is the same as \textcolor{blue}{\texttt{map\_matches}} but case insensitive. \item Perform a Perl regular expression match and replace on the value of \textcolor{red}{\texttt{source-field}} if \textcolor{blue}{\texttt{map\_match}} and \textcolor{blue}{\texttt{map\_replace}} are defined. You may use (and almost certainly will want to use) parentheses for back-references in \textcolor{blue}{\texttt{map\_replace}}. Do not quote the regular expressions in any special (i.e. non-Perly) way---it's not necessary. \item If \textcolor{blue}{\texttt{map\_field\_set}} is defined, then its value is \textcolor{red}{\texttt{set-field}} which will be set to a value specified by further attributes. If \textcolor{blue}{\texttt{map\_overwrite}} is false for this step and the field to set already exists then the map step is ignored. If \textcolor{blue}{\texttt{map\_final}} is also set on this step, then processing of the parent map stops at this point. If \textcolor{blue}{\texttt{map\_append}} is set, then the value to set is appended to the current value of \textcolor{red}{\texttt{set-field}}. \textcolor{blue}{\texttt{map\_appendstrict}} appends only if the \textcolor{red}{\texttt{set-field}} is not empty. The value to set is specified by a mandatory one and only one of the following attributes: \begin{itemize} \item \textcolor{blue}{\texttt{map\_field\_value}} --- The \textcolor{red}{\texttt{set-field}} is set to \textcolor{red}{\texttt{set-value}} \item \textcolor{blue}{\texttt{map\_null}} --- The field is ignored, as if it did not exist in the datasource \item \textcolor{blue}{\texttt{map\_origentrytype}} --- The \textcolor{red}{\texttt{set-field}} is set to the most recently mentioned \textcolor{red}{\texttt{source-entrytype}} name. \item \textcolor{blue}{\texttt{map\_origfield}} --- The \textcolor{red}{\texttt{set-field}} is set to the most recently mentioned \textcolor{red}{\texttt{source-field}} name \item \textcolor{blue}{\texttt{map\_origfieldval}} --- The \textcolor{red}{\texttt{set-field}} is set to the most recently mentioned \textcolor{red}{\texttt{source-field}} value \end{itemize} \end{itemize} \noindent With \bibtex\ datasources, you can specify the pseudo-field «entrykey» for \textcolor{red}{\texttt{source-field}} which is the citation key of the entry. Naturally, this «field» cannot be changed (used as \textcolor{red}{\texttt{set-field}}, \textcolor{red}{\texttt{target-field}} or changed using \textcolor{blue}{\texttt{map\_replace}}). Note that for XML datasources like BibLaTeXML, the names of fields and entrytypes are matched in a case sensitive manner. For all other datasource types, entrytype and field name matching is case insensitive. \noindent Here are some examples: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] example1.bib example2.bib \end{lstlisting} \noindent This would add a \bibfield{KEYWORDS} field with value «\verb+keyw1, keyw2+» and set the \bibfield{NOTE} field to citation key for the entry to all entries which are found in either the \verb+examples1.bib+ or \verb+examples2.bib+ files. This assumes that the \biblatex\ source contains \verb+\addresource{example1.bib}+ and \verb+\addresource{example2.bib}+. \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] \end{lstlisting} \noindent Copy the \bibfield{TITLE} field to the \bibfield{NOTE} field unless the \bibfield{NOTE} field already exists. \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent For any entry with an \bibfield{AUTHOR} field, try to set \bibfield{SORTNAME} to the same as \bibfield{AUTHOR}. If this fails because \bibfield{SORTNAME} already exists, stop, otherwise truncate \bibfield{SORTNAME} to just the first name in the name list. \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] \end{lstlisting} \noindent Any \bibtype{CHAT} entrytypes would become \bibtype{CUSTOMA} entrytypes and would automatically have a \bibfield{TYPE} field set to «CHAT» unless the \bibfield{TYPE} field already exists in the entry (because \opt{map\_overwrite} is false). This mapping applies only to entries of type \bibtype{CHAT} since the first step has \opt{map\_final} set and so if the \opt{map\_type\_source} does not match the entry, processing of this \opt{map} immediately terminates. \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] examples.bib ARTICLE BOOK \end{lstlisting} \noindent Any entries of entrytype \bibfield{ARTICLE} or \bibfield{BOOK} from the «examples.bib» datasource would have their \bibfield{ABSTRACT} fields removed and a \bibfield{NOTE} field added with value «Auto-created this field». \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent This removes \bibfield{ABSTRACT} fields from any entry, changes \bibfield{CONDUCTOR} fields to \bibfield{NAMEA} fields and changes \bibfield{GPS} fields to \bibfield{USERA} fields \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent Applies only to entries with \bibfield{PUBMED} fields and maps \bibfield{PUBMEDID} fields to \bibfield{EPRINT} fields, sets the \bibfield{EPRINTTYPE} field to «PUBMEDID» and also sets the \bibfield{USERD} field to the string «Some string of things». \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent Here, the contents of the \bibfield{SERIES} field have leading numbers stripped and the remainder of the contents lowercased. \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent Here, if for an entry, the \bibfield{TITLE} field matches a particular regular expression, we set a special keyword so we can, for example, make a references section just for certain items. \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent If an entry has a \bibfield{LISTA} field which matches regular expression «regexp», then it is removed. \begin{lstlisting}[language=xml,escapechar=:,mathescape=true] \end{lstlisting} \noindent Here, we use multiple match/replace for the same field to regularise some inconstant name variants. Bear in mind that match/replace processing within a \opt{map} element is sequential and the changes from a previous match/replace are already committed. \begin{lstlisting}[language=xml,escapechar=;,mathescape=true] \end{lstlisting} \noindent Only applies to entries with an \bibfield{AUTHOR} field matching «Doe,». First the \bibfield{AUTHOR} field is copied to both the \bibfield{SHORTAUTHOR} and \bibfield{SORTNAME} fields, overwriting them if they already exist. Then, these two new fields are modified to canonicalise a particular name, which presumably has some variants in the datasource. \begin{lstlisting}[language=xml,escapechar=;,mathescape=true] \end{lstlisting} \noindent Any entry with a \bibfield{TITLE} field matching «A Title» will be completely ignored. \bigskip \minisec{Other datasource types} For datasources other than \BibTeX, (e.g. \verb+biblatexml+), the source entrytypes and fields are usually very differently modelled and named. \begin{lstlisting}[language=xml,escapechar=;,mathescape=true] \end{lstlisting} \noindent In this example, a loop is used to apply a regular expression replacement to several fields. \begin{lstlisting}[language=xml,escapechar=;,mathescape=true] \end{lstlisting} \noindent Here, the \bibfield{NOTE} field content «test1» will be replaced with «1», «test2» will be replaced with «3» and «test3» will be replaced with «2». This sort of map is useful for sorting fields which have a defined order for some application but where the order is neither alphabetical or numeric, for example, courts in legal references. A map could create a new field with a defined alpha or numeric sort order which a custom sorting template then uses to sort in the order required. \bigskip \subsubsection{The \texttt{inheritance} option}\label{inheritance} The \opt{inheritance} option defines the inheritance rules for data inheritance between entries using, for example, \bibtex's \bibfield{CROSSREF} field. The default setup for this is defined by \biblatex and is passed in the \file{.bcf} file. Defining inheritance rules in the \biber configuration file is rarely something you would want to do with one notably exceptional case being when using \biber in tool mode where you might want to «materialise» special inheritance rules (see section \ref{ref:tool}). Here we define the format of the config file inheritance section, should you need to understand or modify it. Items in \textcolor{red}{red} are not literal, they are descriptive meta-values which are explained in the accompanying text. Items in \textcolor{blue}{blue} are optional within their parent section or element. \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] $\vdots$ $\vdots$ $\vdots$ $\vdots$ \end{lstlisting} \begin{itemize} \item The \texttt{defaults} section specifies the default inheritance rules which are not otherwise covered by a specific \texttt{inherit} rule. \texttt{inherit\_all} specifies that by default a \textcolor{red}{\texttt{target}} inherits all fields from a \textcolor{red}{\texttt{source}}. \texttt{override\_target} specifies that by default an existing \textcolor{red}{\texttt{target}} field will be overwritten by a \textcolor{red}{\texttt{source}} field it already exists in the \textcolor{red}{\texttt{target}}. A \texttt{type\_pair} element specifies the defaults for a particular \textcolor{red}{\texttt{source}} and \textcolor{red}{\texttt{target}} entrytype combination. \textcolor{red}{\texttt{source}} or \textcolor{red}{\texttt{target}} can take the value «\texttt{*}» which is a wildcard representing all possible entrytypes. \item An \texttt{inherit} element specifies how one or more \textcolor{red}{\texttt{source}} fields are inherited by one more \textcolor{red}{\texttt{source}}/\textcolor{red}{\texttt{target}} pairs which are specified in one or more \texttt{type\_pair} elements within the same \texttt{inherit} element. \textcolor{blue}{\texttt{override\_target}} can be specified on a per-field basis as can the \textcolor{blue}{\texttt{skip}} attribute which indicates that a particular \texttt{field} is not to be inherited by the \textcolor{red}{\texttt{target}}. \end{itemize} % Here is an example: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] \end{lstlisting} % Here we can see that the default is to inherit all fields from the \textcolor{red}{\texttt{source}} and not to override existing \textcolor{red}{\texttt{target}} fields if they already exist. Then we see that for some combinations of \textcolor{red}{\texttt{source}}s and \textcolor{red}{\texttt{target}}s, the \bibfield{AUTHOR} field is inherited from the \textcolor{red}{\texttt{source}} and also the \bibfield{AUTHOR} field in the \textcolor{red}{\texttt{source}} is inherited as the \bibfield{BOOKAUTHOR} field in the \textcolor{red}{\texttt{target}}. The second \texttt{inherit} element says that \bibfield{INBOOK} and \bibfield{INCOLLECTION} entries never inherit the \bibfield{INTRODUCTION} field from any \textcolor{red}{\texttt{source}}. In general, it is probably best to copy the default \biblatex inheritance rules and modify them to your needs. See section \ref{ref:tool}. \bigskip \subsubsection{The \texttt{noinit} option}\label{noinit} The value of the \opt{noinit} option can only be set in the config file and not on the command line. This is because the values are Perl regular expressions and would need special quoting to set on the command line. This can get a bit tricky on some OSes (like Windows) so it's safer to set them in the config file. \opt{noinit} allows you to ignore parts of a name when generating initials. This is done using Perl regular expressions which specify what to ignore. You can specific multiple regular expressions and they will be removed from the name before it is passed to the initials generating system. For example, this option can be used to ignore diacritic marks and prefices in names which should not be considered when sorting. Given (the default): \begin{lstlisting}[language=xml] \end{lstlisting} \noindent and the \BibTeX\ datasource entry: \begin{verbatim} AUTHOR = {{al-Hasan}, ʿAlī}, \end{verbatim} \noindent the initials for the last name will be «H» and not «a-H». The initial for the first name will be «A» as the diacritic is also ignored. This is tricky in general as you cannot often determine the difference between a name with a prefix and a hyphenated name with only, say, two chars in the first part such as «Ho-Pun». You can adjust this option for your individual cases. By default, only lowercased prefices are looked for so as to avoid breaking things like «Ho-Pun» where you want the initials to be «H.-P.», for example. See the Perl regular expression manual page for details of the regular expression syntax\footnote{\url{http://perldoc.perl.org/perlre.html}}. \subsubsection{The \texttt{nolabel} option}\label{nolabel} The value of the \opt{nolabel} option can only be set in the config file and not on the command line. This is because the values are Perl regular expressions and would need special quoting to set on the command line. This can get a bit tricky on some OSes (like Windows) so it's safer to set them in the config file. \opt{nolabel} allows you to ignore elements of a field when generating labels. This is done using Perl regular expressions which specify what to ignore. You can specific multiple regular expressions and they will be removed from a field before it is passed to the label generating system. For example, this option can be used to ignore control, punctuation, symbol and separator characters when generation labels. Given (the default): \begin{lstlisting}[language=xml] \end{lstlisting} \noindent and the \BibTeX\ datasource entry with default label generation definition (see \biblatex\ documentation for \cmd{DeclareLabelalphaTemplate}): \begin{verbatim} AUTHOR = {O'Toole, Alexander}, \end{verbatim} \noindent Then the label for the name will be <> as the apostrophe is ignored by the label generation routine. See the Perl regular expression manual page for details of the regular expression syntax\footnote{\url{http://perldoc.perl.org/perlre.html}}. \subsubsection{The \texttt{nolabelwidthcount} option}\label{nolabelwidthcount} The value of the \opt{nolabelwidthcount} option can only be set in the config file and not on the command line. This is because the values are Perl regular expressions and would need special quoting to set on the command line. This can get a bit tricky on some OSes (like Windows) so it's safer to set them in the config file. \opt{nolabelwidthcount} allows you to ignore elements of a field when generating fixed-width substrings of labels. This is done using Perl regular expressions which specify what to ignore. You can specific multiple regular expressions and they will be removed from a field before it is passed to the label generating system. For example, this option can be used to ignore punctuation characters when generating substrings for labels. Note that in this example we reset \opt{nolabel} because by default this removes punctuation characters. Given: \begin{lstlisting}[language=xml] \end{lstlisting} \noindent and the \BibTeX\ datasource entry with default label generation definition (see \biblatex\ documentation for \cmd{DeclareLabelalphaTemplate}): \begin{verbatim} AUTHOR = {O'Toole, Alexander}, \end{verbatim} \noindent Then the label for the name will be <> as the apostrophe is ignored by the substring generation routine. See the Perl regular expression manual page for details of the regular expression syntax\footnote{\url{http://perldoc.perl.org/perlre.html}}. \bigskip \subsubsection{The \texttt{sorting} option}\label{sorting} The \opt{sorting} option defines the sorting rules for the bibliography lists. \biblatex allows multiple sorting specifications referenced by name as it can print bibliography information as many times as the user wishes with different filtering and sorting. This is normally handled by macros in \biblatex which write the XML sorting specification(s) to the \file{.bcf} file for \biber to read but there may be occasions (usually when using \biber in «tool» mode (see section\ref{ref:tool}) when you need to specify the global sorting specification directly in a \biber config file. This section documents the XML format of the sorting specification. Items in \textcolor{red}{red} are not literal, they are descriptive meta-values which are explained in the accompanying text. Items in \textcolor{blue}{blue} are optional within their parent section or element. See also the \texttt{nosort} option in section \ref{nosort}. \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] +\textcolor{red}{string}+ +\textcolor{blue}{}+ +\textcolor{blue}{\textcolor{red}{field}}+ $\vdots$ +\textcolor{blue}{}+ +\textcolor{red}{field|literal|citeorder}+ $\vdots$ $\vdots$ \end{lstlisting} Sorting in \biber is a sophisticated procedure of building up a sorting object for an entry based on a sorting scheme template, the general form of which is shown above. The sorting routine first traverses every entry in the bibliography list and generates a sorting object based on the sorting scheme. When this is done, it sorts the entries according to the sorting objects it has generated for each entry. A sorting specification must be named with the \textcolor{red}{schemename} attribute. In «tool» mode, this must be set to \texttt{tool}. Otherwise, it is a name referenced by a \biblatex refcontext \texttt{sorting} option. A sorting specification is comprised of a number of \texttt{sort} elements. Sorting is essentially a process of comparing whatever information is in the \textcolor{red}{n}th \texttt{sort} element collected for every entry (otherwise known as «multi-field» sorting). Within a \texttt{sort} element, there can be any number of \texttt{sortitem} elements which describe what information to look for in the entry in order to construct this part of the sorting object; either a field, a literal string or the special «citeorder» pseudo-field. When generating the sorting information for an entry, within each \texttt{sort} element, the first \texttt{sortitem} to return a non-empty value for the bibliography entry is used and the rest of the \texttt{sortitem}s in the \texttt{sort} are skipped. A \texttt{sortitem} essentially looks for a piece of information in the entry and adds this to the sorting object. If it is looking for a \textcolor{red}{\texttt{field}}, then the field must exist in the entry. If it does not, the \texttt{sortitem} is skipped. If the \textcolor{red}{\texttt{field}} does exist, it is added to the sorting object for the entry after being modified by the attributes of the \texttt{sortitem}. Once a \texttt{sortitem} has returned the contents of a \textcolor{red}{\texttt{field}}, you can use the \textcolor{blue}{substring\_side} (default «left» if any other \textcolor{blue}{substring} attributes are set) and \textcolor{blue}{substring\_width} (default «4» if any other \textcolor{blue}{substring} attributes are set) attributes to truncate the contents of the \textcolor{red}{\texttt{field}} by reducing it to a substring taken from the left or right side of the string and of a number of (UTF-8) characters of your choice. You can also pad the \textcolor{red}{\texttt{field}} with repeated arbitrary characters on either side using the \textcolor{blue}{pad\_side} (default «left» if any other \textcolor{blue}{pad} attributes are set), \textcolor{blue}{pad\_width} (default «4» if any other \textcolor{blue}{pad} attributes are set) and \textcolor{blue}{pad\_char} (default «0»---the digit zero if any other \textcolor{blue}{pad} attributes are set) attributes. A \texttt{sortitem} which is neither a known bibliography sorting field nor the special «citeorder» string is treated as a literal string to add to the sorting object. Naturally, such a \texttt{sortitem} always «finds» something to add to the sorting object and so it should never have any other \texttt{sortitem}s after it within the \texttt{sort} section as they will never be considered. The «citeorder» \texttt{sortitem} value has a special meaning. It requests a sort based on the lexical order of the actual citations. For entries cited in \biblatex within the same citation command like: \begin{lstlisting}[style=latex]{} \cite{one,two} \end{lstlisting} % there is a distinction between the lexical order and the semantic order. Here «one» and «two» have the same semantic order but a unique lexical order. The semantic order only matters if you specify further sorting to disambiguate entries with the same semantic order. For example, this is the definition of the \biblatex \opt{none} sorting scheme: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] mm citeorder \end{lstlisting} % This sorts the bibliography purely lexically by the order of the keys in the citation commands. In the example above, it sorts entry «one» before «two». However, suppose that you consider «one» and «two» to have the same order (semantic order) since they are cited at the same time and want to further sort these by year. Suppose «two» has an earlier \bibfield{YEAR} than «one»: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] mm citeorder year \end{lstlisting} % This sorts «two» before «one», even though lexically, «one» would sort before «two». This is possible because the semantic order can be disambiguated by the further sorting on year. With the standard \biblatex \opt{none} sorting scheme, the lexical order and semantic order are identical because there is nothing further to disambiguate them. This means that you can use «citeorder» just like any other \texttt{sortitem} value, choosing how to further sort entries cited at the same time (in the same citation command). Both \texttt{sort} and \texttt{sortitem} elements have a mandatory \texttt{order} attribute which should start at «1» and increase for each further element. Order numbers for \texttt{sortitem} elements within a \texttt{sort} element always begin with «1» and don't increase between \texttt{sort} elements. Once a \texttt{sortitem} element has added something to the sorting object (or all \texttt{sortitem} elements within a \texttt{sort} have been processed, regardless of whether anything was added to the sort object for the entry), some attributes are applied to the information added and the next \texttt{sort} element is processed. These attributes on the \texttt{sort} element further determine how any sorting specification added by the \texttt{sortitem} elements will be used in the sorting. If the \texttt{sort} element has the \textcolor{blue}{\texttt{final}} attribute set to «1», then if any \texttt{sortitem} within the \texttt{sort} returned a non-empty string to add to the sorting object, the construction of the sorting object for the entry ceases at this point and no more \texttt{sort} elements are processed. This is used typically to make sure that master sorting keys such as those specified with the \bibfield{SORTKEY} field, if found, are the only thing used to construct the sorting object. The \texttt{sort} element may further specify that the information at \texttt{order} «\textcolor{red}{n}» should be sorted in ascending order or descending order (default «ascending»), whether case should be considered when sorting (default depends on the \biber\ \opt{sortcase} option which defaults to true) and whether uppercase characters should be sorted before lower (default depends on the \biber\ «sortupper» option which defaults to true). Finally, there are two special sorting section elements to consider. The \texttt{presort} element is mandatory and specifies a literal \textcolor{red}{string} to add to the very beginning of all sorting objects for all entries. This is useful when combined with the fact that you may specify an optional \textcolor{blue}{\texttt{type}} attribute which specifies a particular entry type for the presort \textcolor{red}{string} specified. Using this mechanism, you can sort, for example, all \bibfield{ARTICLE} entries before all \bibfield{BOOK} entries and then all other types of entry: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] aa bb mm $\vdots$ \end{lstlisting} % This makes it easy to divide a bibliography by type of entry. The optional \textcolor{blue}{\texttt{sortexclusion}} element allows you to exclude fields from consideration by \texttt{sortitem} on a per-type basis. For example, if you wanted to ignore the \bibfield{YEAR} field of any \bibfield{REPORT} entry types because they are not reliably populated with data representing a year, you could do: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] $\vdots$ year $\vdots$ \end{lstlisting} % It is much easier to see how intuitive this all is if you look at a standard sorting scheme definition. Below is the default \biblatex sorting scheme which appears in the \file{.bcf} when you run \biblatex with no \opt{sorting} option. This is fully documented and described in the \biblatex manual along with the \latex macros which generate this XML in the \file{.bcf}: \begin{lstlisting}[language=xml,escapechar=+,mathescape=true] mm presort sortkey sortname author editor translator sorttitle title sortyear year sorttitle title volume 0000 \end{lstlisting} \bigskip \subsubsection{The \texttt{nosort} option}\label{nosort} The value of the \opt{nosort} option can only be set in the config file and not on the command line. This is because the values are Perl regular expressions and would need special quoting to set on the command line. This can get a bit tricky on some OSes (like Windows) so it's safer to set them in the config file. In any case, it's unlikely you would want to set them for particular \biber\ runs; they would more likely be set as your personal default and thus they would naturally be set in the config file anyway. \opt{nosort} allows you to ignore parts of a field for sorting. This is done using Perl regular expressions which specify what to ignore in a field. You can specify as many patterns as you like for a specific field. Datasource field sets defined using \cmd{DeclareDatafieldSet} in \biblatex are also recognised as valid values and so it is possible to specify \opt{nosort} regular expressions for arbitrary sets of fields. \biblatex defines as standard two sets as shown in Table \ref{tab:nst}. \begin{table} \begin{center} \small \begin{tabular}{ll} \toprule Set & Fields\\ \midrule setnames & author\\ & afterword\\ & annotator\\ & bookauthor\\ & commentator\\ & editor\\ & editora\\ & editorb\\ & editorc\\ & foreword\\ & holder\\ & introduction\\ & namea\\ & nameb\\ & namec\\ & shortauthor\\ & shorteditor\\ & translator\\ settitles & booktitle\\ & eventtitle\\ & issuetitle\\ & journaltitle\\ & maintitle\\ & origtitle\\ & title\\ \bottomrule \end{tabular} \end{center} \caption{Default \biblatex\ datafield sets} \label{tab:nst} \end{table} For example, this option can be used to ignore some diacritic marks and prefices in names which should not be considered when sorting. Given (the default): \begin{lstlisting}[language=xml] \end{lstlisting} \noindent and the \BibTeX\ datasource entry: \begin{verbatim} AUTHOR = {{al-Hasan}, ʿAlī}, \end{verbatim} \noindent the prefix «al-» and the diacritic «ʿ» will not be considered when sorting. See the Perl regular expression manual page for details of the regular expression syntax\footnote{\url{http://perldoc.perl.org/perlre.html}}. You may specify any number of \opt{option} elements. If a \opt{nosort} option is found for a specific field, it will override any option for a type which also covers that field. Here is another example. Suppose you wanted to ignore «The» at the beginning of a \bibfield{TITLE} field when sorting, you could add this to your \verb+biber.conf+: \begin{lstlisting}[language=xml] \end{lstlisting} \noindent If you wanted to do this for all title fields listed in Table \ref{tab:nst}, then you would do this: \begin{lstlisting}[language=xml] \end{lstlisting} \noindent \textbf{Note:} \opt{nosort} can be specified for most fields but not for things like dates and special fields as that wouldn't make much sense. \bigskip \subsubsection{The \texttt{nonamestring} option}\label{nonamestring} The value of the \opt{nonamestring} option can only be set in the config file and not on the command line. \opt{nonamestring} allows you to ignore parts of a name field when generating hashes and uniquename information. This is done using Perl regular expressions which specify what to ignore in a field. You can specify as many patterns as you like for a specific name field. Datasource field sets defined using \cmd{DeclareDatafieldSet} in \biblatex are also recognised as valid values, see \cmd{DeclareNosort} above. However, only sets of name list fields are valid for this command as it only applies to name fields. For example, this option can be used to ignore square brackets when authors are given in variations like «D[onald] Knuth» as well as «Donald Knuth»: \begin{lstlisting}[language=xml] \end{lstlisting} This will strip square brackets from author names so that the name variants will count as the same for hashing and uniqueness generation. It will often be useful to apply the same regular expression in \opt{nonamstring} for consistency. You may specify any number of \opt{option} elements. \bigskip \subsubsection{The \texttt{collate-options} option} The \opt{collate-options} option has format similar to \opt{nosort}. See Section \ref{coll} for details about the option, here is an example of a config file setting: \begin{lstlisting}[language=xml] \end{lstlisting} \bigskip \subsection{Unicode} \biber uses NFD UTF-8 internally. All data is converted to NFD UTF-8 when read. If UTF-8 output is requested (to \file{.bbl} for example), the UTF-8 will always be NFC. \bigskip \subsection{Input/Output File Locations} \subsubsection{Control file}\label{loc:cf} The control file is normally passed as the only argument to \biber. It is searched for in the following locations, in decreasing order of priority:\\[2ex] \noindent Absolute filename $\rightarrow$\\ \hspace*{1em}In the \opt{--input-directory}, if specified$\rightarrow$\\ \hspace*{2em}In the \opt{--output-directory}, if specified and \opt{--input-directory} is not specified$\rightarrow$\\ \hspace*{3em}Relative to current directory$\rightarrow$\\ \hspace*{4em}Using \verb+kpsewhich+, if available \subsubsection{Data sources} Local datasources of type «file» are searched for in the following locations, in decreasing order of priority:\\[2ex] \noindent Absolute filename $\rightarrow$\\ \hspace*{1em}In the \opt{--input-directory}, if specified$\rightarrow$\\ \hspace*{2em}In the \opt{--output-directory}, if specified and \opt{--input-directory} is not specified$\rightarrow$\\ \hspace*{3em}Relative to current directory$\rightarrow$\\ \hspace*{4em}In the same directory as the control file$\rightarrow$\\ \hspace*{5em}Using \verb+kpsewhich+ for supported formats, if available\\[2ex] \noindent Remote file datasources (beginning with \verb+http://+, \verb+https://+ or \verb+ftp://+) are retrieved to a temp file and processed as normal. Users do not specify explicitly the bibliography database files; they are passed in the \verb+.bcf+ control file, which is constructed from the \biblatex\ «\verb+\addbibresource{}+» macros. \subsection{Logfile} By default, the logfile for \biber\ will be named \verb+\jobname.blg+, so, if you run \begin{verbatim} biber test.bcf \end{verbatim} \noindent then the logfile will be called «\verb+test.blg+». Like the \verb+.bbl+ output file, it will be created in the \opt{--output-directory|-c}, if this option is defined. You can override the logfile name by using the \opt{--logfile} option: \begin{verbatim} biber --logfile=lfname test.bcf \end{verbatim} \noindent results in a logfile called «\verb+lfname.blg+».\\ \noindent \textbf{Warning}: be careful if you are expecting \biber\ to write to directories which you don't have appropriate permissions to. This is more commonly an issue on non-Windows OSes. For example, if you rely on \verb+kpsewhich+ to find your database files which are in system \TeX\ directories, you may well not have write permission there so \biber\ will not be able to write the \verb+.bbl+. Use the \opt{--output-file|-O} option to specify the location to write the \verb+.bbl+ to in such cases. \subsection{Collation and Localisation}\label{coll} \biber\ takes care of collating the bibliography for \biblatex. It writes entries to the \verb+.bbl+ file sorted by a completely customisable set of rules which are passed in the \verb+.bcf+ file by \biblatex. \biber\ uses the Perl \verb+Unicode::Collate+ module for collation which implements the full UCA (Unicode Collation Algorithm). It also has CLDR (Common Locale Data Repository) tailoring to deal with cases which are not covered by the UCA. The locale used for collating a particular field in the bibliography is determined by the following resource chain which is given in decreasing precedence order:\\[2ex] \noindent\opt{--collate-options|-c} (e.g. \opt{-c 'locale => "de\_DE"'}) $\rightarrow$\\ \hspace*{1em}\opt{--sortlocale|-l} $\rightarrow$\\ \hspace*{2em}\biblatex per-sortset \opt{locale} option $\rightarrow$\\ \hspace*{3em}\biblatex per-sortscheme \opt{locale} option$\rightarrow$\\ \hspace*{4em}\biblatex global sortlocale option\\ \noindent The locale will be used to look for a collation tailoring for that locale. It will generate an informational warning if it finds none. This is not a problem as most standard collation cases are covered by the standard UCA and many locales neither have nor need any special collation tailoring. \biblatex passes sortscheme-specific sorting locales and its global sorting locale in the \file{.bcf}. \biber uses these locales automatically to tailor sorting at various levels of granularity (see \biblatex docs for the \cmd{DeclareSortingScheme} macro). \biblatex can be configured to automatically pass as locale the language setting from Babel or Polyglossia in which case \biber tries to match this to a sensible locale. See the Appendix, section \ref{localemap} for the mapping. If you want to sort using a specific locale not listed in \ref{localemap}, specify this locale exactly in your \latex source as the \biblatex \opt{sortlocale} option, as the optional argument to \cmd{DeclareSortingScheme} macro or as an optional argument to the \biblatex \cmd{sort} macro according to the desired granularity. For example, if you want to use traditional Spanish for sorting a reference list, you need to specify \verb+es_ES_trad+ directly instead of using the «spanish» string because the Babel/Polyglossia «spanish» language identifier by default maps to the modern \verb+es_ES+ locale (which doesn't include sort tailoring for «ch» in Spanish). Collation is by default case sensitive. You can turn this off globally using the \biber\ option \opt{--sortcase=false} or from \biblatex\ using its option\linebreak[4]\opt{sortcase=false}. The option can also be defined per-field so you can sort some fields case sensitively and others case insensitively. See the \biblatex\ manual. By default, \biber\ collates uppercase before lower. You can reverse this globally for all sorting using the \biber\ option \opt{--sortupper=false} or from\linebreak[4]\biblatex\ by using its option \opt{sortupper=false}. The option can also be defined per-field so you can sort some fields uppercase before lower and others lower before upper. See the \biblatex\ manual. Be aware though that some locales rightly enforce a particular setting for this (for example, Danish). You will be able to override it but \biber\ will warn you if you do. There are in fact many options to \verb+Unicode::Collate+ which can tailor the collation in various ways in addition to the locale tailoring which is automatically performed. Users should see the the documentation to the module for the various options, most of which the vast majority of users will never need\footnote{For details on the various options, see \url{http://search.cpan.org/search?query=Unicode\%3A\%3ACollate&mode=all}}. Options are passed using the \opt{--collate-options|-c} option as a single quoted string, each option separated by comma, each key and value separated by «\verb+=>+». See examples. \textbf{Note:} \biber\ sets the Unicode collation option «variable» to «non-ignorable». Effectively, this means that punctuation is not ignored when sorting. The default setting is to ignore such «variable weight» elements. Sorting bibliographies is slightly more specialised than collating general text and punctuation often matters. In case you want the UCA default behaviour, see examples. Since \biber always normalises into NFD when reading data in, no normalisation is requested with Unicode collation («normalization» option is set to «prenormalized» by default) as this saves some time. \subsubsection{Examples} \biberex{biber} \noindent Call \biber\ using all settings from the \verb+.bcf+ generated from the \latex\ run. Case sensitive UCA sorting is performed taking the locale for tailoring from the \file{.bcf} if \biber's \opt{sortlocale} option is not used to override the \verb+.bcf+ \biberex{biber --sortlocale=de_DE_phonebook} \noindent Override any locale setting in the \verb+.bcf+ \biberex{biber --sortcase=false} \noindent Case insensitive sorting. \biberex{biber --sortupper=false --collate-options="backwards => 2"} \noindent Collate lowercase before upper and collate French accents in reverse order at UCA level 2. \biberex{biber --collate-options="variable => 'shifted'"} \noindent Use the UCA default setting for variable weight punctuation (which is to ignore it for sorting, effectively). \subsection{Encoding of files}\label{ref:enc} \biber\ takes care of re-encoding the datasource data as necessary. In normal use, \biblatex\ passes its \opt{bibencoding} option value to \biber\ via the \verb+.bcf+ file and this corresponds to the \biber \opt{--input-encoding|e} option. \biblatex also passes the value of its \opt{texencoding} option (which maps to \biber's \opt{--output-encoding|-E} option) the default value of which depends on which \TeX\ engine and encoding packages you are using (see \biblatex\ manual for details). \noindent \biber\ performs the following tasks: \begin{enumerate} \item Decodes the datasource into UTF-8 if it is not UTF-8 already \item Decodes \latex\ character macros in the datasource into UTF-8 \item Encodes the output so that the \verb+.bbl+ is in the encoding that \opt{--output-encoding|-E} specifies \item Warns if it is asked to output to the \verb+.bbl+ any UTF-8 decoded \latex\ character macros which are not in the \opt{--output-encoding|-E} encoding. Replaces with a suitable \latex\ macro \end{enumerate} \noindent Normally, you do not need to set the encoding options on the \biber\ command line as they are passed in the \verb+.bcf+ via the information in your \biblatex\ environment. However, you can override the \verb+.bcf+ settings with the command line. The resource chain for encoding settings is, in decreasing order of preference:\\[2ex] \noindent\opt{--input-encoding|-e} and \opt{--output-encoding|-E} $\rightarrow$\\ \hspace*{1em}\biber\ config file $\rightarrow$\\ \hspace*{2em}\verb+.bcf+ control file \subsubsection{\latex\ macro decoding}\label{ldecode} \noindent As mentioned above, \biber\ always converts as much as possible, including \latex\ character macros, into UTF-8. This is important for two main reasons. Firstly, this allows you to have, for example: \begin{lstlisting}[style=bibtex, columns=fixed]{} @BOOK{key1, Author = {\"{O}leg Smith} } @BOOK{key2, Author = {Öleg Smith} } \end{lstlisting} % Here, because \biber decodes the macros into UTF-8, it knows that both books are by the same author because it's clear that the names are now the same. Secondly, this allows \biber to output normalised latex macros when a user selects \opt{--output-encoding=ascii} etc. This means that the many \biblatex comparison macros used in styles can deal with comparisons of fields containing macros reliably. The macro to UTF-8 conversion uses the decoding set specified with the \opt{--decodecharsset}, see below. To disable all macro to UTF-8 conversion, you can specify the virtual «null» set as a value for \opt{--decodecharsset} or \opt{output-safecharsset}. This effectively turns off macro to UTF-8 decoding or encoding respectively. If you are using PDF\latex\ and \verb+\usepackage[utf8]{inputenc}+, it is possible that the UTF-8 characters resulting from \biber's internal \latex\ character macro decoding break \verb+inputenc+. This is because \verb+inputenc+ does not implement all of UTF-8, only a commonly used subset. An example--if you had \verb+\DJ+ in your \verb+.bib+ datasource, \biber\ decodes this correctly to «Đ» and this breaks \verb+inputenc+ because it doesn't understand that UTF-8 character. The real solution here is to switch to a \TeX\ engine with full UTF-8 support like \XeTeX\ or Lua\TeX\ as these don't use or need \verb+inputenc+. However, you can also try the \opt{--output-safechars} option which will try to convert any UTF-8 chars into \latex\ macros on output. For information on the \opt{--output-safechars} option, see section \ref{lencode}. \bigskip \subsubsection{\latex\ macro encoding}\label{lencode} The opposite of decoding; converting UTF-8 characters into \latex\ macros. You can force this with the \opt{--output-safechars} option which will do a generally good job of making your \verb+.bbl+ plain ASCII. It can be useful in certain edge cases where your bibliography introduces characters which can't be handled by your main document. See section \ref{ldecode} above for an example of such a case. A common use case for \latex\ macro encoding is when the bibliography datasource is not ASCII but the \verb+.tex+ file is and so this case is automated for you: if the \biblatex\ option «\opt{texencoding}» (which corresponds to the \biber\ option «\opt{--output-encoding|-E}») is set to an ASCII encoding («\verb+ascii+» or «\verb+x-ascii+») and «\opt{--input-encoding|-e}» is not ASCII, \biber\ will automatically set \opt{--output-safechars}. Since \biber always decodes into UTF-8 internally, if the \opt{--output-encoding|-E} option is not set to UTF-8, \biber will automatically replace any characters which will not encode in the output encoding with equivalent \tex macros. You will also receive a warning about this. See also the \opt{biber --help} output for the \opt{--output-safecharsset} and \linebreak[4]\opt{--decodecharsset} options which can customise the set of conversion rules to use. The builtin sets of characters and macros which \biber\ maps during encoding and decoding are documented\footnote{\url{https://sourceforge.net/projects/biblatex-biber/files/biblatex-biber/current/documentation/utf8-macro-map.html}}. It is possible to provide a customised encode/decode mapping file using the \opt{--recodedata} option. It must adhere to the format of the default data file for reencoding which is \file{recode\_data.xml} located in the same Perl install directory as \biber's \file{Recode.pm} module. Of course it is easier to find this in the \biber\ source tree. It is most likely that if you want to use a custom mapping file, you would copy the default file and edit it, removing some things and perhaps defining some custom recoding sets for use with \opt{--output-safecharsset} and \opt{--decodecharsset}. Be careful to classify the entries using the correct «type» attribute in the XML file as this determines how the macro is treated by the code that does the replacement. Just copy a similar type of macro from the default recoding data file if you are adding new entries, which is unlikely as the file is quite comprehensive. There is only one other thing to note. The «preferred» attribute tells \biber\ to use a specific \latex\ macro when mapping from UTF-8, just in case there is more than one mapping from UTF-8 for a particular character. It's unlikely you will need to use this. \bigskip \subsubsection{Examples} \biberex{biber} \noindent Set \opt{input-encoding} and \opt{output-encoding} from the config file or \verb+.bcf+ \biberex{biber --output-encoding=latin2} \noindent Encode the \verb+.bbl+ as latin2, overriding the \verb+.bcf+ \biberex{biber --output-safechars} \noindent Set \opt{input-encoding} and \opt{output-encoding} from the config file or \verb+.bcf+. Force encoding of UTF-8 chars to \latex\ macros using default conversion set \biberex{biber --output-encoding=ascii} \noindent Encode the \verb+.bbl+ as ascii, overriding the \verb+.bcf+. Automatically sets \opt{--output-safechars} to force UTF-8 to \latex\ macro conversion \biberex{biber --output-encoding=ascii --output-safecharsset=full} \noindent Encode the \verb+.bbl+ as ascii, overriding the \verb+.bcf+. Automatically sets \opt{--output-safechars} to force UTF-8 to \latex\ macro conversion using the full set of conversions \biberex{biber --decodecharsset=full} \noindent Set \opt{input-encoding} and \opt{output-encoding} from the config file or \verb+.bcf+. Use the full \latex\ macro to UTF-8 conversion set because you have some more obscure character macros in your \verb+.bib+ datasource which you want to sort correctly \biberex{biber --recodedata=/tmp/recode.xml --decodecharsset=special} \noindent Specify a user-defined reencoding data file which defines a new reencoding set «special» and use this set for decoding \latex\ macros to UTF-8. \biberex{biber -u} \noindent Shortcut alias for \opt{biber --input-encoding=UTF-8} \biberex{biber -U} \noindent Shortcut alias for \opt{biber --output-encoding=UTF-8} \subsection{List and Name Separators} With traditional \bibtex, the name and list field separator «and» is hard-coded. The \texttt{btparse} C library and therefore \biber\ allows the use of any fixed string, subject to the same rules as «and» (not at the beginning or end of the name/list, whitespace must surround the string etc.). This is settable using the options \opt{listsep} and \opt{namesep}, both of which default to the usual «and». You can also change the default final name in a list which implies «et al». In \bibtex, this is by default the English «others» which is the \biber\ default also. Don't try to put any whitespace in these strings, this is ignored by \texttt{btparse} anyway. Perhaps you prefer your \file{.bib} in more obvious German---set \opt{--namesep=und} and \opt{--others-string=andere} and then you can do: \begin{verbatim} @BOOK{key, AUTHOR = {Hans Harman und Barbara Blaupunkt und andere}, } \end{verbatim} \noindent Bear in mind that these are global settings and apply to all entries in the \bibtex\ data format read by \biber. Also bear in mind that this is very unportable as all \bibtex\ input/output programs rely on the hard-coded «and» and «others». Hopefully this will change as these two hard-coded English terms look really rather bad in the context of multilingual bibliographies. \bigskip \subsection{Extended Name Format} \label{biber:xname} The parsing rules for \bibtex names are rather archaic and not suited to many international name formats. \biber supports an extended name format which allows explicit specification of the parts of names. This allows the use of custom name parts apart from the four standard \bibtex parts. Extended name formats are supported in all name fields and can be used along with the usual \bibtex name format. Recognition of extended name format can be disabled with the \biber option \opt{--noxname} in case you do not need the extended format and the auto-detection causes problems with normal name parsing. The separator \verb+=+ which comes between the namepart names and values is customisable with the \biber option \opt{--xnamesep}. Here is an example: \begin{verbatim} AUTHOR = {Hans Harman and Simon de Beumont} AUTHOR = {given=Hans, family=Harman and given=Simon, prefix=de, family=Beumont} \end{verbatim} % These two name specifications are equivalent but the extended format explicitly names the parts. The supported parts are those specified by the \biblatex data mode constant \opt{nameparts}, the default value of which is: \begin{verbatim} \DeclareDatamodelConstant[type=list]{nameparts}{prefix,family,suffix,given} \end{verbatim} % As with traditional \bibtex name parsing, initials are automatically generated but it is also possible to specify these explicitly: \begin{verbatim} AUTHOR = {given=Jean, prefix=de la, prefix-i=d, family=Rousse} AUTHOR = {given={Jean Pierre Simon}, given-i=JPS} \end{verbatim} % Initials are specified by adding the suffix \verb+-i+ to the namepart name. Compound parts may be protected with braces: \begin{verbatim} AUTHOR = {given={Jean Pierre}} \end{verbatim} % If a namepart contains a comma, the whole namepart should be protected with quotes: \begin{verbatim} AUTHOR = {"family={Robert and Sons, Inc.}"} \end{verbatim} % Traditional \bibtex name formats and the extended form may be used together: \begin{verbatim} AUTHOR = {Hans Harman and given=Simon, prefix=de, family=Beumont} \end{verbatim} % Per-namelist and per-name options may be specified in the extended name format: \begin{verbatim} AUTHOR = {namelistopt=true and Hans Harman and given=Simon, family=Beumont, nameopt=true} \end{verbatim} \bigskip \subsection{Editor Integration} Visit \url{http://tex.stackexchange.com/questions/154751/} for a comprehensive overview on \biber integration in most editors. \subsection{BibTeX macros and the \texttt{MONTH} field} \BibTeX\ defines macros for month abbreviations like «\verb+jan+», «\verb+feb+» etc. \biber\ also does this, defining them as numbers since that is what \biblatex\ wants. In case you are also defining these yourself (although if you are only using \biblatex, there isn't much point), you will get macro redefinition warnings from the \verb+btparse+ library. You can turn off \biber's macro definitions to avoid this by using the option \opt{--nostdmacros}. \biber\ will look at any \bibfield{MONTH} field in a \BibTeX\ data source and if it's not a number as \biblatex\ expects (because it wasn't one of the macros as mentioned above or these macros were disabled by \opt{--nostdmacros}), it will try to turn it into the right number in the \verb+.bbl+. If you only use \biblatex\ with your \BibTeX\ datasource files, you should probably make any \bibfield{MONTH} fields be the numbers which \biblatex\ expects. \subsection{\biber\ datasource drivers}\label{dsd} \biber\ uses a modular datasource driver model to provide access to supported datasources. The drivers are responsible for mapping driver entrytypes and fields to the \biblatex\ data model according to a data model specification in the \biblatex\ file \file{blx-dm.def}. The data model can be changed using \biblatex\ macros in case you would like to, for example, use your own entrytype or field names or perhaps have \biber\ do some validation on your datasources (see the \biblatex\ manual). Data model mapping is an imprecise art and the drivers are the necessarily the most messy parts of \biber. Most datasource models are not designed with typesetting in mind and are usually not fine-grained enough to provide the sorts of information that \biblatex\ needs. \biber\ does its best to obtain as much meaningful information from a datasource as possible. Currently supported datasources drivers are: \begin{itemize} \item \BibTeX\ --- \BibTeX\ data files \item \verb+biblatexml+ --- Experimental \biblatex\ XML format \end{itemize} \subsection{Visualising the Output}\label{ref:vis} The option \opt{--output-format=dot} will cause \biber\ to write a GraphViz\footnote{\url{http://www.graphviz.org}} \verb+.dot+ file instead of a \verb+.bbl+. This file graphs the bibliographic data as it exists after all processing. You can transform this file using the \verb+dot+ program from GraphViz to generate a high quality graphical representation of the data in a format of your choice. A good output format choice with \verb+dot+ is SVG\footnote{Scalable Vector Graphics} which can be viewed in any modern web browser. This format has the advantage of tooltips and \biber\ uses these to give you more information on connections between entries: hover the cursor on an arrow in the output and it will tell you what it means. To output in SVG, use this command after installing GraphViz: \begin{verbatim} dot -Tsvg .dot -o .svg \end{verbatim} \noindent The \opt{--dot-include} option takes a comma delimited string as argument. The elements of this string define the information to include in the \verb+.dot+ output graph. The valid sub-options are shown in Table \ref{tab:graphopts}. If the \opt{--dot-include} option is not given then the default setting is implicitly used, which is: \begin{verbatim} --dot-include=crossref,section,xdata,xref \end{verbatim} \begin{table} \begin{center} \small \begin{tabular}{ll} \toprule Sub-option & Description\\ \midrule crossref & Show crossreference relationships\\ field & Show fields within entries\\ related & Show related entries and clones\\ section & Show sections\\ xdata & Show XDATA relationships\\ xref & Show XREF relationships\\ \bottomrule \end{tabular} \end{center} \caption{Valid sub-options for the \texttt{dot-include} option} \label{tab:graphopts} \end{table} \begin{figure}[!htpb] \centering\small \begin{tikzpicture} \node[rectangle, black, draw=black, fill=centry, align=center] (centry) { ()\\\\Cited entry}; \node[rectangle, black, draw=black, fill=ncentry, align=center] (ncentry) [right of=centry, node distance=11em] { ()\\\\Uncited entry}; \node[rectangle, black, draw=black, fill=doentry, align=center] (doentry) [right of=ncentry, node distance=11em] { ()\\\\dataonly entry}; \node[rectangle, black, draw=black, fill=section, align=center] (section) [below of=centry, node distance=5em] {Section \\\\Section}; \node[rectangle, black, draw=black, fill=set, align=center] (set) [right of=section, node distance=11em] { (SET)\\\\Entry set}; % CROSSREF \node[black] (cr1) [below of=section, node distance=6em] {A}; \node[black] (cr2) [right of=cr1, node distance=20em] {B}; \path (cr1) edge [->, color=crossref, very thick] node[auto, black] {B inherits by CROSSREF from A} (cr2); % XREF \node[black] (xr1) [below of=cr1, node distance=5em] {A}; \node[black] (xr2) [right of=xr1, node distance=20em] {B}; \path (xr1) edge [->, color=xref, style=dashed, very thick] node[auto, black] {B inherits by XREF from A} (xr2); % XDATA \node[black] (xd1) [below of=xr1, node distance=5em] {A}; \node[black] (xd2) [right of=xd1, node distance=20em] {B}; \path (xd1) edge [->, color=xdata, very thick] node[auto, black] {B inherits by XDATA from A} (xd2); % RELATED \node[black] (re1) [below of=xd1, node distance=5em] {A}; \node[black] (re2) [right of=re1, node distance=20em] {B}; \path (re1) edge [->, color=related, very thick] node[auto, black] {A is a related entry of B} (re2); % CLONE \node[black] (c1) [below of=re1, node distance=5em] {A}; \node[black] (c2) [right of=c1, node distance=20em] {B}; \path (c1) edge [->, color=clone, style=dashed, very thick] node[auto, black] {B is a clone of A} (c2); \end{tikzpicture} \caption{Key to \texttt{.dot} output format} \label{fig:graphkey} \end{figure} \bigskip \subsection{The Data Model}\label{ref:datamodel} The data model used by \biblatex to describe the allowable entry types, entry fields and their types is passed in the \file{.bcf} from \biblatex and is defined via macros which can be used to extend or change the data model. You may want to use a modified data model more generally and in this case you can define the datamodel or changes to the default data model in the \biber config file. Essentially, instead of changing the datamodel on a per-document basis using \TeX\ macros in your document, you define the datamodel changes in XML in the \biber config file. This is a matter of choice and/or convenience since the datamodel \TeX\ macro interface simply results in XML definitions in the \opt{.bcf} anyway and these latter are overriden by the XML definitions in the \biber config file. For example, to add a new name list field \bibfield{DIRECTOR} to \bibfield{VIDEO} entry types, you can either use the \biblatex macros \cmd{DeclareDatamodelFields} and \cmd{DeclareDatamodelEntryfields} in your document or put the following \opt{datamodel} section in your config file: in your \biber config file: \begin{lstlisting}[language=xml] director video director \end{lstlisting} \bigskip \subsection{Tool Mode}\label{ref:tool} \biber\ can run in «tool» mode which is enabled with the \opt{--tool} command-line only option. In this mode, \biber is called: \opt{biber --tool }. Tool mode is a datasource rather than document oriented mode intended for transformations and modifications of datasources. It does not read a \file{.bcf} but instead, it reads all entries from the file «datasource», applies any changes specified in the command-line options and \biber\ config file and writes the resulting datasource out to a new file, defaulting to a \bibtex file called «\file{\_bibertool.bib}» if the options \opt{--output-file} and \opt{--output-format} are not specified. Tool mode is useful if you need to programatically change your datasource using the semantics provided by \biber or if you would like to convert your data to a different format. For example, you could choose to reencode your datasource by turning all UTF-8 characters into \latex\ macros: \begin{verbatim} biber --tool --output-encoding=ascii file.bib \end{verbatim} \noindent This would output a copy of \file{file.bib} called \file{file\_bibertool.bib} with all UTF-8 chars changed to \latex macros (because when the output is ASCII and the input encoding is not (it is by default UTF-8), then the \opt{--output-safechars} option is automatically enabled). If you utilise the \biber\ config file, you can set up a complex set of mappings to transform your datasource however you wish in a semantic manner much more robust than just textual search/replace. You can also use the \opt{--output-resolve} meta-option which will process any \bibfield{XDATA} fields/entries, entry aliases and inheritance rules mentioned in the config file (see below). Sometimes, you might wish to output fields which are \bibtex macros, that is, you might want this: \begin{lstlisting}[style=bibtex, columns=fixed]{} @Entrytype{key, Field = something, } \end{lstlisting} % instead of this: \begin{lstlisting}[style=bibtex, columns=fixed]{} @Entrytype{key, Field = {something}, } \end{lstlisting} % That is, you might not want the output field in braces or quotes as this prevents \bibtex interpreting the field value as a macro. Use the \opt{--output-macro-fields} option to specify a comma-separated list of fields whose values you wish to output without any \bibtex quoting. You can have spaces between the items in the field list but then you must enclose the whole option value in quotes. For example, these two will do the same thing: \begin{verbatim} biber --tool --output-macro_fields=month,publisher biber --tool --output-macro_fields='month, publisher' \end{verbatim} Tool mode also allows some reformatting of the \file{.bib} file. The option \opt{--output-fieldcase} can be used to force the entrytype and fieldnames to upper, lower or title case. The option \opt{--tool-indent} can be used to customise the indentation of fields. The option \opt{output-align} can be used to align all field values neatly. See the \biber\ \opt{--help} output for documentation and defaults. For example, the command: \begin{verbatim} biber --tool --output-fieldcase=title --output-indent=4 \ --output-align file.bib \end{verbatim} % results in \file{.bib} entries which look like this: \begin{lstlisting}[style=bibtex, columns=fixed]{} @Entrytype{key, Author = {...}, Title = {...}, Publisher = {...}, Year = {...}, } \end{lstlisting} % another example: \begin{verbatim} biber --tool --output-fieldcase=upper --output-indent=2 file.bib \end{verbatim} % results in entries like this: \begin{lstlisting}[style=bibtex]{} @ENTRYTYPE{key, AUTHOR = {...}, TITLE = {...}, PUBLISHER = {...}, YEAR = {...}, } \end{lstlisting} % Here is an example using the \biber config file to specify all options. This example uses tool mode to reformat the \file{.bib} and also to do some transformations using the source map functionality. Suppose \file{test.bib} contains the following: \begin{lstlisting}[style=bibtex]{} @book{book1, author = {Doe,J.P.}, title = {Ökologische Enterprises}, year = {2013} } \end{lstlisting} % Further suppose that the \file{biber-tool.conf} contains the following: \begin{lstlisting}[language=xml,escapechar=;,mathescape=true] title ascii 1 \end{lstlisting} % Now you can run \biber like this: \begin{verbatim} biber --tool --configfile=biber-tool.conf test.bib \end{verbatim} % The result will be in \file{test\_bibertool.bib} and will look like this: \begin{lstlisting}[style=bibtex, columns=fixed]{} @Book{book1, Author = {Doe, John Paul}, Title = {\"{O}kologische Enterprises}, Year = {2013}, } \end{lstlisting} % Tool mode is a versatile way of performing many different operations on a \file{.bib} file. By using the config file and tool mode, we have: \begin{itemize} \item Consistently indented and aligned the entry, normalising fields and entrytype to title case \item Normalised the \bibfield{AUTHOR} field name using regular expressions \item Converted UTF-8 characters to \latex macros, and made the output pure ASCII \end{itemize} If you do not specify any configuration file to use in tool mode, \biber will by default look for a config file in the usual way (see section \ref{conffile}) with the only difference that if no config file is found, it will use the default \file{biber-tool.conf} which is located in the \biber install tree in the same location as the \file{Config.pm} file. This default config file contains the default \biblatex source mappings for \bibtex datasources and also the default inheritance rules for \bibfield{CROSSREF} processing. This means that when you use the \opt{--output-resolve} meta-option, inheritance processing is performed on the entries and the results of this are «materialised» in the output. For example, consider a \file{test.bib} file: \begin{lstlisting}[style=bibtex, columns=fixed]{} @BOOK{xd1, AUTHOR = {Edward Ellington}, DATE = {2007}, XDATA = {macmillanalias} } @XDATA{macmillan, IDS = {macmillanalias}, XDATA = {macmillan:pubALIAS, macmillan:loc} } @XDATA{macmillan:pub, IDS = {macmillan:pubALIAS}, PUBLISHER = {Macmillan} } @XDATA{macmillan:loc, LOCATION = {New York and London}, NOTE = {A Note} } @BOOK{b1, TITLE = {Booktitle}, CROSSREF = {mvalias} } @MVBOOK{mv1, IDS = {mvalias}, TITLE = {Maintitle}, SUBTITLE = {Mainsubtitle}, TITLEADDON = {Maintitleaddon} } \end{lstlisting} % Running \biber as: \begin{verbatim} biber --tool --output-resolve test.bib \end{verbatim} % The result of this would be a file \file{test\_bibertool.bib} with contents: \begin{lstlisting}[style=bibtex, columns=fixed]{} @BOOK{xd1, AUTHOR = {Edward Ellington}, DATE = {2007}, LOCATION = {New York and London}, NOTE = {A Note}, PUBLISHER = {Macmillan}, } @XDATA{macmillan, LOCATION = {New York and London}, NOTE = {A Note}, PUBLISHER = {Macmillan}, } @XDATA{macmillan:pub, PUBLISHER = {Macmillan}, } @XDATA{macmillan:loc, LOCATION = {New York and London}, NOTE = {A Note}, } @BOOK{b1, MAINSUBTITLE = {Mainsubtitle}, MAINTITLE = {Maintitle}, MAINTITLEADDON = {Maintitleaddon}, TITLE = {Booktitle}, } @MVBOOK{mv1, SUBTITLE = {Mainsubtitle}, TITLE = {Maintitle}, TITLEADDON = {Maintitleaddon}, } \end{lstlisting} % Notice here that: \begin{itemize} \item \bibfield{XDATA} references have been resolved completely for entry \texttt{xd1} \item \bibfield{CROSSREF} inheritance has been resolved according to the default \biblatex inheritance rules for entry \texttt{b1} \item Entry key aliases have been resolved as required in order to perform these tasks \end{itemize} Tool mode can also be used to convert between datasource formats. For example, if you wish to covert a \bibtex format data file to the experimental \texttt{biblatexml} XML format, you can do: \begin{verbatim} biber --tool --output-format=biblatexml file.bib \end{verbatim} \noindent This will output a file \file{file\_bibertool.bltxml} by default. The applicability of the various output options depends on the output format as shown in table \ref{tab:outopts} where dash means that the options has no relevance for the output format. The order of the fields when writing \bibtex data is controlled by the \opt{--output-field-order} option. This is a comma-separated list of fields or field classes and fields will be output to entries in the order specified. Any unspecified fields will be output in sorted order after the specified fields. The field classes are: \begin{description} \item[names] All name fields \item[lists] All non-name list fields \item[dates] All date fields \end{description} % For the default value, run \biber with the \opt{--help} option and see the documentation for the option. \opt{--output-listsep}, \opt{output-namesep} and \opt{output-xnamesep} can be used to customise separators on output and their default values are the same as their input option counterparts \opt{--listsep}, \opt{--namesep} and \opt{--xnamesep}. The option \opt{--output-xname} can be used to specify that the extended name format (see section \ref{biber:xname}) is to be used to output names. \opt{--output-annotation-marker} and \opt{--output-named-annotation-marker} can be used to specify the annotation markers to write for annotated fields on output. See the Data Annotation feature documentation in the \biblatex manual. \begin{table} \begin{center} \small \begin{tabular}{lllll} \toprule & \multicolumn{4}{c}{\emph{Output format}}\\ \emph{Option} & bibtex & biblatexml & bbl & dot\\ \midrule output-align & \checkmark & - & - & -\\ output-annotation-marker & \checkmark & - & - & -\\ output-named-annotation-marker & \checkmark & - & - & -\\ output-indent & \checkmark & \checkmark & - & -\\ output-field-order & \checkmark & - & - & -\\ output-fieldcase & \checkmark & - & - & -\\ output-listsep & \checkmark & - & - & -\\ output-macro-fields & \checkmark & - & - & -\\ output-namesep & \checkmark & - & - & -\\ output-resolve-xdata & \checkmark & \checkmark & - & -\\ output-resolve-crossrefs & \checkmark & \checkmark & - & -\\ output-resolve-sets & \checkmark & \checkmark & - & -\\ output-xdatamarker & \checkmark & - & - & -\\ output-xdatasep & \checkmark & \checkmark & - & -\\ output-xname & \checkmark & - & - & -\\ output-xnamesep & \checkmark & - & - & -\\ \bottomrule \end{tabular} \end{center} \caption{Applicability of the output options} \label{tab:outopts} \end{table} \bigskip \subsubsection{Customising the Tool Mode Data Model} The default \file{biber-tool.conf} contains the default data model specification. You may add to or override the default data model by using your own config file via the \opt{--configfile|-g} option. The data model in the default \file{biber-tool.conf} will be read and then any datamodel section in your config file will be read, taking precedence over the default settings. There is no need to include a complete data model in your own config file--the \file{biber-tool.conf} provides a base. Naturally, for complex changes to the the default data model, then you may wish to include a complete data model in your config file. Use the \opt{--tool-config} option to show the location of the default tool mode config file which includes the definition of the complete data model. \subsubsection{Customising Tool Mode Inheritance Resolution} The default \file{biber-tool.conf} contains, as mentioned above, the default \biblatex \bibfield{CROSSREF} inheritance setup and \bibtex source mappings so that tool mode resolution works as expected. Of course it is possible to customise these. In \biblatex, this is accomplished by the \cmd{DeclareDataInheritance} macros which write appropriate XML into the \file{.bcf} file. Since no \file{.bcf} file is used in tool mode, the desired configuration must be put into a \biber config file. The source mapping XML specification is given in section \ref{ref:map}. The inheritance XML specification is given in section \ref{inheritance}. It is recommended to copy the default \file{biber-tool.conf} file, modify this and then use it as your own \file{biber.conf} file or pass it explicitly using the \opt{--configfile|-g} option. You can determine the location of the default tool mode config file by using the \opt{--tool-config} option which will show you the location of the config file and exit. \subsubsection{Customising Tool Mode Sorting} A sorting scheme called «tool» can be defined in the config file in order to sort the entries in tool mode output. See section \ref{sorting} for the format of the config file sorting specification. By default, in tool mode the sorting scheme is the same as the \biblatex \texttt{none} scheme, that is, no sorting is performed. The sorting locale in tool mode defaults to «\texttt{en\_US}» if you do not use \biber's \opt{sortlocale} option. \bigskip \section{Binaries}\label{binaries} \biber\ is a Perl application which relies heavily on quite a few modules. It is packaged as a stand-alone binary using the excellent \verb+PAR::Packer+ module which can pack an entire Perl tree plus dependencies into one file which acts as a stand-alone binary and is indistinguishable from such to the end user. You can also simply download the Perl source and run it as a normal Perl program which requires you to have a working Perl 5.24+ installation and the ability to install the pre-requisite modules. You would typically only do this if you wanted to keep up with all the bleeding-edge git commits before they had been packaged as a binary. Almost all users will not want to do this and should use the binaries from their \TeX\ distribution or downloaded directly from SourceForge in case they need to use a more recent binary than is included in their \TeX\ distribution. The binary distributions of \biber\ are made using the Perl \verb+PAR::Packer+ module. They can be used as a normal binary but have some behaviour which is worth noting: \begin{itemize} \item Don't be worried by the size of the binaries. \verb+PAR::Packer+ essentially constructs a self-extracting archive which unpacks the needed files first. \item On the first run of a new version (that is, with a specific hash), they actually unpack themselves to a temporary location which varies by operating system. This unpacking can take a little while and only happens on the first run of a new version. \textbf{Please don't kill the process if it seems to take some time to do anything on the first run of a new binary}. If you do, it will not unpack everything and it will almost certainly break \biber. You will then have to delete your binary cache (see section \ref{bc} below) and re-run the \biber\ executable again for the first time to allow it to unpack properly. \end{itemize} \subsection{Binary Caches}\label{bc} \verb+PAR::Packer+ works by unpacking the required files to a cache location. It only does this on the first run of a binary by computing a hash of the binary and comparing it with the cache directory name which contains the hash. So, if you run several versions of a binary, you will end up with several cached trees which are never used. This is particularly true if you are regularly testing new versions of the \biber\ binary. It is a good idea to delete the caches for older binaries as they are not needed and can take up a fair bit of space. The caches are located in a temporary location which varies from OS to OS. The cache name is:\\[1ex] \noindent\verb+par-/cache-+ (Linux/Unix/OSX)\\ \verb+par-\cache-+ (Windows)\\[1ex] \noindent The temp location is not always obvious but these are sensible places to look (where \verb+*+ can vary depending on username): \begin{itemize} \item \verb+/var/folders/*/*/*/+ (OSX, local GUI login shell) \item \verb+/var/tmp/+ (OSX (remote ssh login shell), Unix) \item \verb+/tmp/+ (Linux) \item \verb+C:\Documents and Settings\\Local Settings\Temp+ (Windows/Cygwin) \item \verb+C:\Windows\Temp+ (Windows) \end{itemize} \noindent To clean up, you can just remove the whole \verb+par-+ directory/folder and then run the current binary again. You can see the active cache by running biber with the \texttt{--cache} option which will print the current cache location and exit. \subsection{Binary Architectures} Binaries are available for many architectures, directly on SourceForge. If you want to run development versions, they are usually only regularly updated for the core architectures which are not flagged as third-party built above. If you want to regularly run the latest development version, you should probably git clone the relevant branch and run \biber\ as a pure Perl program directly. \subsection{Installing} These instructions only apply to manually downloaded binaries. If \biber\ came with your \TeX\ distribution just use it as normal. Download the binary appropriate to you OS/arch\footnote{\url{https://sourceforge.net/projects/biblatex-biber}}. Below I assume it's on your desktop. You have to move the binary to somewhere in you command-line or \TeX\ utility path so that it can be found. If you know how to do this, just ignore the rest of this section which contains some instructions for users who are not sure about this. \subsubsection{OSX} If you are using the \TeX Live Mac\TeX\ distribution: \begin{verbatim} sudo mv ~/Desktop/biber /usr/texbin/ sudo chmod +x /usr/texbin/biber \end{verbatim} \noindent If you are using the MacPorts \TeX Live distribution: \begin{verbatim} sudo mv ~/Desktop/biber /opt/local/bin/ sudo chmod +x /opt/local/bin/biber \end{verbatim} \noindent The «\verb+sudo+» commands will prompt you for your password. \subsubsection{Windows} The easiest way is to just move the executable into your \verb+C:\Windows+ directory since that is always in your path. A more elegant way is to put it somewhere in your \TeX\ distribution that is already in your path. For example if you are using MiK\TeX: \begin{verbatim} C:\Program Files\MiKTeX 2.9\miktex\bin\ \end{verbatim} \subsubsection{Unix/Linux} \begin{verbatim} sudo mv ~/Desktop/biber /usr/local/bin/biber sudo chmod +x /usr/local/bin/biber \end{verbatim} \noindent Make sure \verb+/usr/local/bin+ is in your PATH. Search Google for «set PATH linux» if unsure about this. There are many pages about this, for example: \url{http://www.cyberciti.biz/faq/unix-linux-adding-path/} \subsection{Building} Instructions for those who want/need to build an executable from the Perl version. For this, you will need to have the required Perl minimum version (running \verb+perl Build.PL+ below will tell you if your version is not enough) and the following modules (best installed in this order): \begin{itemize} \item \verb+Module::Build+ and all dependencies \item All \biber\ pre-requisites \item \verb+PAR::Packer+ and all dependencies \end{itemize} \noindent \biber\ is very specific in some cases about module versions and sometimes depends on recent fixes. You can see if you have the \biber\ Perl dependencies by the usual \verb+Module::Build+ command: \begin{verbatim} perl ./Build.PL \end{verbatim} \noindent run at the root of the \biber\ Perl distribution directory. Normally, the build procedure for the binaries is as follows\footnote{On Unix-like systems, you may need to specify a full path to the scripts e.g. \texttt{./Build}}: \begin{itemize} \item Get the \biber\ source tree from Github and put it on the architecture you are building for \item cd to the root of the source tree \item \verb+perl Build.PL+ (this will check your module dependencies) \item If you are missing dependencies, you will be informed and then you should run \verb+Build installdeps+ (may need to run this with sudo on Unix-like systems) \item Run the test suite with \verb+Build test+ \item Install with \verb+Build install+ (may need to run this with sudo on Unix-like systems) \item \verb+cd dist/+ \item \verb+build.sh+ (\verb+build.bat+ on Windows) \end{itemize} \noindent This leaves a binary called «\verb+biber-+» (also with a «\verb+.exe+» extension on Windows/Cygwin) in your current directory. The important part is constructing the information for the build script. There are two things that need to be configured, both of which are required by the \verb+PAR::Packer+ module: \begin{enumerate} \item A list of modules/libraries to include in the binary which are not automatically detected by the \verb+PAR::Packer+ dependency scanner \item A list of extra files to include in the binary which are not automatically detected by the \verb+PAR::Packer+ dependency scanner \end{enumerate} \noindent To build \biber\ for a new architecture you need to define these two things as part of constructing new build scripts: \begin{itemize} \item Make a new sub-folder in the \verb+dist+ directory named after the architecture you are building for. \item Copy the \verb+biber.files+ file from an existing build architecture into this directory. \item For all of the files with absolute pathnames in there (that is, ones we are not pulling from the \biber\ tree itself), locate these files in your Perl installation tree and put the correct path in the file. \item Copy the build script from a similar architecture (i.e. Windows/non-Windows \ldots) to your new architecture directory. \item Change the \opt{--link} options to point to where the required libraries reside on your system. \item Change the \opt{--output} option to name the resulting binary for your architecture. \item Run the build script \end{itemize} \noindent The \opt{--link} options can be a little tricky sometimes. It is usually best to build without them once and then run \verb+ldd+\footnote{\texttt{otool} on OSX and \texttt{depends.exe} on Windows} on the binary to see which version/location of a library you should link to. You can also try just running the binary and it should complain about missing libraries and where it expected to find them. Put missing library paths into \opt{--link} options. The \opt{--module} options are the same for all architectures and do not need to be modified. On architectures which have or can have case-insensitive file systems, you should use the build script from either Windows or OSX as a reference as these include a step to copy the main \biber\ script to a new name before packing the binary. This is required as otherwise a spurious error is reported to the user on first run of the binary due to a name collision when it unpacks itself. See the \verb+PAR+ wiki page\footnote{\url{http://par.perl.org/wiki/Main_Page}} for FAQs and help on building with \verb+PAR::Packer+. Take special note of the FAQs on including libraries with the packed binary\footnote{\url{http://par.perl.org/wiki/FAQ}, section entitled «My PAR executable needs some dynamic libraries»}. \subsubsection{Testing a binary build} You can test a binary that you have created by copying it to a machine which preferably doesn't have \verb+perl+ at all on it. Running the binary with no arguments will unpack it in the background and display the help. To really test it without having \latex\ available, change directory the \verb+testfiles+ directory and simply run \biber\ e.g: \begin{verbatim} biber --validate-control --convert-control test \end{verbatim} \noindent This will run \biber\ normally on the test files plus it will also perform an XSLT transform on the \verb+.bcf+ and leave an HTML representation of it in the same directory thus testing the links to the XML and XSLT libraries as well as the \BibTeX\ parsing libraries. The output should look something like this (may be differences of \biber\ version and locale of course but there should be no errors or warnings). \begin{verbatim} INFO - This is Biber 2.19 INFO - Logfile is 'test.blg' INFO - BibLaTeX control file 'test.bcf' validates INFO - Converted BibLaTeX control file 'test.bcf' to 'test.bcf.html' INFO - Reading 'test.bcf' INFO - Found 1 citekeys in bib section 0 INFO - Processing bib section 0 INFO - Looking for BibTeX format file 'test.bib' for section 0 INFO - Found BibTeX data file 'test.bib' INFO - Decoding LaTeX character macros into UTF-8 INFO - Sorting list 'nyt/global' keys INFO - No sort tailoring available for locale 'en_GB.UTF-8' INFO - Sorting list 'shorthands/global' keys INFO - No sort tailoring available for locale 'en_GB.UTF-8' INFO - Writing 'test.bbl' with encoding 'UTF-8' INFO - Output to test.bbl \end{verbatim} \noindent There should now be these new files in the directory: \begin{verbatim} test.bcf.html test.blg test.bbl \end{verbatim} \appendix \section{Appendix} \subsection{Babel/Polyglossia language to Locale mapping}\label{localemap} \begin{center} \footnotesize \begin{tabular}{alalalal} \toprule Language & Locale & Language & Locale & Language & Locale & Language & Locale\\ \midrule acadian & \texttt{fr\_CA} & divehi & \texttt{dv\_MV} & latin & \texttt{la\_Latn} & sanskrit & \texttt{sa\_IN}\\ american & \texttt{en\_US} & dutch & \texttt{nl\_NL} & latvian & \texttt{lv\_LV} & scottish & \texttt{gd\_GB}\\ australian & \texttt{en\_AU} & english & \texttt{en\_US} & lithuanian & \texttt{lt\_LT} & serbian & \texttt{sr\_Latn}\\ afrikaans & \texttt{af\_ZA} & esperanto & \texttt{eo\_001} & lowersorbian & \texttt{dsb\_DE} & serbianc & \texttt{sr\_Cyrl}\\ albanian & \texttt{sq\_AL} & estonian & \texttt{et\_EE} & lsorbian & \texttt{dsb\_DE} & slovak & \texttt{sk\_SK}\\ amharic & \texttt{am\_ET} & ethiopia & \texttt{am\_ET} & magyar & \texttt{hu\_HU} & slovene & \texttt{sl\_SI}\\ arabic & \texttt{ar\_001} & farsi & \texttt{fa\_IR} & malay & \texttt{id\_ID} & slovenian & \texttt{sl\_SI}\\ armenian & \texttt{hy\_AM} & finnish & \texttt{fi\_FI} & malayalam & \texttt{ml\_IN} & spanish & \texttt{es\_ES}\\ asturian & \texttt{ast\_ES} & francais & \texttt{fr\_FR} & marathi & \texttt{mr\_IN} & swedish & \texttt{sv\_SE}\\ austrian & \texttt{de\_AT} & french & \texttt{fr\_FR} & meyalu & \texttt{id\_ID} & syriac & \texttt{syc}\\ bahasa & \texttt{id\_ID} & frenchle & \texttt{fr\_FR} & mongolian & \texttt{mn\_Cyrl} & tamil & \texttt{ta\_IN}\\ bahasai & \texttt{id\_ID} & friulan & \texttt{fur\_IT} & naustrian & \texttt{de\_AT} & telugu & \texttt{te\_IN}\\ bahasam & \texttt{id\_ID} & galician & \texttt{gl\_ES} & newzealand & \texttt{en\_US} & thai & \texttt{th\_TH}\\ basque & \texttt{eu\_ES} & german & \texttt{de\_DE} & ngerman & \texttt{de\_DE} & thaicjk & \texttt{th\_TH}\\ bengali & \texttt{bn\_BD} & germanb & \texttt{de\_DE} & nko & \texttt{ha\_NG} & tibetan & \texttt{bo\_CN}\\ bgreek & \texttt{el\_GR} & greek & \texttt{el\_GR} & norsk & \texttt{nb\_NO} & turkish & \texttt{tr\_TR}\\ brazil & \texttt{pt\_BR} & hebrew & \texttt{he\_IL} & nynorsk & \texttt{nn\_NO} & turkmen & \texttt{tk\_TM}\\ brazilian & \texttt{pt\_BR} & hindi & \texttt{hi\_IN} & occitan & \texttt{oc\_FR} & ukrainian & \texttt{uk\_UA}\\ breton & \texttt{br\_FR} & ibygreek & \texttt{el\_CY} & piedmontese & \texttt{pms\_IT} & urdu & \texttt{ur\_IN}\\ british & \texttt{en\_GB} & icelandic & \texttt{is\_IS} & pinyin & \texttt{pny} & UKenglish & \texttt{en\_GB}\\ bulgarian & \texttt{bg\_BG} & indon & \texttt{id\_ID} & polish & \texttt{pl\_PL} & uppersorbian & \texttt{hsb\_DE}\\ canadian & \texttt{en\_US} & indonesia & \texttt{id\_ID} & polutonikogreek & \texttt{el\_GR} & USenglish & \texttt{en\_US}\\ canadien & \texttt{fr\_CA} & interlingua & \texttt{ia\_FR} & portuges & \texttt{pt\_PT} & usorbian & \texttt{hsb\_DE}\\ catalan & \texttt{ca\_ES} & irish & \texttt{ga\_IE} & portuguese & \texttt{pt\_PT} & vietnamese & \texttt{vi\_VN}\\ coptic & \texttt{cop} & italian & \texttt{it\_IT} & romanian & \texttt{ro\_RO} & welsh & \texttt{cy\_GB}\\ croatian & \texttt{hr\_HR} & japanese & \texttt{ja\_JP} & romansh & \texttt{rm\_CH}\\ czech & \texttt{cs\_CZ} & kannada & \texttt{kn\_IN} & russian & \texttt{ru\_RU}\\ danish & \texttt{da\_DK} & lao & \texttt{lo\_LA} & samin & \texttt{se\_NO}\\ \bottomrule \end{tabular} \end{center} \end{document} % Local Variables: % TeX-engine: luatex % End: biber-2.19/etc/000077500000000000000000000000001440117422400133025ustar00rootroot00000000000000biber-2.19/etc/TUG-10-2019.pdf000066400000000000000000006562761440117422400152710ustar00rootroot00000000000000%PDF-1.5 % 10 0 obj << /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 56.693 272.126 ] /Matrix [ 1 0 0 1 0 0 ] /Resources 11 0 R /Filter /FlateDecode /Length 15 >> stream xP( endstream endobj 77 0 obj << /Filter /FlateDecode /Length 1249 >> stream xXKo6 @֍ ڷE-K~4+Ja҈7ƙ;i - g|n;dKpty$?9d7Φ?Rn Ehkho&k>ŖBh~}G~ho BfBjc ]CFeԮm+~*6|ks8BtDATDu{ޏ.6n(qbcCR-RqGb;f? "yȗ WC=]Z2PX0kzalsА8\p5- wvÒa`k<׵_:hkh<ŞrdU>2&̘3cQcTRjna6iCĪ; "̤-eܫwj#~>GMHmf*%Dgeg†Ⱦ)eG[b}P{!ڶO 0 ħnr{(Y{[cC{e*jF4CɘeEܘkIroZK=ݦ9XT4 V)_R:;pȶ8L"@4^n_qe`ɰz tpkpf v8YPK@%|H&uyu2Ʒ%o}T ;k"jdh_3=rI m{mJ1'op*? c\c+\"& kI>h>o qy{ydNHWX>H,`j*i  襒fHg-}?tǨ}W#.![ 5`ɫ }?t/TTg̟] P<>IUP[i3l5Iln.pZq?6mdN xALRjRnX?}:ʧp֦OA]霄1UyT);l^ZkZFͻ~* <`CZ^r8J5& o`PƵ˕r2YZ=[BV —:=Ѵ.ݥgg~z!bO+J) Gx7]}TU~倾ldOr'2J^F9_$~|s։B/xK˜F׼9]2M|m͇ę endstream endobj 121 0 obj << /Filter /FlateDecode /Length 1615 >> stream xYKo$5WPLH"67iD>_ۏd$!5v=*J&=SQcAQx8A&/>*6X-R[pAzJ!P{êO.)?ݞEd C1XA.?WR +SԆb$]mFr nkB^f9(`V4jV J91\S+lį.ڂV(Zi`nt3T3E%uʜ$5*;::Iii-̝:o`O͓9H,u"}Ey{eGHҧz{رe {Qܰ&UQvolFكj4|R'kPeӴr|(LLu3g+ h\9'S9FrP!mPBeRhyS_IKd:?̥fOP#w t(޶KR 4Qӈx"c4Pſ}݈y"j2GCxOY_S5ǤދsQq60?0bTFLU0,or ',k㠦jIgID 7 6`y_e7*@[^i xr!m M'[ܵ^oօR1Cy/Be4[^rP(ET5 ){{貏C夊:Jܙr>+eckw«pXgƯ|ҠvRU!ϲHruԗ&>uuQ0o&ᮭ{J-AǺ&aMbҽ!qr3ͫ^sN$덠4WcQmGܖU'/I&O|d d9 {/#".lyLVôj{ȴa^ܳobV LYZb$ ?ZT~26G.} y6/Smu؀q2%?ۥ g(X8Hu!VRW@(|E(.pڍu{\W)T ~^{v7j/g.vȜU> stream xYKs5W R5L|8ma8P΅ךcf$fz~~ݒzM(qsVƨ1>$qIM^|U_n}j:Z奶?BUA]R~݁ƻ&Mc\1jqw?90_OLQZp tV%=Z yU夣YAӴYQ6v*4BXYf#~u$?DAJ w3itx7SX?!\ihIR3OECW.#FXlDϛ4jG>֣ܣƎ-#T؋5xwW%l1f .FkĘ=N ^ 'xB xU0M+V\ʤ88dNꮉP7sfJȕx2Gc$׶%)[X& :<Jy.7x3HC\b@ F$HWQsهB(;F$͓'!E5cO/{1[z"i]ᕨf](S8"d_)ZF%EZJUؘW>ͼ.8TNDΝ)gsR`Y<|=6~/ ujo ' j'Z2,>,WlO}i*SW fںTyk$z,'gOpM|q͏ߎnS,)d.H_ꞁPp`Rd ՅgZI]ţݣ̺x(3~i7NkSq]_!P+y};B]^};sG䮚qevC2PԯʤlJY_dBYq5 [#kYʷEY<[UUW {i^ZO)'kW( ,墢a @nxMA^,{\Ϋ`Ϳ'U03ugU0dhm]J7jWzT9=esM1*V)R+-dϫsjR}\+J_ԮofKH wKt>WyU?׫c 6K&y|wR( g%B'zt0<kZ@ʻƉ߅yw]nޒDlےopfbZDwp~uuUR endstream endobj 12 0 obj << /Type /ObjStm /N 100 /First 823 /Filter /FlateDecode /Length 1858 >> stream xZNG}߯Ge-!K6N$ a gcv}NM7 \OQ3"6#'&h\2Lڑ,.<1lF6y2ڙ@"j;kKmGޢaxb6,RYtLb8<Gr\= ā:*W#S 5֠b/~<ACp\ !:&PUFM)<p r ✉VBͨF>ulg3n4_ ,:A.Ζr*RYgZ`꽦yGE6yuٿͩ,BP3,HQ9~~kxu.8!Շmjk)z٣ 2M\3\=ڤڤO\r)u)M)m)])})C)c) ^׹,x\q㷤F"HDh#m$\"2+|C"ߊD6WȔ{HDۑF" r};C6"F$zPH]O:`R3"},ũҹ8c<8yT,ј阢阢阢阢阢阢٢قg -xقW$B.gr 1(.砸rQ(.grq(.6F{hO{֞/ endstream endobj 197 0 obj << /Filter /FlateDecode /Length 1615 >> stream xYKo$5WJY^|n?ۓ y5v=*J&pVƨ1ރ$qIM^|Uܝ]oxX-R[pAzH!P{êO.)?}8݂ۻ&Mc\1jq{?9%0ջ_n?NLQZp tV%=Z yU夣YAӴYQ6v*4BXYf#~u$?DAJ w3itx?SX?!\ihIR3OEC.#FXlDϛ4Q Fk<9)T"J'BW'X|Ԏ$)}GG[F詰 k"MPwڍH'On-BFKƞ^"(b()yT[qn3*FFʈi*MN=~mcY7D_DI{B7;_vm Tku')ܖ@d{>z"i]ᕨf](S8"d_)ZF%EZJUؘW>ͼxc}*'UyV"Δ_),S\FXT^:@5~vB xEj_uC4aT…y3 wmSj <5 k[EUu 3')m^u­s|$q^oqmm;u].涔]\.=>|I2y{V'àl a{)qqfkf2mV#F +HUg`be $I,q]|5 90`h>pM|q͏ߎnS,)h.H_ꞁPp`Rd ՅgZI]ţݣ̺x(3~i7NkSq]_!P+y};B]^؉#srM2!L(WeRi 6MYܬеxEQ&7FVU4պ0H^`SA@I KhsEÀP^Sv3*XI lݳ* 2 T|^+Y=u͜޲xq}i9w>d%կQjWwQm3%$܏;%:VGy+ݪ``Ϳ'%2SH0XϙwNG"" Z3Nfq+paeAk 9oS tpxbD[DM8 endstream endobj 231 0 obj << /Filter /FlateDecode /Length 1548 >> stream xYKo7Wro 0\V$4j\|CrA7CrB۝0>v,=Kb'>&>:$r pps$O)$J:/nF6+>6iA@(~y[>ׇ#c  1ƁC6Ukrn<}^fYicZ7lV=7JY//e&Wy-ARtl4I᭱z?rF둢) 2%Jg򊫇Oaq=kiޠN0GYV)IS:ϡ2'<>UAƄ`\L.O HK^Uܴ8o<׼"_ 9'3rDE އjgAP!(w6aҩV#`qmÀ|Tv2)Xqj-WRקq`kCN>R9:(}a_QlH%+bIc=0aN'xAv|nmXg?"-|`梊iBxU1M{q'vwieT)8Qg ΉP7s6fȕ#x& :G˔:̿u(B2_XԿW& \o: j͝^*m[%xX)xHFrc0Xſ}GvDi"j_3GCuxYߔjIw!6hTa~LQ1 W´)^5XV&џ'yo6l~>y_e7*Ɗ*umj8E.m@jL IK %M fgp*x%t.r){rA+ChhQUBj Sʧw/J(Jr>*eckw«pgƯPBI"Wrg{KVIE(\7pצRKP1IXU[UgQoH1? i⭻n\pHLFPw6nv ϩmǸוt)}?^TFPLoFLqs5yK\/W0+:"-dLai9r )- mJP?y_ɌExCeވ@hp]b6@xHS:y0C#ໟ_Zᠭ1]L hW;@v|}OuYʶ"=~*Uy[Nz7؍1T>9+!L_.oyk8%E> qh|A\ U*[G$pSׇçFKP N4l‰lY81i\tkj2֞ e-'M2c+|m^:Wp ޣմ:Jô;^[M-Oܬeҁ7(/< ʸYς2i&R_fZZ'2;Tn<2.|3ԟlHz~Rn-Ap0Dj|ȩtX/&:/2`> stream xYKs#5W u]uHR-$7Ce/}>iFqvCϯ[R[_75 #a|E Xm{N|E#c  1ƁC6UKrn<}^fYicZ7lV#^;o_le&WyV i[cnt=VWW#E%S+µfNCK0<W]v[,ć0bz֐ӼA5a6rStJ utBK"dN8x(|"ly ]r 7SGq1>. -٥'|,xY'R9#(>T; ZLAM ˷+oN of/磲IJSkfhJjԼ>5Ock#r"љDDrfeG,Y[Or[詰 s"ͼ;xC})TV@yV"ΐ_),SlF>XU^<5~vH' n'Z2LI.RK>S_J*E¼6Z*yMšު:zCgHoݽp+g!2Yl덠4WmܤPSێq]k#+R~RAύ(tj򢗸^u/atDZȘ6rz$RZ 6A2'0U%3i z#RYAtkl@vd<$) R HV.Zp-pVƘ. ;>: e[?j b-O'=QnƘ *v~/@ 6J|*[U*mGp\׫çJ$ PϢ<$5߭BnYH2Cn#sgϊ&Io[Jo};ך1r_?VyvGyo0o{Ez endstream endobj 165 0 obj << /Type /ObjStm /N 100 /First 916 /Filter /FlateDecode /Length 1692 >> stream x[MoFW̱;߀ uzhS#!b D*dM}ߐ#:hemޥzp9lspVHRB)6P7HxL5B*~\3@SH@k'D"1xD,$!gt*(97c,<:ɑAjAZɳIx0N|˜ Lu2ّg0ƀSJaBɑBXA.TBA!L"|8^) b h8%QRIdJRP *T U@QPU;23,JU2e zDGerP:Ԛg☊&8b}S ].Z/%L"Պ @R(!3UBҕ`ZZua5c#$NNa|.uy\Lt]e,mf#)F>i1@zq1C!@(>/]ꢗT*T ZTbwUtVu u^9w Rkvp@?[Pp\m=~j]p|C|>ם߷'M狳 h~6:{@XͲF3]ڧC"sLՋOg/^7|KT>7DFm0n6Ã}68r9^ '_Oʍ[BQJ*qM*$mOt 5 FsӨC0?IRT,vFD5$G$Hm Hj$ɞ2E-ύLyUt3E옊*~ȕUEJpA_Jw*QiO?P*ZSewsNb$Ȣ8.i\7Z,},΢C 7*Rpnh|$2Hy4?{eTpôk[G?X$t9Ppd{PJzܦX-ewiN^qo =-[+zkZˆ /Iܾ5bx+W ^5jxtGGũIZCJtGhԌm ؔl<&~nlPG\ieG V,xņ3uejaPQ~EG <'^EͱUA(w[tp4"<_щ؋s'rO'h&h&h&hPM;?wHkCEWwwX FkbmTL- lQĖC}kxbxR&h&h&hP!S"((NMM}U3xh[n?J!xsR9)ޜoL0g&3̙ sf  /^4hxEË /^4hxʴ[?9B#49B_#v. endstream endobj 302 0 obj << /Filter /FlateDecode /Length 1551 >> stream xYKs#5W J:$)67Ce/}֌3ggdCϯ[R[_755F%'Hj/~s{haw-13BIU@R~Ed }1XA.;)EN){F !Il`۪%5!jt0+Hcvq6+J91\l)e6WyV(Zi`nt=TW#E)Z3%I <U]vC5$7hF Q6S~.2t&ϡd 2'>rEQ&T`\Y@7'c^Eܴ8{~͂74R5C 2iZ9>|bs+$F;;'BJd8 )!Wu:{`H_:Pna/,Zuy~+i \o& r ?Tc1B/giDP99w%Je6ڤݿ*Y+4jU,R\= O]].̛IkRKP1IX*꭪toH1? i쭻gnl)!ĶJ~5OnvZx]K zn%~4bL q$rXl,舴6rz*rZ QZmOa4C)#^WJ\7TVZ HBхѷ9_oTfik>p MH N.Zp-p0NS cS`V@?j 1wYޖ(e7vcD.r;? ῏yl]JNt*]Ɇ[#ZbeS{n%E0xm(!C[*Y= mV ]ݚwkwx2˕JvFRvcQu=NRPdt涀/&{ endstream endobj 336 0 obj << /Filter /FlateDecode /Length 1551 >> stream xYKo7WĒ7\hn}+zPp.|jl-;$<GJ.٨٨1j(a.bܦT*pU4/L;>\qPÏe?ovyVaJΦ7/Q96Dku|')ܖ@dz>z"i]af](){d_)ZFp%A}_(*faq^Q4`]TQ[;C}@Lqyl|cmR_xoJZPB-ϯ:C֧*SW ںTys$֊z,+c+!lṷ-E.2Il덠4`WcmG/FPH#&\m$p]m2fRNZEKA6J6f(}kwv󪿒Y4 ၚk)\H :5v6@vd> stream xYM7 ﯘc{XU -ފ=-6>JCI3o&=p$||$ZOMzzsWAkC'H%' Ӈw't{3Yq߇G3!V! >BjwE>M^}n"TJf;N?КnZ}۪4.@CV>Q[`2SD֥Ub'vi b\y$i"MDݬ鶶޶9^s,_Ktde !~CZxB U /|M?K,,;I))cޅ#QĂsήșI&15-n`¦ T=G +M[j+wB iԢU1?u$K#C#U׉=Og E\Y`V vjE°wmzBJ.E匿1ӶzH-@xe!r7C2nF{>ؼMWxdl䪹k!-jD3g#tZGc/ pH}'K0P:KA\(iz;-8;4oYXK@$|΀bihKQp3?%( vo w$]U-cOO{$1$ۀ\u4E\N)Q~d˜+\yDZkBL\dE=W|`ӳH SX.mo`j"xR .8ܳT曵H#Y&94QjglyPC 43Eʼn+V+LٿTN]$H|iFn.Ѱ^vp?y|Ҡ~RhY&GS5dM$b(.mFIKAM:'aLfh2#>e䥻'.\SC&MF ;j]X3׵~9Rnq=m Ͽxq QDK+~(Xpz\T5;,gWdTb恛coD^H<\F ^ 7C2cw;سtg"/K(iLZcN>MDP[Y_]sm@;,^ޑ'EuAz~n-y< ';qvsB|5] iEbH^l'3Mt h7)KSn>C~]| endstream endobj 269 0 obj << /Type /ObjStm /N 100 /First 916 /Filter /FlateDecode /Length 1678 >> stream xZMoFW̱,wv0Nmj95|Pl!pHrDHӨl!8KR䛷3˙SB#1&!a̔RX(7XߨF!ybLfwT$@sHJ%e _ .g<΂B,zR"gDY/(" O\%,Hу](6v(2,bxn,:)6ʔ<jĸ1$\fH 5-MEͅRUR [Qfx64OY/<>-PN8I.~nrE@sz 8(T+RQIJx*/8(\)HRK jZD $ɘF":LqY`i: 5ii&UKNHV8S".ZTJ}$ +8cJ@,0K>&˰k^j2f~dQ< |`Π,\zsmzltGa+O굪΂Yz+&_u舺grPwŦ?jb}pyc{xΩ{Й1/X#kp>:}"5uJճu'?^7Weӽ{o:9 H'UkSt~p).w +5#']>JlsrcCNm 7qo uݓ% 0({JN_ vK%x +ܨC`L* -Mհ#=l.luʹ}iNߐ[*iy3amډJ7x%H^A2Es%+"+;-Tx\ɡRIiy\IҪTT;ze;\NbȸdE+ݸNA$~)iwl)H\w-%E :'u HSW+Qv2 1n{U?Z^~9;:mvj|G}Bgthk:{zZ1X Ϝ7zIa8fY;^-7}'mێy_3L?hƍ?W uUw^L`pVnY,7wjzv}ϋ˫;JWNfݳ|yMt#1_҇mQl6&jcFshxUëW ^5fx5k ^3fxm;[w.LU 4v):X7mnCF}SlPy'c窅 *lpƮ#=3z/:EU"`E^]d93)B{VN9)B"4)B"4)B"4)B"M(Bqw=!IQk=яXmw ldždždždž /^0> stream xY=s7 +X&xFw,F:(dU7G c(Ó_rvuBaP|u 'ZRG(aTujT)]; RZy3 U)Ix"MDݬzzx=K FR2~;$ }BqXvBȟi~ H,fJH\BC(bAnօ\a(0,;S]M%AY=|,ܙ3lSn> [AMQ?t4Fc֊B&9h*Koeՙu$gF*FC#UҷݛÊ+&cNbvEya-o6e}Nߪ9j[=OUP)<$x>*CfM{N]ppZ] an5R+Gd mӜ:y(,D4N+:^p%0H#`L0e!I49ᣥ-VWQkG_aKdy,E4O{zأFj/穙cs;gDc*c:sQ:xM>j׮L_lS|I/^FsuFmlr yS 6ܔ #% ߬E" ȡIx4`+~hV)*N\9ߛ{v>U&ۺUsgYhxV%>F~0q]avp?AЪB%%mkSŚHi`Q]=ێVuMœ^UeGG3ͣsI.ۍ@whegnkrt5⪷+zl7@F_~k\G5n*aA*Q tj\TT5;,WWX`﷮~S\68 p4y6S[ ;i>vIR8ŷ7܆7=ynmk-h_SVmȺ5٠dHFR<;Z W]}?ݓ@р0,zs"b§3S6N PH϶ZvTڢH:t<1k≦FgEAa'yUQ/#Wz'%^o*${CV|B6vTX4hnM qxu뿧a{V%vA,?$?ÊԿ8UΒ8dEgz\Wi.jωx=%T<'pb--d\wlm;JJYVw fJ<#ӄyX2tJnJR_jT~-j"em.hӅ/%)\ )MN[+kR Tڲ]y?9 endstream endobj 443 0 obj << /Filter /FlateDecode /Length 1636 >> stream xYMo7 WJ7n⠹iѴn ҿGP̎7I{vE>>RרߔQixCb iKQUzs2S?ac3Q[O|8^p{_ )c?zRӫ.)yf1yE!뜭;CtדK EgmK=z]>*@ v[WN1~oLxה3mNI"+y=h"ffM3Ybx uɘΖ-! 5!#Ox$,IJEH;#dEb9E6kWF:uG Űu.̝' Ga=05mra. Ⱥ-$0`FLO(lkU6Eao nQ&Ew[+ 栩,WbEvލ#9?k=4R1"E>O/l.+@g[gi Hk۔5J|9fm:V<^AY,  a56oug)j~2w-Uh@4KA%Ԟ1Ns8HށC~|e8Q?xK 7Wxق3i\&q (DX_ O[F}FE b|Ά-H}SE 6T{9OpSyvJ12J<}ф~6˷DH\2"V|`Wǃ/l:FƒE 7%,yF/H7}gd7k9F4Ȼ,rh36 J"ifWCɶFܙr}UIϾ-fEhXgO>iP?)PyI뫭Ti/}&{l1Xwp϶c]0W4zFё<>Li䭻'n\SC&v#pu>.nvZm)办7 _xQD[+~hXpT]~oofck*+ɀ+v,LAO~[W). nowX83MԖN,]m9yj9N# !~%MO[ac-i<"&i5~npn ĪF6!Y,O@'|Ww$P4: B󔍤)R](N)=OڹxiYvPɛyDGUȕ^4IlIlě.8ɞw\<ڊOHF֎7  aQ> stream xYKo$5W1v-H;!۲!N# ({e{zdwv=*zm݅^l (2N.-buduP~_) #KOw{0i*LjCf0Ӻ|R)0vHWܿ98@8dk\_%Hk6U}W"fEem.f%C<ⵃNko0ƫKqeKx c`M9`"-V*yɸ29s:Z2 SQSll!}0Ӌf |i |x3H,;Io#S%QĂ%yA_/3~dxVI5_2GC xE_S]c-nTF #Ft\tNX>rA/e./o~yg9 ^uOٍdPA&f,$׸)`ȱB D0{<ᕤf-9y!F1*YL-/{(*2yߴJSSX~o|yCqɔ[O%wm%Fe7ڬ_x uZ]?IIU<"M(5F}jQXwp6#c]&U4Zfѐ4;c}[w/ʹćL.ۍ@wuavKܶ#\u/oEՌi=.^DlBb> stream xZMW1t} seAa06IK%ϫa-W툱(v P=ΫW@5Dj[ɤ6U`;UfҜieխ3W XrYh6bȀjR+qcFܳ:ID" IQ>PBR%tgW&0Zɩ (')֎d Zj{ "ì¨yW*P:JC-= ³6F@FƇfGow7i|پZm_&Lt5}|2~r4}h|K`d;WC"wuI_,urwYs+}>StbVKl.zXtr z|6:E60itjLi\8Xyoj~ʯqpu@/Lь</'V\.[ 3PGLp:qUz ._>*$ WPcOMY厊[!>1FZHB;kXNͤY2H3;*׏zE*ʴ8B\iCҒʱ\NKxbXT鐖,f8*CZd0閌ǞR[ ~ .Ue9ST4.=cCY>d"V/}|ٗʷu[w8G|V7tpjfhxCj4C¿|\M '=Z@Rq$ L&\VZa^x=z^smdo9հ6]xcwLL!sċaSė0>}?T~`瞹mjbpO_p9T mv6 gfIJJ}>`1KJ4KJ4KJ4KJ_NjDG*B$2>HdYW_"¡p,* 5l j#HE!{xxxxxxxxxxxxxxxfhVfhVf*L$L4DL4DL4DL4DL2"?LyW&cD-#Y+򊅼C!kr59rM&^x%J+W^ x%eV^jy endstream endobj 514 0 obj << /Filter /FlateDecode /Length 1630 >> stream xYKs5WR]E*kFq"p` 5jI3;k6Y'Nϯ[R~JF`|EO6JOI wWo}j:f:(ofRNZX%WW{0i*Lj]f0Ӻ|R)0vHw7?ݿ98@8dk\_%Hk6U}W"fEem.f%C<ⵃNko0ƛkqeKx c`M9`"-V*yxY)e,stdenB#,va Ws-uX" D&)!TLr"F 򴅰MIeR }Y@X'c^Mƒxv s2#+Lcj6 Z܀AMA?7{ȳۧ ᳠$(/ժ3}EΎ{yT"J'BWtpgXh.%"mα$dc=54aM'^7&&]?LW[kmZ8ms3O)`vz3]Ysp-\]n͜+d 6*N ;`H}'S̰P& Es{/~%tKfСyB.Fl HΏPK!1-ɳ[EH'}SE 69}9OuI󷐞sQ%]q% .G8aȅ;=պ|Iˣ8y6_(}>=e7mcC[A y2^! )LYW曵P#YŨd3졨Ȑ}B(MMaqd~潅_ǡJ'So=ܙs/ckw%Yojw ' 'V 4<"bO{IiEaaM=یVuMšVhUeFCgN'o=q+2in7iօE->sێp]#U3^K#(Sz1W:p-Ee)=r!@ cN^4~UA]᝖+_<j.s6XX3:c/iP7T!CQֿP9sAㇻ[B ~=L7ܨh8XI153zKKҩftNW`ߍ/Z)lk81>A.ӊӮE"jOe#'K˒vHn.JnqYkrNdS+*幽= μ(TZ69;`j˧*J~)ndFEMZMIb6DF _;~lw>9ȫI1:2WMR87ըR%P:U2pYwߝ8:2A= \[-UA>%b؊߂+)\aS[ s03&K qlq/ g%_qR+'.뚫GR擺 0 G;Je7Z}_> stream xYKs5WR]E*kEB9>_kԒfvlN)vz~~ݒz뤧WWz5(zT~HP>2zssP1AG?\}ww0>v*ê.)?݃OW9F4MJLZ#|zTN҂A Ϯqp}Ֆ\#XVY^y]T ;o)ƕe./A"U6MrX&ehFΙђgng}d G؅^4$7kxfG _͑a0IJl0R1e]pPE,6&;KGgaDy6sK -O<ȧBɌH2(hqj4Ao 5ޤ5" of//JZVWZ:;֧:zpnB@>1R%:(}a_a٣8H<@9֓ܓ؋5xyěJlw)f0]mكj鯉>L`S= \T oz܎9 `𹡧V5LCXhp{ {0\sP3&K@qq0 ''*_T+.R`4 ;AzgY]G@x endstream endobj 583 0 obj << /Filter /FlateDecode /Length 1632 >> stream xYKs5WR]E*klFq"p` 5jI3;kIH*[;=R?nI=zm݅^l (2N.-buduP~_) =KOw{0i*Lj]f0Ӻ|R)0vHWܿ98@8dk\_%Hk6U}W"fEem.f%C<ⵃNko0ƫKqeKx c`M9`"-V*yɸ29s:Z2 SQSll!}0Ӌf |i |x3H,;Io#S%QĂ%yA_/3~dxVI52GC xE_S]c-ŹݨTF.˅`y#|_j]^$("r Ol|}xn$Ɔ*m-67@ 5d!YeM CR .8ܳy$7k9F8ȳ7QjglyCQ!PȔ{{ CNz*3l-7 ,+_ƾ=f=K8~'AOO *9iBy4EŞЅ5V¼{)5뚄5Ѫ6ˌϜ6/޺{V%%>dtnҸ_ [B}/GT+|)}U/fFPH)W:p-Ee)=r!@ cN\/h26Ż=;-Wy1ƹ͏n]mgy5t^ءlo?[C;ru? z5P{nQGѨqv+bkfHkS ر_[@"»- ^Rp3"pb|\:3(3!]Tq1"jOe#K/vHn4ԗ4[+$ɦW,Us{{D5y)Qf9l.sv6OUBR*`907m8w c+|Us@5WcXudvsDqQJKGt TT*89:2*7y=nǜzQ^0Roӏd+ !hq,q}4>=l|/y %{A^ΘlOi8}->cZqYA]=,:9 i8, R7D#= ^$Φ endstream endobj 481 0 obj << /Type /ObjStm /N 100 /First 916 /Filter /FlateDecode /Length 1671 >> stream xZMo7W̱r~F|M8-n6}IJ"WHrgKA)5 4'e`K'*afL5BќJ,9O6 4ɀdjW1'nJ"F gX)$*T0ORn@%sbEa(bTsd#)J1B'*48dBWeYlxBѦSD0[hS*>:4`p6R h)>KMHsXs_ vK)dNFJ.NO J`s"r Y0a;*Z)TNRU J3.27D@jDԄ(㊥QS"FVMR-HZbX:ZeR%Q( QW$Dو!)YyC (XPe1!,2G8ƪیbEٻ?X,f.'NirE1Xkgى9u <" Od]Qx|A#Wb.ҽ{;4PcåM6\['cWqd˨[p+:%̖Mpq'(cATևMt.]y tWt4w76:Y;{oNj]rkzX:\J'֬@K ֍ ?:ˮ;2=q<َgN?LήfdN_CeG!Oo(j'X\)@ڗ峸H@9;.rh. V +Wٗ #.&P;{O|h&m"oT>mJ K;4DEyKQ6H|jI lrh*Ű ʰ_ُʡ,܆ bT}3sS-۸"ˑpynCw!R`gզf!*?S٫su;V0{۞^ϯ]c/G;],.?0Q_pbM)8߽yC՚7o3Ol9'Yj?]WCќjN@/~zch*n{rqy6PO"ᶍf iϳrv3#ågW>"f~::MfSNb2k!799$)bڪ춸nڶ݊[k9^sxmg ڲ[q&6-n[d``4P؄c "`Wu:$7V{Np>3JC44JC4I4FihFihFihFihFi#Ґfih_4ߤTBRICv_K(.K*D_ݬK4D#'/:^txENj/:^rx%AoiFihFihFiP;:( ( ( ( T?Eڷ# w>*߅4? ZKCҊ.K+RT.ըK5٥RMvxeˎ/;^qx+WEy.~1 endstream endobj 618 0 obj << /Filter /FlateDecode /Length 1520 >> stream xY;o7+X& 2α:#!N\7|J>d;\qwά%^_H (Je4N%i/>.>\=Z;0KO7?Bê.)#)4LcvQH ޿PJ;?oo +S$4XId;;Vmp{k&UcN Ҙ]\͊2p[a //u+lSyV(&馌t*E%uʜ$ TP{hWv-O0b =ky^͎ K _"IS2 Jvz arL#Aij0oEy]obg; xlyT>zݕM 1vB΄(?;o-y"o bYO:--}VNF,ibs>85Jc?9J92}A8W'XؽHNK[ 'S, k"<궋%Rl1a'.ֈm8M+x3T )!diؼo[^'5ڢu3g+L {L}10$ӱ)4-lMSwI%e}yFz.FjTc~`Ĩfyc:Y>4NX>sAmo6# "Nrs7 ~>y_4jƆ*}-" xr#INRe赆[Y~Dŕuơ7!N!9K6~ߵhfcqd^ oǡrREy=ۯ[2qqIͧ8w8lo =+dYI>RK!oNjM|:fJOA:'aMblUE!8cS͓s#djq+ָ_[D~涝Ff֏s z.cD!FZ0H]H &r5sUe.'mG)ɋ s\J/?nz%, ՜'{s0z4 ?/j6rbWg†!"?ϟ2|wB<gB*,»2W 4:ɚMQKi- Cvy\\GU2F&n,Y٦U-7l{ꒌᙓg ŸŹ2ZzG3`kvN\ѯͱC1{?I9=39c!ṱ{ר꺢җbT Ig֞l.{qP(Xg[Ձ5gc;M,z1)W-g endstream endobj 656 0 obj << /Filter /FlateDecode /Length 1521 >> stream xYKs5W ުJ^Fq"p` ٱxC5ݣįBj5Fxk:hIڋo}j:$ṕ>tF(=Kʏ/oEd !0X]1=^(RvF}7) b$]j=\1Ifi.fE|8u R0:e6˼ALZi`utSFgWXƒ :e@Khx*(=+va5zݕM 1vB΄(?;o-y"o bYB%E'uZZέhX0X3:|pj~Hsrd,yp(oO{Z)=NlYDxmO!J4ncN\lA5pK;f>R5C 0H9~y'ފ2)N2kE5fVb7<{c$o{`Hc'ShZ& :U5&ߍ\;ըQ1Wt|i|·*jlGAD /l}>=iԎ UZnxE@ 5F2Bik 3^+Fi1CoBB2esm2k(]Ȕ潃LC夊o%){_;e8kOƫqX}q=~x7 =zV,|,B a髛0 u6͔:uNšV٪>fCbql'o=q+RG~Wqmm;r嫭{Ie\X1B6 aJAL&jǸ\NdS5@怹P5 *J6XT剫9/ BO1&`.+h(~_6Bm>Į. CEv2ߓPq8sndU~ѮHŎś٤}*!E[Q|ERgNB SoYH!akuq/ #dU]WTS!5qӚMe/? k?:lǽE/;8岠}l7% endstream endobj 586 0 obj << /Type /ObjStm /N 100 /First 912 /Filter /FlateDecode /Length 1616 >> stream xZMo7W^v93! Q65>(IBV͊ ZtX.3%AbP@aS`5$6XC&-PkF[ D q{$TȪ;;fwr`8`NHd5DF3C&آߑ5)$:ܬA< "N0r N },%)x%EEN DQ1XcZф;&ާ^K |l(*{ *%sE*'9#]7j5xEuxS 諸%s I'4V )(ܱ#f-%wJ:t!g smޙ8HBg_ ^Ͽk~69ò狏oӫY3gj/jh|5ͩ+vq%u Lw:CO^qۦ|Tg/NAnk|u:jv;Aíg7g/9+|&t~)bD䐒 {;rkA ֶmRܬ4fxuϵfYi65Zlvnm[> stream xYKs5W ުJ^Fq"p` ٱxC5ݣįBj5Fxk:hIڋo}j:$ṕ>tF(=Kʏ/oEd !0X]1=^(RvF}7) b$]j=\1Ifi.fE|8u R0:e6˼ALZi`utSFgWXƒ :e@Khx*(=+va5zݕM 1vB΄(?;o-y"o bYB%E'uZZέhX0X3:|pj~Hsrd,yp(oO{Z)=NlYDxmO!J4ncN\lA5pK;f>R5C 0H9~y'ފ2)N2kE5fVb7<{c$o{`Hc'ShZ& :U5&ߍ\;ըQ1Wt|i|·*jlGAD /l}>=iԎ UZnxE@ 5F2Bik 3^+Fi1CoBB2esm2k(]Ȕ潃LC夊o%){_;e8kOƫqX}q=~x7 =zV,|,B a髛0 u6͔:uNšV٪>fCbql'o=q+RG~Wqmm;r嫭{Ie\X1B6 aJAL&jǸ\NdS5@怹P5 *J6XT剫9/ BO1&`.+h(~_6Bm>Į. CEv2ߓPq8s8('&,}EJAIHAM: )Lv>9=w9c!t̟\J_~Q5d&1ΟڧͦJﲗZ EqVXp5>Aَ{^jwqE 1royt endstream endobj 727 0 obj << /Filter /FlateDecode /Length 1524 >> stream xYKs5W ުJ^Fq"p` ٱdC[=J*x}V#a$w(a8xhSwP!ad5n$!3BIU@]R~|}q} F. 'Soi AB)픲;0ꛗ?߾)L^pc=8$X%WA嚐WYN:0+Hcvq5+kor1!,O]u XeJ 4+2:e2OخS $ICb l!~}[_YC󊆧hv>W]vN%e(M0-CL0No!lSn{0hxͽZ1Mly-ofCbqͣs#djq+ָ_[D~涝Ff֏s XRdowvY=1V!FZmJAL&jǸ\NdS5@怹P5 *>l0Ws^:80&`.+h(~_6Bm>Į. CEv4ߓPq8s> stream xYKo6Wr&vhCs7|JZQv\9R7CH?ob$%2'tВ~-zj:$pܧtF(=sʯo.oEd !0X]19N)~ 1փC.Ukr5R y՘4fh >V)Gs2e^ iU& mImr.3]U(1ahI OvnB4#,г hv>WSvN9e(MC!&ȝqP^h*7ؙ=BO< N*vּs w͚7AcΨhԇlLP'17a筥W#ObqbAl829TRtRGnhϺcHc4? /1热=!Mw)lJ + =4imNpb=΢Xܰ$W7]<(`[qFi_ oOH1 hL#x'ʤxs\-.P7s͔+d_}:O:Oda4]شԿWM()O#L j͝A,<~<c1\^#A:*^N."7+wHē[A{cĐl=S֗T=naTF5Fʈj7ˇ ˧\vpPa[@_E&TBplB[`FMZfEPmí`1T݄!.!Q Cvք5uՆ0%. M3v*vMgGp޴%w=ކ7 Ŵ7$׵E8$ws,u]縂q6`U]VlS!5qq}l.{IPYuՁ5occbK#rS~?C endstream endobj 660 0 obj << /Type /ObjStm /N 100 /First 917 /Filter /FlateDecode /Length 1661 >> stream xZMo7W^VC|M؇-n6};Ӣ 56f}8~Ö!SH%F¦ R(`9(~P]O"ṒQf8%<+E%65PR@ZnI`VsRD9SЬXZ75!Sc6' W bq !oq )6!j!IFGk )d8O'iOH%i!Lj[ kȢmVZ 9BKƈ mHFP 8@gdC#-订]ɌђoUiDQK9*!pas7A%ԘPR H]i&k 9&`0Z9Z4 FC>-54qV3Ֆ{.xjNW*2>ň-O@2%(X{28jIA1<JĢ&Ġߚʶd4$~< B}gUM@UPuKd5 /#`kF Tyl3BC ԩyԚT ʍP!`͎i8gLΗaO?VgaE޿}.'鯋evY~~at.d uBEĦ#B~Dc/K읍֋t'a~8^vXq^.o7˛~z_^]/?ϮHbYE6MOȘGպ_쇭jmv[ܪ V[K/( H0K7-+WɅ㞹ʷL8gؑLhLleKDžU-8#.-(ɡL;. \Ҿ"ȋ%!/Dg-CKʝ]^2GKy bo5.xId;%^ uxU˞(Jvˋ!tfs+\l7 R£+o>uZżvS62sB7L/q9d}8~/4'_XLYܿXdzX\di.4Y[v+n춸UխyLn;EX4EX4E$=1EX4EX4EX4EX?sb_X|,b<ԋE9[/-b".ވ7⍸x#.ވ7%KIjuxeˎ/;wfߦ rĢI,ĢI,ĢX&^'h&h&h&h# -_Zl endstream endobj 796 0 obj << /Filter /FlateDecode /Length 1862 >> stream xZ;o7+X 1 |eĝcuACro>v\!qw3\%JRVhAQx8A&/>.>]}X =bq0Km Տ-~@QAR~yw#)wl=䢌QR䔲7CK{?p2Emh0KrmڼkBz9(W4WJ96fو_]I2Q&vhs)-}Z԰ RAQ͠ !m[?г H'7xN)44?0!&; 0 _5ebL] 'ysa@[ڭbg:KkhX׬Y* =GW&1CN(_߭ +o^8 of+#slBNRjJumz,iSxKc=K3}(o7hصIRzGG[Fȩ s",NCiZ#كj`4|R;maݴr|(><2)vN2ks"͜jx3%x2jWc$/'`H_8On`,Rn5߹+i LLj͜A,%XP)xiUp=E켡}?N5΃Y$M=}OO{1[uFT{s1nS*JFʈi*m {.82Z?o#r\aMFeXҁW&\HFj)ɲ|DPz+emcw«p}=8P_APB)ϯ:ϫC֧*SG lSj<1 ckEV1'ay) eQ Ɨ=Sѯg}ĸ(u'M[F.ѢZ@b(՜?\K믰0`,HsI bP`vC/4hc? {-K~<ϟ4Pѭ2pJK @%ӞИ/ }u/HMuoImdGrkŽ5kPCsg=mv<Ę,hqO;'} ^QmԺɸ?<-v0؉b9KAKǴ\E'[ϋYݖX:sb6/ Vhd\喟uܤ|`'{&prAfM( Y(QZݮI41@qq7haǂ5c%_1KvQy';6KTlB3}j2vaCmÀm4S)ȁ V , ƣ; hT`v s(L@҂엁t߇MBJtrf<{Cl fM #lY \mpZ]K}>4_9pqӛe69+uTvKodT4sC8bNG0FL%&e`"Yd l,jD d !J#Gn+|0hP !G0iBߡ]`:i3:/@)WvLR_?)דMCJܱ 9._02H3Xŕs0b kC*>~5.y+YŸOCu8 O0N?q;ԑ58W}{5G endstream endobj 835 0 obj << /Filter /FlateDecode /Length 1865 >> stream xZ;o7+Hab0 ˈ;GT8)r &?ߐ>v;Gq~BZVEڑI(rç_t{X5h2~@A >:bw F6 VD~l)f Dj= ? h/3#bP&Qh*FK0ڧQO.{ZV)Ha$|wC` Kk[7ؙλ@ s(€V[ΚuP^ T>zM*>T= bLE Q[sV$lq"f o2bÑ9R+(N5rG6M=FYqlS<%b䙉JPW34{ZTIEף܃Ž-؋B6ÜK+Bt7f7\كa `梌!zh<C覤a#dDŝ!nlV81b)T?j-xhP>C"!|2EuK~`rQL]I $3zӑ;5sztH޲`Ch)+Q j| y}?N5٬eF={L:O )F #F&4\ N6O=~mdǛB]N"b*lI;|}yݨl+Ա\:pR9ȝ I e%2% jgg=$gօR1Cy/+EQh!hR,,+ [}*+dPiCZ;y}@Dmcl_xU+4jTH35*BSamY1n7 sI,ǖQrlGP Ǘk ^ \> stream xZ;s7 +HabH=O:|;AK'!<__VR8 )w[0a"zcM6 BPad4WCKׯ}94@8pFS96jm^=>j ta+)B__3L6ZZ01&:V9ގsLoX-}ZP R^RUz6@ $!q,sJkJ7E tt!N8xb-V "2v.#œ>0.yVf5׬qrD@Uς!CQB+Ć7 'Yۆdpd}T SMQZh{Ԭ8l]%bJie&+UB\l{QY$]r [)B6ÜK+\t7s. A00sQF=!tSf0\|QDŝ!nlv8`5c^9'S>ZѠ|DdN"V@I>?gR#wk`Ch)+Q j| irC!k$ŝY$UW[==É:$/S9Iw!=6¨Ta~`Ȅyai)0¯?2xIDl2S7Zlzҋ}W 4KcU8w_APB)K*ͫ|ҧ*SG lS <> c"kEV O6^{R%>dpY3R]q[!]Zts e^ =Ch_|q+QNd9(ޢZ@b(j΋_%x+,4r.,RT1E =.>@WG*70=Xk Xx$oTnSr_ʂL{Bc+=/87U%W%NѮ \ şx1Y➲V8vJuܳ5q/{yZlbWs8b)iw;ޏ;{\7}P1oT0 s}8b$cl<)'EZz+X K_K;"ة0]to0 7c(0cLW!8#.]f\qEt3UaGu UM WV9Ȫ1:w1 %]MPQO> stream xZMoFW̱;߀a uzhS#b D dM}ߐ#:HR\y;3;|`%b)(J"r Sq"qO%-L(\,J%QΎ8*g&N1Y#'.00%.0:vwz+BK NYIGRvsU<:|P3I;|g̩\גfT #<)zSHU\3"T|_":+VF0 n-ct`lc䊫? ֈF)~Ra0H5 JjpTi$h>Ct4 -v\"Ao/`Jn*&-Tg ^jTTGMHAn茘C@9Q̅WE!C.F  ˸d(#\ j6w\Fȴ'U{!]@; VƬ Y>YuEH>9gGGԞnArj}X_8Tw~>o\pwAՆ.Hjl<5"]hS5F/gԞfu=k.luZ6__j)0sR/Aa8&RY.?k4OVoVwfX/Io>lmq'ԉY:4+=1N[͡zuuPǵOOŇtz_-rXnnJRov~}V~ %|yQ9DOb22Phvmsvz;nfkú-[+zk /^6lxc+W ^1bxUë=߳2EDݭfĄ?Fw IamluכWj_kdc=Dэ')>5{Ȟpl"vITU[ ?vdž3뛺6*b)l '}yEG <8+7+8~kJ{}"gIrPtBm;:{Q7wB-ι=R ջR5>eDT{fO㋐󕞸 ;p ;BqⱮ~ǵ48 gDY\P62T hEUFr V2հ#+I^c.D̞e' V\#]/~ȗmu$]%8=_/nKd9PDs[.&_"|}%QJ8L$n|U4FhT2REk<0zE ]<_T288Lf:!!_Ģ'unٓX_"= |'ܬ6m6[[AMRukdždždždždž'''g^Wio O O O O 7> stream xZ;s7 +HabH=O:|-bqԠjS )? ӻ 0XG{ͦSl!0JJR+׿ܼAip Lc8DaL6/jF^VXM0w~kV/f&Wx-ARta[cnt[oG97,ז> -Q(X`)/Z*m=k?bez_pd 9~wy5a"LacT:F‡y'<Fdi a;y{aNEjvY k8ʇB]9IEއgAӡ(!w{nbʛOĬqmCFl?2.T`ũTwFy-ѽjVs_2*~C!Hg6hv߽, jG-䔈E!aN%. 9kcujm{(#w)i`q0\|QDŝ!nlv8`5c^9'S>ZѠ|DdN"V@I>?gR#wk`Ch)+Q j| irC!k$ŝY$UW[==É:$/S9Iw!=6¨Ta~`Ȅyai)0¯?2_id o|=>K4*acE:KN*HܹPV"SAaqyVy*Arf](S82ɾRZU9 E A}_(*faPe?^4>Ke *o9l}.뿯h(6-=FG«p}=8P][;IIzy1)@Z #Z/$1{NFV~04rlQEg;,P՜?\KWXh]0Y$x]cZKc1.z]};A&JTn`>z3ILQjM-侔)*D|YWE{^pnzK* $K8]+_?+)c"=ep>,xF "8gk&^|^#\,).qRKrwlwo:n7*8b<ߨ`qhHNْyiSN>d%VW!3 K;"ة0]to0 7c(0cLW!8#.]f\qEt3UaGu|jMس:E.TÛƱc^Eoٴ*ђKezӥfb Ois"K? 6btϘXbYf &՞uVxrA|Tw?AFɷ^")3Gֈhv`|SB_=tf-(.]㝁RU8پ( ;~g].W+c Y.?cdf-1k`DG5䄇Xj\R+yw ?b>ڪ9{Ca~`PGF mm O+R+ endstream endobj 941 0 obj << /Filter /FlateDecode /Length 1867 >> stream xZ;s7 +HabH=Ozj3 "5_IIVJs?t##bP&Qh*FK0ڧQ0.yVf5׬q2IEއgAӡ(!w{nbʛOQۆ ]T SMܬFy-ѽjVm[W9دRZ }W34^TIEף܃BrJĢ0aN%. 9kcujm{(#w)i`q0\|QD3;'BpjƈrOPm}ୣA k ,EʭF3/v%%tIA Cr^Q@ H_%W-7{ ]#)yM )R#biyp 6rǏ~OD&=U|Ŧ'_Q +Ա\:pR9@j΅ [G53ȳV 3B)¡IDҨ!/ZZ(*ET1 *ʧV>^*+dP)~!qJfbScl}/ ׃+4WH3:Q.쵄>x?;i ޭpJK @%ӞИ/ Y禪2@ĉ#ڵޚ2>&":ZS Â.K\=[3⻗X/Z}5g)Hq#`.}L Y~rߨIơ#;eK Ҧi}K`) Bg,=}7aESgaaTJanr(09٫_W4ΈK}3}j4L1=Wͻ {V9سȼ12 I]*MSOE2Sn/ @z4 5nBvnB._+@P58.%8^94GrzUZ+Tσa&f6,*BщKqLQS'N1X`"'x^qћe6-:'Ӹ$AjtIrH `3&hق7gss#5 LQ@F/hxdԈ`|SHC=tf-(.]Rx8(;~"'].+c Y(x #0[0b$wTOWbqIdT|߮V akC-E'^_8 endstream endobj 976 0 obj << /Filter /FlateDecode /Length 1867 >> stream xZ;s7 +HabH=O:|-bqԠjS )? ӻ 0XG{ͦSl!0JJR+׿ܼAip Lc8DaL6/jF^VXM0w~kV/f&Wx-ARta[cnt[oG97,ז> -Q(X`)/Z*m=k?bez_pd 9~wy5a"LacT:F‡y'<Fdi a;y{aNEjvY k8ʇB]9IEއgAӡ(!w{nbʛOĬqmCFl?2.T`ũTwFy-ѽjVs_2*~C!Hg6hv߽, jG-䔈E!aN%. 9kcujm{(#w)i`q0\|QDŝ!nlv8`5c^9'S>ZѠ|DdN"V@I>?gR#wk`Ch)+Q j| irC!k$ŝY$UW[==É:$/S9Iw!=6¨Ta~`Ȅyai)0¯?2_id o|=>K4*acE:KN*HܹPV"SAaqyVy*Arf](S82ɾRZU9 E A}_(*faPe?^4>Ke *o9l}.뿯h(6-=FG«p}=8P][;IIzy1)@Z #Z/$1{NFV~04rlQEg;,P՜?\KWXh]0Y$x]cZKc1.z]};A&JTn`>z3ILQjM-侔)*D|YWE{^pnzK* $K8]+_?+)c"=ep>,xF "8gk&^|^#\,).qRKrwlwo:n7*8b<ߨ`qhHNْyiSN>d%VW!3 K;"ة0]to0 7c(0cLW!8#.]f\qEt3UaGu|jMس:E.T3L0mقRҕ(庙2zuR<!g0 #F9Q(yG}tm;!jJ}GXjmzNP&?nR:ԑB[[}%?(F- endstream endobj 874 0 obj << /Type /ObjStm /N 100 /First 915 /Filter /FlateDecode /Length 1688 >> stream xZMo7W̱3 Cm [$R!+m;$ '9}3|rQI!Pϟ - Way̷ _,.6t u\W W߉uϨ?yrA?]\ wu#[3n&T&W8[r< ` ;.4vK8" eN?X8eN^o͝PϹc-( -k\>ˈC/ұnBNWZq?wX. bX*➧Up ;L{Ѽ}^Pnbt呱Ⱦyo"aΰ##7+^ЖN=g8mJP˾+ V^8%/͗^\˾y gK@ %໨Y(_k繛X/{~jzJx|IlyUՕFўCH]^ _r^ĢEFVŢ?އXd'U Z%5ŋhm6[[5ц XT}h O O O O O O O O O$Mb$Mb$}bQĢ*$Mb$Mb$Mb$Mb$XVŢ/("5aU,D`M0&hM&Dm6EË /^2dx%K /ެfˆ /O,ĢI,ĢI,Ģ8E7TI,ĢI,ĢI,ĢF,x@V endstream endobj 1012 0 obj << /Filter /FlateDecode /Length 1868 >> stream xZ;s7 +HabH=Ozj3 "5_IIVJs?t##bP&Qh*FK0ڧQ0.yVf5׬q2IEއgAӡ(!w{nbʛOQۆ ]T SMܬFy-ѽjVm[W9دRZ }W34^TIEף܃BrJĢ0aN%. 9kcujm{(#w)i`q0\|QD3;'BpjƈrOPm}ୣA k ,EʭF3/v%%tIA Cr^Q@ H_%W-7{ ]#)yM )R#biyp 6rǏ~OD&=U|Ŧ'_Q +Ա\:pR9@j΅ [G53ȳV 3B)¡IDҨ!/ZZ(*ET1 *ʧV>^*+dP)~!qJfbScl}/ ׃+4WH3:Q.쵄>x?;i ޭpJK @%ӞИ/ Y禪2@ĉ#ڵޚ2>&":ZS Â.K\=[3⻗X/Z}5g)Hq#`.}L Y~rߨIơ#;eK Ҧi}K`) Bg,=}7aESgaaTJanr(09٫_W4ΈK}3}j4L1=Wͻ {V9سȼ12 I]*MSOE2Sn/ @z4 5nBvnB._+@P58.%8^94GrzUZg>T}7A0gAUqN_c|B}.9ǠΣAwt8% jKKLR:ODU؈_uj&Y`'tmK N 8#{;>K5o4Ū#`SxE v@~ii3Z.&@)Wtd_Wj6qeZz,B4˗af Fۋs0P* yC,5.)"LT[ŸO]u [0L?M~t#haw߫WS[ endstream endobj 1047 0 obj << /Filter /FlateDecode /Length 1868 >> stream xZ;s7 +HabH=O(B.#@+:ٽVUhAv$y\Շ٠sQN(Cx=N $p03cOvw`dCgEݧ:BOm:AC+)Jinn_r`D Jӈa! M`ꨥy f4W4’G//҅I 3^;o }MO43klhCGdw۾vHcrSe򒊅nzg Glظ$$KF?~5a#LacT:F‡yG<Fdi a;yg{aNEjvY K8ʧB]9IEއgFiӠ(!e7{nd›O^ۆ ڇPǚRٹF++FZqh?XJa?vʌV "Yc$H5"S" S",L|piZ-UhECxMI݇'5^)&F`7V3Fx2JGo '`H_8Of`R5꟩+)m&uo:rdN/! { ?ze1<*Z"av~<\ o1-^ پlIqެyJ-מblc֤;qRaP*3?0bdBLU<3m4dNrA?2_iXe o{ΏrXҁqR#w$-Ȕ@Pdz.8"iAJYgJ>d=O/%FyBUfRY!J[vi{< 4Kȧcl9Lw_APB)K*ͫ|ҧ )SFg3lR *<> c"kEVj 1'~RR*q}!yNPɛ#h(Մ~( <77DP@*xRSKɹ/dL{Be>+ =/87U%W%N. \ Mşx1Y➲V8fvJeܳ5q/{yZlls8b.qw;O;{\6ƾk NL\[6[2= mQֺև̼*`LX]%Nm’ ¨z!Ӕ9$ 1ތRR4J㌸tq90W)fA֡ bUس:ͷ`"LT$z4BN9Ɂ:b8pـT Iڡ݄$M49)FPjvzKpmoGqiL}3TFja.P=T}WA0񛠪RE'>QJBm.9Ǡ@lЩ]Nms$A4x[J)ݝ*A1 ΅j5 |C) Vxr_ۦ6W23=V8RRzd|ӕ^#R:SV`X=움\M֥ 8\9F)v n6\Ecfp#0k0b$߁lBj 1S[WY]^2>o|Vtŷ07yzӠڬ3c/f` endstream endobj 1082 0 obj << /Filter /FlateDecode /Length 1869 >> stream xZ;s7 +HabH=O(B.#@+:ٽVUhAv$y\Շ٠sQN(Cx=N $p03cOvw`dCgEݧ:BOm:AC+)Jinn_r`D Jӈa! M`ꨥy f4W4’G//҅I 3^;o }MO43klhCGdw۾vHcrSe򒊅nzg Glظ$$KF?~5a#LacT:F‡yG<Fdi a;yg{aNEjvY K8ʧB]9IEއgFiӠ(!e7{nd›O^ۆ ڇPǚRٹF++FZqh?XJa?vʌV "Yc$H5"S" S",L|piZ-UhECxMI݇'5^)&F`7V3Fx2JGo '`H_8Of`R5꟩+)m&uo:rdN/! { ?ze1<*Z"av~<\ o1-^ پlIqެyJ-מblc֤;qRaP*3?0bdBLU<3m4dNrA?2_iXe o{ΏrXҁqR#w$-Ȕ@Pdz.8"iAJYgJ>d=O/%FyBUfRY!J[vi{< 4Kȧcl9Lw_APB)K*ͫ|ҧ )SFg3lR *<> c"kEVj 1'~RR*q}!yNPɛ#h(Մ~( <77DP@*xRSKɹ/dL{Be>+ =/87U%W%N. \ Mşx1Y➲V8fvJeܳ5q/{yZlls8b.qw;O;{\6ƾk NL\[6[2= mQֺև̼*`LX]%Nm’ ¨z!Ӕ9$ 1ތRR4J㌸tq90W)fA֡ bUس:ͷ`"LT$z4BN9Ɂ:b8pـT Iڡ݄$M49)FPjvzKpmoGqiL}3TFja.P=T}WA0񛠪RE'>QJBm.9Ǡ@lЩ]Nms$A4x[J)ݝ*A1 ΅j5 |C) Vxr_ۦ6W23=V8RRzd|ӕ^#R:SV`X={5[@7`|:/`!%5(i\=!'6n 䛔-(Q(@t>!&fj'+sV N'OJxh^qƟ'[\B[m\ m endstream endobj 980 0 obj << /Type /ObjStm /N 100 /First 988 /Filter /FlateDecode /Length 1695 >> stream xZMo6W̱HpQ65b>lE& ֛6}Cij@i7!9zvMȇgm @3UJ1:SvPLy\#A- ɗ`$bdbO! WKNuıZae"U 'j Ո8(S#S_RQR(9 5XĻvCgiV hHRI%LRYX꘢h.?1fˬzkr>S\(1 V$w9 jyJ0)8PjSY1Xy|}[(ܬJ4~QY>S~QBnPYJjBk2:< qtnOh`n2|2!e/è1M"bKibBSs. ݔ%j%p<רsB*gQoNy!"zԦ$ !`IWxSNR o߄^&.e]I-'tBCw2`l64X>H!]RZo?ybۮ\zsܷkƚ=W uvi'ś,_;pv]:K\,up&hs#`b9S28źZ{>7ׯכ%vܬol%vjے빸Vݕn]!g]{x>?YjGGz8C/u]We.6˫h~^^\.Q`Yw;B j8lІc6m]WG:xuC[GT o3ɌlF1c@>6\4E8&,u7v7bQG|& GP*|ȷ.zAk:l fLa㱟) Mynw~Ӎs3:V_7БۢEwizWtk:{Q1w엎Ϲcab%K*1U J MHNz~ P`|Mbiéd"r?o\;LԮt=?42.Sa¾" VNdx=vQqf ##He' VqA\|2;.q |ĥT;.oEpT|]\"%Vĥ Vw/{~ x_d&_fhV?7Lwf#Ԏ$ފv$Z;joj7śæ8l:æ8llll!C 9r0`!!!!!r,'r,'rW 'YNPYNYNYNYNYNW9IvfE*HE>-ԖhjK4'MljDq8tdɐ!'CN 9r2dِ!gCΆ 9r6lِI4I4I_Tf9閤YNYNYN/AXC endstream endobj 1117 0 obj << /Filter /FlateDecode /Length 1866 >> stream xZ;s7 +HabH=O>|zt#bqԠojVR8 )7W;0a"zCM6 BPad47CK/{;r0"i0qr0mڼ{ϫ}zYaɣZ7¬W7RZֿ&g_mIa cL oѻvlssLoX-}ZP R^Rͨ!m7ғF H'3>tS)l,= BGH1(ւ,!lu "cg:a>r/ Zn;kYZCzstWf4P,1r:%DnMlXyp8j\x0"6Y=}*XAq)՝5ڨW]16O͊M`*9UJ+3Y/7tff݋ʒ z{P"@NXF3̉:AAw<ژa=Fx\;Dmaݔ|y?(yqN\ŝ!nlv8`5c^9'S>ZѠ|DdN"V@x~:ͤMG !9da/JӨ GEk$ί⍽PvʮwZ&i/_s)N =&yyʼ&ޅ)R#biyp 6rH܋MVa>xF%lRrI8;JdJ (2l=4 *{X%Hά c ^&WAK*h!hR,,?+{XmxA-w=[+%Mm vQѿ*~_Tׯ|ҠvR^!ʥWU>S_dT䩣yS y)Us1^Kϸmtĥk |Ȥfpj&ee;B>y1)@Z #Z/$1{NFV~YNd9(ޢZ@b(՜g??_KF믰#`lHSIrZK7zK)=RG\x$详~V@*xZSK)/L{Bc+dޒ+'h׊{kWϊ{DD<,hqOY+ ^,r]ldܳ/׈z1b9KAKscZ]΢I*S &a/Vd-/HrR! / .X:}7aES'aaTJanr(09ٛ_W4ΈK}3}j4L1]w.Unžթn~ ,2vDLCiJS|*z؋D`HgR&$i$$5ZsP_m 8qoLc|$7+P@\PmUƟUŕ*l si<L:gN&pj+O;K.Ut{ GFs!w P+ʨ}-h)B0r,󀽙w ֭KW'`|:N`!5u(R=! ΂f-H3o[NABn'TB}i"xɜu)K]\V/Q]2Zhk%x{9z endstream endobj 1151 0 obj << /Filter /FlateDecode /Length 2701 >> stream x[n$7+Ds_A,5[O6,"HdVv:HY"dċ,w˧+><<,3M, vyWjaVubgƝ57pW͸qMhP|'!F7iPe u<,%ډvLO\Gf~CT;ڹ*1ҪO^)Y Z)EtG­ޱ0I.uౙurE>alN? L]{r5C-/8l;*l~ۙOވd)e,, 5`gjRL4{[)ajȳ 9fBq Qw䩴עP , j)$<-:u{_4ڇ2{7_$-IOv[L|VG>>`l'ZDa8"?i)qJa㫈 S^dSFӂx٢m)&m +F|b$y;r S.%#Uiە=/b_h(b-KB)Tk_f6\+w,:y4fh҂R)ͤ* \@\(Tw;LSi=j\?AW0okMQOW/XZ-`) c3С'r --,XЫU,+!g%EH3&u7`fGҏ*ɢbÒ/ۉH?YK$I8I-. P)G'H4D`a<,q 5=٘]7L)/9#}`8nmp(ofb>1; Rj *D8F* јv-+=~`7\4pSáS`R`t9LHGD{T(o,9gf {0vQYYm~X9ǜXmêrhMfXD*R[L1;| *1*鰥wb@EbӲ"sʪYxw6*P rY+lK@Nje]tRԒI U`޷iF 7K MGX)XXw~M *iצ%ꉪs.@),|:#(Qt )ZK*x5?1%j7] /}n X~^mzp 9ֺʡSZyW̪yĤi*zD:%Y{s[m_Xy68*v||Eb,ʶ-2ੳyMϖ(57nEJ{1}x}x^HM )7M*t\\yfUB$1x[&?PUR'ÆG}x[QQ>w^(#zšWҴhs75CD7f:c\?k\ESC7~Zr-QbDJ Xp,r,4;@+ͺb:ɅnI X=ˁN`Npڑ։;y_9w1G'h:RLVdbc:m(qKqSE@A(郁qk16Cxu#jS(XFe{cLY:cWRu>l)/̩Pʡ١e&+F×lOgR :ѽ#];_5H#aůP2;goX“2ZfV]Nٶՠ2h *siDOs{kiB{.B*[ho o#27S{>0"%iKͲXNm;1VzWzE7{ުD"y[l_7a\Gaco{cӚkdB͸́*RuUu,\Ql]VBl,+o0ͼZWTZ"n# {0 ns{O5{l endstream endobj 1187 0 obj << /Filter /FlateDecode /Length 2704 >> stream x[n$+UYj`n0m,=#HdVvuEɈ+Y|—O7|x x x~(+WfN2!oכϫA  -旧_ČZ8ߡo32~1,8u6=^{<,\)kYBɎi ]Gv'yj/Ìt13g݊֯97V:7L{DZk`W/Rk&D[CF9s 9z;ĵOEK`8#S¡cڷqCxŽMqY |?OI a&@"g*Kv,0 F6׳]! V ̪MZ͚aw]5T~z62I@e AQD%7:Жj'B16>!6ry &CSY47hĜbJ>U.g{d-Ch%I zުH&سM^fĆ8\30iw:ol2' { f!8 ;0 n0|^n>Q8AE^厍HY3 thb,>(h b:'f uj*2?U (IXjAT|N]p(S @ > 9kp<(?NYΉ4ImC#e/?B`Zxq<ˤ~M)"1Ws"C`xK_+<~Fȗż6?HOވd)e,, 5`gjRL4{[)ajȳ\3kj8(;Mr*-yŵ( 9TVA-eDbBn pFPTq/Kԝ3TZ`gguco?" ֟J `!kPB)"+\Oy&ZOM &uKgBcI0&dKcēKw\ʹLܖ wWmWv`l'!]MqC~3jjT1;ދܤdUJU>/oNG3HLaTɒZ>%aVp`vd #_zzYžh:P@5 Z(ƅ#RClUl'YthRIUJ` IPvw<r{Ը~agNj/OX^a|[P+wSg CONZ?\ZXW+X&V/BΆKfΏ;MM8~H͎BSUEWņ%K_J3 Hq[\/SSgOhoԃ4xX|nT}hz1:w1nRS^rpGpڨP >QYhK(<1Fs-GLer26YL!lw I kSH~ˑb:@'z/|cc/.D9:ςNj 9mwUʡ=gCa=55E.LsPI$k>v#ޅKqe6c9g~?*C=LLP{7zeO-a/ޖuaYQK&TzkG{IwO5ܴST,Bck4bm؏bU5 jj5p3+U9ǖHü6-1WOTKt9lۂ a*8:gߔm =ZCxVJH]3ڧ7އ)pT)7KIyפBEaVkīF;Q-Յ 8l(x`xEqS}(M2B')mxUh)M6wW^=Lt?]O{I3U4x[Dhܢ%s^cx(Iҷpa 3Xڃe0|(wte{KZ75ݣ]@g,- q-Tx9IiNC;:Q3p:f:mWӛhL@q _T %rr8nI@0nʶȶB(ۺ!}00n;fnD[mvsiK ڨlcL?=KgL @Tc-9uU3[9t6;`¨urZW[*ݡQ'=qt+)y}?92·Jfˠ@xR&Z̪)۶TpaVEw0*iN~w+Mh/E[(We $>pY5~'*߼QӻS6f[Z> stream xZMo7 W^fDR uzh !^n`i_c67:43z(JCaDh U"6R2P!רA E@ 8 Jm3 6i0k*RS*KDEJA (I7¬1*i#@=A5uDqruԗm&d'9MM/6H]K qw-zQ,э{۾K}@yAqӸl$5#G_$.D` %.Fr'1.Qv/QnaK"+Yv/4I$'II -'Ŷ9IzR$ . B+:C+:љ3Gg9:sṯNzҤ'MzҤ'Mz$;z!=gI[MzҤ'MzҤ'MzҤ'}zR 'm6({)hKJB'<ѓ'1+UMr&~]ɮdo7ٙ3gg.\8sqř3g.\:suՙIOIO''y(xғ&=iғ&=Vհ` endstream endobj 1223 0 obj << /Filter /FlateDecode /Length 2704 >> stream x[n$+UYj`n0m,=#HdVvuEɈ+Y|—O7|x x x~(+WfN2!oכϫA  -旧_ČZ8ߡo32~1,8u6=^{<,\)kYBɎi ]Gv'yj/Ìt13g݊֯97V:7L{DZk`W/Rk&D[CF9s 9z;ĵOEK`8#S¡cڷqCxŽMqY |?OI a&@"g*Kv,0 F6׳]! V ̪MZ͚aw]5T~z62I@e AQD%7:Жj'B16>!6ry &CSY47hĜbJ>U.g{d-Ch%I zުH&سM^fĆ8\30iw:ol2' { f!8 ;0 n0|^n>Q8AE^厍HY3 thb,>(h b:'f uj*2?U (IXjAT|N]p(S @ > 9kp<(?NYΉ4ImC#e/?B`Zxq<ˤ~M)"1Ws"C`xK_+<~Fȗż6?HOވd)e,, 5`gjRL4{[)ajȳ\3kj8(;Mr*-yŵ( 9TVA-eDbBn pFPTq/Kԝ3TZ`gguco?" ֟J `!kPB)"+\Oy&ZOM &uKgBcI0&dKcēKw\ʹLܖ wWmWv`l'!]MqC~3jjT1;ދܤdUJU>/oNG3HLaTɒZ>%aVp`vd #_zzYžh:P@5 Z(ƅ#RClUl'YthRIUJ` IPvw<r{Ը~agNj/OX^a|[P+wSg CONZ?\ZXW+X&V/BΆKfΏ;MM8~H͎BSUEWņ%K_J3 Hq[\/SSgOhoԃ4xX|nT}hz1:w1nRS^rpGpڨP >QYhK(<1Fs-GLer26YL!lw I k+$/$>+˱:'zw|=ccS.My:ςj9penD*uN| C3wQ 2vfKEC ~=*rP$ rYX0lK@Nje]tVԒI U`iF 7nK㇄MǺX!*X房w~M h m|U%0MgK̻U+]SuSX,%uG6qX".)8S|TO~$sKnUB4$66%@Wc&y%f:\n[*ivLs^wFURPܐf嚌nn7͹ 8`~aE1i$(۶ Cgx:Ԁ7D[r޸i*wWƜ)A rx!U'$DR5qr}U,"mɒDNTLեB"<;^cmEi8GQT)JxP kJxۣ<^U"ZJӢՠWAprד[m16rqM=.m=Whmҵ8\ǂb +`̦1]޵MDMqm+IM.4Mhh喝^'ppچSЎN*5?zNY:Af:%k'5%P}1lC[- ¶n3AqH [뎄ƒV]toރ6*ۃfOfKy`N]V-3/X0jVg{:ՖJx@whԉ`銈'i !D}^O+&ux7M-~meٹx25z4^`S *v0T|F4' &-e`!6*.^=q3#"^v~,?t]coޗw ,oPtL|h-r%tu6v|6H\J6p)Ԍk}8;"U_7_Uwu%6%~l%ºT(ykNopE q=%8"ZQao1TU&-}n/77w|3?  endstream endobj 1258 0 obj << /Filter /FlateDecode /Length 2705 >> stream x[n$+UYj`n=0m,=D nɬJm:HY"dċ,s˧+><<,3M, vyWjaVubgƝ57pW͸qMhP|'!F7iPe u<,%ډvLO\Gf~CT;ڹ*1ҪO^)Y Z)EtC­ޱ0I.uౙurE>alN? L]{r5C-[pvvx,n l,82pNPic#,7R (4C]y"ߥb: ZX-HځʽLOO|JR6Z71@G.- 6BΚ`v|8\71 /~/f$sb+MRPO=10C\/)2)uS>o?#bxDL휈6;%RJ/i4_~(+r; [~;>mLRbraRv&ń)Ag<ޟ+cfM-zIJ`^q- pyBiz*L"Bn pFPTq/Kԝ3b D(ZTYG@# Y#b"4N)l|q^~K4zhZ0[<[-M1w%]^݈O#6^{RεddT*me; nBQTYV&%R:lL~`t|urצ8Ab J) B4#c6(&K(јק%QvTP%qi\h?"*~=y ̆ke`vE'Ƭ-YZP*T4֐  j?Ǔi*M G'&m5eKV r7%a| }:4Tù zeb"liXsԄ7(4UQ%YtQlX4`;'k$ 'IZ޾E=J0Ƚ~fH=,Lw;6AѻG1]>3sㆀ)z?%w ǭL_FSH\B fo5h9"dh,# d iLeF_MI\\ l| zX.VS^Þy߭ihLM;6 )Ǝ3< :2-vvNΏgp[סT7r Nk9㘵\P,He}ָ) k+{ n ohOT ID E{YdH7uD6qqJڊ-CZql-a3 SCsQw~M m|U%0MgK̛U+aCudX,*uI6\"Ε:8S|`~$3KnF4-6Y%@Wc'GjKthݶU:xi{4W5'&MS-ҡ\!ʕܑlߛwp 8Q9cca{PmA0t4OͳoJE'!q+T], CÃ8Bx%NHLi "{7{G'❨BMjTх6Ex<ۊph8S*E֔DEA&+'wO4clY*Stjܢ%3 ^cx@Jpa Xڃe0|;.V\ j꣄8o(*SOँ F_ ʡi E8j~jtW3tCmuK&{Jz?c*ن99$ 7e[d[! m>,k3Y76UmT1&_3&p *uӱ͖r( :Zf_Ra:9|t-JШ8EO^C<ҟgLn[ %sek <)ifTpaVEw0"iN~ax-Mh/ F[(We $>pY5~?(*߼uQ{\6Qf[Z> stream x[n$+UYj`n=0m,=D nɬJm:HY",s˧+><<dJiT>pch Ld$HqY$tL|ŸD86JVge+Y?Vm0)U)g{wZЇRܙn!pwpZ]F2^7{yX'_Fc^8;tߖ٘eNZm߂-@Cp ;0 n0|^>qsTNaf @v3Еg-<](+`o80"ԩH+$W)$Oo}S;8tptYK ҢO|r+"yqRgj B(;afM;'$=[ !=)E)"ψSqEц:Q-|xF?R.'Kx?*lfz.?y#rX:\XtԀI1a8dJ FYo6ՐgHs̬@4Si+E./X(AOeRI$V<-*t*{_@?7ڇ[e"oDI:[>?,||>[O¨O%pe`!kPB)"+\䧼J٢m)&m ȕl*DˈO#6^{RεddT*me; nBQTYV&%R:lL~`t|urצ8Ab J)mFoh AhlPLP>1uOK Z @XKҸ~D uj5_f1\+wYth̚ K J4&r;̅B˟M~ǿ4&pۣtU?vT zt2%\BZ0>> |r*‚ZQ2}r6\¶iXsԄ7iJ_aҗLH?YK$iq[\/SSgOhomi 5=٘]7L,9#}`8nmp(ofbzThV902@J-O`0{h&@!FcdLF'SHcb/Ȭt5jR-H4ɏd#ST`t9PG7DnOCgol9i O1vQYєYmp:ǜp~48ܺ=8ogOr׸cwt8X3͑(Ǭ-`AZ(Sk]dNYX . hW91d~&=Q2&Qgdy4dHu@6@ђ֢qJECrrl펦#fV;UCsݠw~,N ]TxW*=F鬍y3zjĢk9yx%%&&,Q_ݹ gJ^2$r^szz ڍcbxWƦqz>jxxBmF D.ZuUBN;9^^UM#"mITxt(WHr}H77-0mpT "YXm[3Le<Sg¦-vJko܊4rWc 9*ޙtIS/)oBͪxy|J?PUFS+ÆG(Hh8S*E֔XNJDEA&q'7Xb3U4g zȢ%֓^cxJWpa Xڃe0|;n.VS\Pj8/1*SOA F_ *i/E8j~tW3tmWG훉갘L@~ _T %rr8$ 7- ¶nAqH u A֍hMծr7~{B;䫙:Ӌt&D}:R^.S=UB'CL V*Z'/ٞ~^)u GIwZkbGC ~ޓ-|_[dv z 'e8ͬ5T*.̪&_= h lYGKp*`sL!È ǣ.7˲Ïb9]cw׷Xw:]ybzƛz>Zm%dm~݄q ߸5ףKɆ΅qY[U.>&ďֱdJ7}\Q-COk 5HhTk UG׆IoEop9$ endstream endobj 1191 0 obj << /Type /ObjStm /N 100 /First 1017 /Filter /FlateDecode /Length 1687 >> stream xZMo7W̱rM:=iAM"Ҧof5kMj%Xޮ!9,s)QA%_4^RV[Z*88%b*P-2'2UNɳ2D>,( *ScѠ}A;Gr SNQ~)$Š2 J IH <SST)f4U[p؆-2%?(B-+E=7D;y^FzTg&-R!R(UN/dd }F*3 ,SE(*s JTå&TR,dEɄQT1LAț\(QsMQUU,BQT%#6$@ ZԚ:'a px@ %A]Ԭh!a.Jvt5 ofp51/4< S5i2UBu.2eCFhe])7Š)I֘/J3SDtu06UVtuU:,/K!䤅Є!'SX?~b׿\.^Q`N6w?vg5b=. ]tuKZ.f>sLɒGÓ_/gӏtv%uX%Nñc-uiA\Jw:ȍHoeq܅4ƥ.vv, unJJY/{v'IHp0G?<'7 =^>BǟyCw[m[v~t(bgՖ>Zn[~yF1HLZ{>q._/Wogs CzZ.z~|zbis## H(C^)fo$ǯs ]>sѺX+9J6bͯVV{/.g('C 'R#cnj򫡆u\i@2 @o` Hb0f6f6f6f6f6f6f6f6f6f6f?0hsq1/X2N*EF(\I؋ʭnpAT q-lY/XjAg/5Sa:d)Gʤ  kA m⎧N^}7#rߨov\;LXP'Zv:_낍IW7>{wZ}s~lA1K}Q'[|ʗOOIO~RIXsovK0#' f3r9`1Gc9s4hј1GcƜ9s2dɘSOOoO dH4I4I4I4I~R*'mw'>'I0+lvK6#'fd3r9ŌbŘ1c.\s1j՘1Wc\s5j՘OOoOdȓ4I#?_Rb{ endstream endobj 1329 0 obj << /Filter /FlateDecode /Length 2707 >> stream x[n$+UYj`n=0m,=D nɬJm:HY",s˧+><<dJiT>pch Ld$HqY$tL|ŸD86JVge+Y?Vm0)U)g{wZЇRܙn!pwpZ]F2^7{yX'_Fc^8;tߖ٘eNZm߂-@Cp ;0 n0|^>qsTNaf @v3Еg-<](+`o80"ԩH+$W)$Oo}S;8tptYK ҢO|r+"yqRgj B(;afM;'$=[ !=)E)"ψSqEц:Q-|xF?R.'Kx?*lfz.?y#rX:\XtԀI1a8dJ FYo6ՐgHs̬@4Si+E./X(AOeRI$V<-*t*{_@?7ڇ[e"oDI:[>?,||>[O¨O%pe`!kPB)"+\䧼J٢m)&m ȕl*DˈO#6^{RεddT*me; nBQTYV&%R:lL~`t|urצ8Ab J)mFoh AhlPLP>1uOK Z @XKҸ~D uj5_f1\+wYth̚ K J4&r;̅B˟M~ǿ4&pۣtU?vT zt2%\BZ0>> |r*‚ZQ2}r6\¶iXsԄ7iJ_aҗLH?YK$iq[\/SSgOhomi 5=٘]7L,9#}`8nmp(ofbzThV902@J-O`0{h&@!FcdLF'SHcb/Ȭt5jR-H4ɏd#ST`t9PG7DnOCgol9i O1vQYєYmp:ǜp~48ܺ=8ogOr׸cwt8X3͑(Ǭ-`AZ(Sk]dNYX . hW91d~&=Q2&Qgd|4bOF2  LջJB:MyhzhmLk8!9I14V-+;{?hM(' Ud}XefIü62o_OT\at< թbd-׹ID%vfNm.4ed SO4<HE@7o^Nʛ&q;P.w,^X-EjjT/.$/(A(ʦ4ڣ(}%JQF(5$*-injX09=ض16rq zR6h> stream x[n$+UYj`n=0m,=D nɬJm:HY",s˧+><<dJiT>pch Ld$HqY$tL|ŸD86JVge+Y?Vm0)U)g{wZЇRܙn!pwpZ]F2^7{yX'_Fc^8;tߖ٘eNZm߂-@Cp ;0 n0|^>qsTNaf @v3Еg-<](+`o80"ԩH+$W)$Oo}S;8tptYK ҢO|r+"yqRgj B(;afM;'$=[ !=)E)"ψSqEц:Q-|xF?R.'Kx?*lfz.?y#rX:\XtԀI1a8dJ FYo6ՐgHs̬@4Si+E./X(AOeRI$V<-*t*{_@?7ڇ[e"oDI:[>?,||>[O¨O%pe`!kPB)"+\䧼J٢m)&m ȕl*DˈO#6^{RεddT*me; nBQTYV&%R:lL~`t|urצ8Ab J)mFoh AhlPLP>1uOK Z @XKҸ~D uj5_f1\+wYth̚ K J4&r;̅B˟M~ǿ4&pۣtU?vT zt2%\BZ0>> |r*‚ZQ2}r6\¶iXsԄ7iJ_aҗLH?YK$iq[\/SSgOhomi 5=٘]7L,9#}`8nmp(ofbzThV902@J-O`0{h&@!FcdLF'SHcb/Ȭt5jR-H4ɏd#ST`t9PG7DnOCgol9i O1vQYєYmp:ǜp~48ܺ=8ogOr׸cwt8X3͑(Ǭ-`AZ(Sk]dNYX . hW91d~&=Q2&Qgd|4bOF2  LջJB:MyhzhmLk8!9I14V-+;{?hM(' UdK(rcפa^ή7C'V2:QӔx<[2j\l_F+pjm/0#H"gP o8khwUl:b'ysKͯT\fL"!#UwG/ OvLsn^HnE&iYhZnn}͍ |`~a:=8v"Xmk3Le<Sg"-vMk܊4WIwc-!aH Pr#U$$R4qr罛Ur"'f m)x*PS[t2yw EcEQ6Equ}(U2B')o8yUh)M6wSk=Lt_OnӶ _gѓgh9E!0 ȗo8'\%`6(wte{]717R]@'XT| q_TCr)`' b0m8U HD<~/Q㩻h:LVdbc:&m(Ǒ%)lm>pY5)*߼GQӛi6޺f[Z> stream x[n$+UYj`n=0m,=D nɬJm:HY",s˧+><<dJiT>pch Ld$HqY$tL|ŸD86JVge+Y?Vm0)U)g{wZЇRܙn!pwpZ]F2^7{yX'_Fc^8;tߖ٘eNZm߂-@Cp ;0 n0|^>qsTNaf @v3Еg-<](+`o80"ԩH+$W)$Oo}S;8tptYK ҢO|r+"yqRgj B(;afM;'$=[ !=)E)"ψSqEц:Q-|xF?R.'Kx?*lfz.?y#rX:\XtԀI1a8dJ FYo6ՐgHs̬@4Si+E./X(AOeRI$V<-*t*{_@?7ڇ[e"oDI:[>?,||>[O¨O%pe`!kPB)"+\䧼J٢m)&m ȕl*DˈO#6^{RεddT*me; nBQTYV&%R:lL~`t|urצ8Ab J)mFoh AhlPLP>1uOK Z @XKҸ~D uj5_f1\+wYth̚ K J4&r;̅B˟M~ǿ4&pۣtU?vT zt2%\BZ0>> |r*‚ZQ2}r6\¶iXsԄ7iJ_aҗLH?YK$iq[\/SSgOhomi 5=٘]7L,9#}`8nmp(ofbzThV902@J-O`0{h&@!FcdLF'SHcb/Ȭt5jR-H4ɏd#ST`t9PG7DnOCgol9i O1vQYєYmp:ǜp~48ܺ=8ogOr׸cwt8X3͑(Ǭ-`AZ(Sk]dNYX . hW91d~&=Q2&Qgd|4bOF2  LջJB:MyhzhmLk8!9I14V-+;{?hM(' UdK(rcפa^ή7C'V2:QӔx<[2j\l_F+pjm/0#H"gP o8khwUl:b'ysKͯT\fL"!#ᢻUΧtW;9^WS V}%W"ITx[41WH?s=K77Cb0OE6/ ms2##x|S%?.i [*s7t(
IaNN`dRʛ&<@yf`yG[&(:Jשv]U^aCC.(J((C;E R =aMWԴhs75DCD!Г;myc Y*㇛ndxFYG<8 le 8'\%`6(wte{]7;u]4A`Dԍ qߖTr`' b0m8U HE<~/Q h< 9X ewLYP"'#KuS" ٦ l)Zwd݈T*wƯiQǨ}5Sz΄O6[sꢼ'Jdh ~Q:ٯTp,CNtHpKx밊T}|U-g0d!>Bf^szG1+ei-D {0 :[` endstream endobj 1297 0 obj << /Type /ObjStm /N 100 /First 1017 /Filter /FlateDecode /Length 1690 >> stream xZ]oW}ϯewghCK-ʃ J9gf=R1`V{̝sOR2q4 E1)e` Sj)̆WG, -B.xJP)"K8ձ]%a3I#4"&I5~ E waE% LA J!UCBaB5_)6 Ewb(RD1ECb j^qزFzS †d=$  { %J-h $SE{TGcPv%lf7DR6搩HѨB%b0@JJШ^jLJ"# e٧j2_"M. ʆ*!]$I0B1$kS: %jm_0vA$A[b<Ơlb>慆cTVC3?mFŘպbЍk9&xfB[qSPt 0) i%X^8uG"JՄ(4ˍ.@LfmPmAAe1ݺE?oY,kO>[/]WOus]"9|MOIu ]CNDCECvN<]R~x8l}\#ݾ}b'Ɨȝw%ٗ8tݗη/>%I'e׸㒆NqEzR'X_2⢛aKN/E:=uvў])b6+I>ˇ=\Yv&iHp sV??كK|ӣ߶/1ݰ@q莦QtZ:}+S?wsF pX}>979ϣz=_-hCӻl='/k68Dc:0n鹨OCߞnun?zZ5tjA1JIOIOoLO}sVOzRѓr~OOJp%\ .r 9хBNt!':stљ3GgΜ99srə3'gNΜ99sv̓4I4I Iyғ<uғ&=iғ&=iғ&=iғ&=iғWO]zR|?)?IW\n).r 9ŅBNq!S\)\:suՙ3Wg\:su͙37gnܜMOIOIO2I6Izҿc endstream endobj 1435 0 obj << /Filter /FlateDecode /Length 2709 >> stream x[n$+UYj`n0m,=#HdVvuE+Y|—O7|x x x~(+WfN2!o˷ϫA~~erĢeBKrӋXS bF-Y `ڷ+2~1,8ϯlz*Hbsi8G|_͂Jv$L-P](:j6;9Ϋ\U{f^)UW^9V~͹tҹ3[iAB_LLчL)=*s<swlמ>- I9.oC(xڦB l> a&@"g*sv,0 {!!l:gϻB>`/@U5;3鬥!@j&(ljeFz  AQD%7:ɰЖj'Bh`ߎ(hb:'f uj* ?U (IDjAT|&N]H(Sb 5qolcܼH?NYI4ImCwG#{E=yOgneg "GT\DC`xK_+<~F(%6?hOOވd)e,, 5`gjRL4Qz[)Mm5Y R3kj8(;M\ZkQ( JssYe+ Vƽ/QwΖϴϥ8-&>#06-0js d?i)qJa㫈 )/uD)iDyh[ *4Fcr%[J/20ƈ'͇>s+=r-@Jۮ>cNB.g6ըbwwIcɪ}:_,ߜܵ)f*%;|J[!A1%hL˒(E;ցP(@4.B݀~;yY v<fk҂R)ͤ* \NsPgx2M q]Ͼ6_F=] `j"WV$@B18~8`AVTLx_ -Bq8?<45{#7;n*,׸mX4`-ROID$iy($[[`a<,c*Mb|6f4}W. S*~*KH[5ۇ=*c4wM q '0=4Fӿh刐 `2TN&F#)1dV}5$qmse!$D=X1]0 =[pmSgyt4eV[1gp[סT7r Nk9㘵\P,He}ָ) kėqCgAU.hu&nAxqE̥S|0I U`Ui@FkcZ)=,V ̱MUlYpO͕ @kB9 ;\#Njy]ym:f ўZDyNSlɨ ~s>K|{4Ù⫵fÌ#A^vXUe-6kS9rQ1T^ZwOvLs*^JU:ibz~znnͭ `~aCyG#^m2c%x*|Sε%.i [*swVu:IP7`ĄSʻ&&ď@|-> stream x\KoW L${s[NQ%?U$fϴ9=!WOr̗-|tÇwhዲye$.|twX.G,[&/7Ԛi V0)=Qeqӧ%0 )e1mreOXW(_Zផg)|n{ P,H $s>^H#gY@ f&fM0L:kiI*? =Z$'!F7iPe u2,%ډ8&'F)ط#3?ϡRxd9Es3G;;SZJ1?=ػKւ>vt; ~[0I.I :9"06$ LCg}YUЖ/8l; #/3 7'Hܱ)k`7C]y"b: ZX-HځʽBgOrJR>Z71@G)- G!gM0;r.7/~/f$s+MR{/?bzQOyޓ"ojY[)"1W9m8%RJ/i4_~Q7$"v glSowy7"1YJ˅EH ؙC BjVJ`S[ y?T<̚Z(! N<Z 򂁅\VA-eDbBk}Uq/Kԝ3sib3 D(Z\YFF *DiR*E~K4zhZ0,A-ږb &\ɖK$1Ij᥻.JA\nKF@;Ҷ+yX馸!M5]nX*C F7'wm$JdN-fVpvd #_$}ujP0. GP7}޲ní2~gE'ƬZTJ3Ji!S\(Tw;LSi=j\?AW0okM'QOW/XZ-`) c3С'r --,XЫU,+!g%lfΏE:MM8~H͎J?$5n,})D)nTD6'IZ޾E"=J0(~f֖z0X8Cӣ.MչqC ʒ;gF ba&*FSH\B f5h9"dh,# d iLeF_MI\\!yYH6r>IQV =,@c) utaO44zƦ>scuM;;si{Yuy|78{CƍiD8fm!t8 b@Eb_5"&sZxwA\ĐznDD [:^\si1dHww>ژqJCslmchh[V,Ss%w~КPN@ (rcפa^ήwC'V2:QӔx<[2j\l_F+pjm0#H"gP o8khwUl:b'ysKͯT\fL"!#᪻*S WyĤi*zF^{sp1_krňcn>mۥ a*X : ߔsmɡ vZCVJ]UOxR(&Ma7$!1I4+]yއYbn'"65xEwpP73\Z9Q7Q-IF@5%#Y^+Zmbd@A$ZAOn_gўgheDE!F6~Xp1h2܃v0\]ުMAmЙ\.55lBqhw.U#1J01 NUB;RYQ5Sptm]]dLVWGdLՏc=mȒ%)lWuwcd;fCnDknv{ ~=Ĩl b5Sz΄ UyO(o\2֩ku_mYJF͑.yҝ֯di_u Vf(,^IilN3U 6ՠ h *sWiDOs+[iB{3B*ho R\*sL!È ǣ.u 7cb9]cww> stream x\KoW L${s[NQ%?U$fϴ9=!WOr̗-|tÇwhዲye$.|twX.G,[&/7Ԛi V0)=Qeqӧ%0 )e1mreOXW(_Zផg)|n{ P,H $s>^H#gY@ f&fM0L:kiI*? =Z$'!F7iPe u2,%ډ8&'F)ط#3?ϡRxd9Es3G;;SZJ1?=ػKւ>vt; ~[0I.I :9"06$ LCg}YUЖ/8l; #/3 7'Hܱ)k`7C]y"b: ZX-HځʽBgOrJR>Z71@G)- G!gM0;r.7/~/f$s+MR{/?bzQOyޓ"ojY[)"1W9m8%RJ/i4_~Q7$"v glSowy7"1YJ˅EH ؙC BjVJ`S[ y?T<̚Z(! N<Z 򂁅\VA-eDbBk}Uq/Kԝ3sib3 D(Z\YFF *DiR*E~K4zhZ0,A-ږb &\ɖK$1Ij᥻.JA\nKF@;Ҷ+yX馸!M5]nX*C F7'wm$JdN-fVpvd #_$}ujP0. GP7}޲ní2~gE'ƬZTJ3Ji!S\(Tw;LSi=j\?AW0okM'QOW/XZ-`) c3С'r --,XЫU,+!g%lfΏE:MM8~H͎J?$5n,})D)nTD6'IZ޾E"=J0(~f֖z0X8Cӣ.MչqC ʒ;gF ba&*FSH\B f5h9"dh,# d iLeF_MI\\!yYH6r>IQV =,@c) utaO44zƦ>scuM;;si{Yuy|78{CƍiD8fm!t8 b@Eb_5"&sZxwA\ĐznDD [:^\si1dHww>ژqJCslmchh[V,Ss%w~КPN@ (rcפa^ήwC'V2:QӔx<[2j\l_F+pjm0#H"gP o8khwUl:b'ysKͯT\fL"!#᪻*S WyĤi*zF^{sp1_krňcn>mۥ a*X : ߔsmɡ vZCVJ]UOxR(&Ma7$!1I4+]yއYbn'"65xEwpP73\Z9Q7Q-IF@5%#Y^+Zmbd@A$ZAOn_gўgheDE!F6~XpWFT90\@!:yLf.s\k܄8oa֤rbJ b0* G;UHk~TP:`W!6SՁ>r;?+IxzdI@b [d!~Ɔ>tYh33Y{O0Um bTbsHgB @TN NGb[sS[%t2#`ǨuBZW[*Q's+Et<*)z}^29]F·xJf,ˠ@xR`[*{UM5¬\IUӜV^P HyW$l" U%7S{>0"5iKͲXNMQ1V&zWLس6 E7{ު&E"y[ l_7a\Ga!> stream xZM7ϯUd0q9$^Cv9(c!#y[ d+60-cHcMcUԍLRQ(I7*iFhjܘZ܄{EdfWLSQJaUľų1"Db0ϒMAI,-՜ͪ>`5 E1BjGEYn)|΄tR2PXY~ S-r")wV`tKI^LӈhO#:h͢@#-,,cLY;ai66~,#_LsKL%u$TT-j)Rɶx)%*5%jb$t``jTTsoѬsQڴ[ZhJ$vKb~5SSZR+6j-eB3w4Cl!QS .#LhIZ$DLLm,=!aiŞyO.D%EFlCl2Tr_ Dlt,*1FK66J_1 -QC7K_57ƫ7{͏4>^w/p=~=>|9(ko; CC@E =҃z|Hd~h|}1_? _/w*.9ȃx,|j. ߹ .GrIKD\pF$R8.K C9. P>O$b2H Gq悸;SbsɈ}ɗC9.EG/'R</5"]H**9޸\1:/HbOj|i `OV7?;op7Ovͫ?aR\ǐ]c`į=K_T`7_u͚4j_6$S'W~Mx{\*avzinⴷCw>'gB7>{|3ꇵqכ5:9z۾ݬ連?vvh%,opMjs*L_򻩖^ykr`d7Սv07̎̎̎̎̎,,,,,,,,,,9:rOt8P;1"$Q$~ڣ2P 7R{ZGb:(VfbDy~&6X1pƦ}6\[?)qe=lzpyViC3lrƝnNVI$QE役ipA,^*rv/?RՂ/5:p>Ny*>,.\ 5ӱj '^Vq^?"g{\$`8cO}/<+'l*񡰝z{ޢ'-zҢ'-zҢ'-zg'T=T¯\?4OIrKr%\I.$r 9ɅBNrdudududududududududuّ#gGΎ9;r.II'Гڢ''-zҢ'-zҢ'-zҢ'-zҢ'SOwIv\$ ~?IIO[FzRqR\n).r 9ՅBNu!S:ruՑ#7Gn9rs͑#7Gnd vcy?iѓ=iѓ=O'㥜;=I=zB~dU endstream endobj 1542 0 obj << /Filter /FlateDecode /Length 2714 >> stream x\KoW L${s[NQ%?U$fϴ9=!WOr̗-|tÇwhዲye$.|twX.G,[&/7Ԛi V0)=Qeqӧ%0 )e1mreOXW(_Zផg)|n{ P,H $s>^H#gY@ f&fM0L:kiI*? =Z$'!F7iPe u2,%ډ8&'F)ط#3?ϡRxd9Es3G;;SZJ1?=ػKւ>vt; ~[0I.I :9"06$ LCg}YUЖ/8l; #/3 7'Hܱ)k`7C]y"b: ZX-HځʽBgOrJR>Z71@G)- G!gM0;r.7/~/f$s+MR{/?bzQOyޓ"ojY[)"1W9m8%RJ/i4_~Q7$"v glSowy7"1YJ˅EH ؙC BjVJ`S[ y?T<̚Z(! N<Z 򂁅\VA-eDbBk}Uq/Kԝ3sib3 D(Z\YFF *DiR*E~K4zhZ0,A-ږb &\ɖK$1Ij᥻.JA\nKF@;Ҷ+yX馸!M5]nX*C F7'wm$JdN-fVpvd #_$}ujP0. GP7}޲ní2~gE'ƬZTJ3Ji!S\(Tw;LSi=j\?AW0okM'QOW/XZ-`) c3С'r --,XЫU,+!g%lfΏE:MM8~H͎J?$5n,})D)nTD6'IZ޾E"=J0(~f֖z0X8Cӣ.MչqC ʒ;gF ba&*FSH\B f5h9"dh,# d iLeF_MI\\!yYH6r>IQV =,@c) utaO44zƦ>scuM;;si{Yuy|78{CƍiD8fm!t8 b@Eb_5"&sZxwA\ĐznDD [:^\si1dHww>ژqJCslmchh[V,Ss%w~КPN@ (rcפa^ήwC'V2:QӔx<[2j\l_F+pjm0#H"gP o8khwUl:b'ysKͯT\fL"!#᪻*S WyĤi*zF^{sp1_krňcn>mۥ a*X : ߔsmɡ vZCVJ]UOxR(&Ma7$!1I4+]yއYbn'"65xEwpP73\Z9Q7Q-IF@5%#Y^+Zmbd@A$ZAOn_gўgheDE!F6~XpWFT90\@!:yLf.s\k܄8oa֤rbJ b0 KyG,~~=PN:ՕʹxuOOJ8cG9YyȱinCUތu aoƄ 1* 1WY^3!p *-s|zW̫-3/X)2jVV{: zhnb'jO^L&wx#R/sea:{25֚4;AU@;U#+ J#z_JKZUٸ@{ 0⊄M$T$fjFD<=>=uYN8ao*߼QJ2{6ig[5ZWo=4"f endstream endobj 1577 0 obj << /Filter /FlateDecode /Length 2714 >> stream x\KoW L${s[NQ%?U$fϴ9=!WOr̗-|tÇwhዲye$.|twX.G,[&/7Ԛi V0)=Qeqӧ%0 )e1mreOXW(_Zផg)|n{ P,H $s>^H#gY@ f&fM0L:kiI*? =Z$'!F7iPe u2,%ډ8&'F)ط#3?ϡRxd9Es3G;;SZJ1?=ػKւ>vt; ~[0I.I :9"06$ LCg}YUЖ/8l; #/3 7'Hܱ)k`7C]y"b: ZX-HځʽBgOrJR>Z71@G)- G!gM0;r.7/~/f$s+MR{/?bzQOyޓ"ojY[)"1W9m8%RJ/i4_~Q7$"v glSowy7"1YJ˅EH ؙC BjVJ`S[ y?T<̚Z(! N<Z 򂁅\VA-eDbBk}Uq/Kԝ3sib3 D(Z\YFF *DiR*E~K4zhZ0,A-ږb &\ɖK$1Ij᥻.JA\nKF@;Ҷ+yX馸!M5]nX*C F7'wm$JdN-fVpvd #_$}ujP0. GP7}޲ní2~gE'ƬZTJ3Ji!S\(Tw;LSi=j\?AW0okM'QOW/XZ-`) c3С'r --,XЫU,+!g%lfΏE:MM8~H͎J?$5n,})D)nTD6'IZ޾E"=J0(~f֖z0X8Cӣ.MչqC ʒ;gF ba&*FSH\B f5h9"dh,# d iLeF_MI\\!yYH6r>IQV =,@c) utaO44zƦ>scuM;;si{Yuy|78{CƍiD8fm!t8 b@Eb_5"&sZxwA\ĐznDD [:^\si1dHww>ژqJCslmchh[V,Ss%w~КPN@ (rcפa^ήwC'V2:QӔx<[2j\l_F+pjm0#H"gP o8khwUl:b'ysKͯT\fL"!#᪻*S WyĤi*zF^{sp1_krňcn>mۥ a*X : ߔsmɡ vZCVJ]UOxR(&Ma7$!1I4+]yއYbn'"65xEwpP73\Z9Q7Q-IF@5%#Y^+Zmbd@A$ZAOn_gўgheDE!F6~XpWFT90\@!:yLf.s\k܄8oa֤rbJ b0 KyG,~~=PN:ՕʹxuOOJ8cG9YyȱinCUތu aoƄ 1* 1WY^3!p *-sj.nOޖ&N_=OR=4JItyɓ>נ(Esπ&Gd-pxkRJP|ʘ%uek <)孵if (JWiU˯ҙw҄jrU|. #d\! )7S aDkߗʋeAX[bͻ~3=hUيB7oŎ0ܿV$^/.~8Ƶ>f ߪ7C86%~lw<Q2 % Ϊ^΋DEG$~BK4*- [ä7b~s/Ϳ甆 endstream endobj 1612 0 obj << /Filter /FlateDecode /Length 2715 >> stream x\KoW L${s[NQ%?U$fϴ9=!d'k̗-|tÇwhዲye$.|twX.G,[&/71u/K'[ (@hKҸ~D j-_f6*w;Y4̚ K B4&@r'̅B˟M~ǿ0&pۣtY?6wd yt2&勜B0>> |rJ‚ZQ4}r6\±iX䄣7xhL_aҗLH?YS$q$[\/SUgOhoan&(#(geFwy0%C識`ḵRá}ߣ1JyҔPryC4{0j0*&CdmT>B{Bf%V(lAצ?WH^ OAR׃C j Ck`=ou ѩ̦8qFgACSfENs^yipV>'uzp ΞAeׯ1)ƀtpf+QYk?]΂PQ׬;ɜҰ]A|iW>1D^~&=Q2&^gdW\1'#RjNp0jj=Naz~`nt ˊ{jJzc' p/=zMy7D{je.9Lyӳ%&Δ,e gG9:=~[ƱE+;d8=K[xm~5<榲6} WٽV>]X* Vy%S*IdXF^$9:@ 8*wx1"鵱x)nz)pxVΦ7\[b턝హiJ`=wWc)Or$Uƺ wMy\Ɋ>rX2I4?S~/Æ טy9|'nM6'))^*XQkz"$ zR&R|1z{51~+jyV|"c]%QG"@sʶ^7f{k܄oaԤR 16}AY#hwbs? A7w\db3,^]ۿ?nQ- RLyInCUތ[ ,an*bo6*bfla[ږ 9uUW'coL fZޯ~dmI#/y%ol"&u+ƮYR^g,^I*o-MN37ėԪh{ϥ_%W=o_o m9kr.'G۠CRYxJ.:0TGq1`J:hhus~bޥ56א/Xj> stream xZMGϯ1{. 8vw9(c!#9q}=f+l@EJqq  @RԁRnDA6 <.Ē>4I"ȥ#&A OqEIBR{IgxDC5Ib3Ng&m+iI)^ʤQ!.q`P#$b bq (U"b%v)Vbcv1qf@Ik eX3D;jRf$ʡC3eY`*eK PGD[GDJUmFKҨL]Lkß;sĸbMLFҳ4̃jIf2ڳ ՖJ-t_R&jTMKGL Ƀ,r2YQ~HiGXV-b@D&a=!N@}ZϡiA:xH&*܊=(ckvT$zs_ƅA\pV/`E\tؑwzaP v4^b4qI2HɧtqITQr_2bi%iKAȮ.Kܿ>q%spgbuNHl^O_x޽b|~dVWo07/v˿baLkخzϷV?'+Oi|AߝR?ZWvwjM:y׻ 7G~Mx{ٜ#av. O?/jh|7i[ίWk 9~['ofofzw_׫7`'iۇK:V/[7V;p[DS~3f&_,<_hn:8-řřřřřřřřՙՙՙՙՙՙՙՙՙubrt Qx;ϚS=Gk"Ϊ `3.str{|2w":;w΢ډpA,*r b+[/R >־MzP`ps ]:,z䴴L5#o싆#J;:IIIIOIdR~'a֓-rKt!'\I.$r 9Ʌə3'gΜ9;svٙ3ggΜ8sqřK\EOZEOZ$䡈IIIIzRJO:t'e2'e-rKu!S]ȩ.Tr 9͙ͅ37gnܜ9ssv˜Cpā:8'-zҢ'-zҢ'$]Md endstream endobj 1647 0 obj << /Filter /FlateDecode /Length 2713 >> stream x\n$+UYj`n0m,=#HdVvPb% +?|C)P~(+WfN2!o˷ϫN.ôp:bQ2%|~E,ϩ 1ά?wk:J/xX,\>Pʧ5Q,xdGA0LЅfJ`^aF:hRuv~h噳nEל +~5$XԚi V)=Ҩ2c8FOviSHpm>y%XTg(]យgvZ> =ZL{a9`܎IFa/3M, vqWljaVubgƝ57pW͸qMhP|Y'!F7iPe u<,%ꉐVLO\oGf.ϡRxdW*\1ҪO`.Y ];7nULrgԽ<̓- c%pk^8@ڵwh/7>˜<*`;~_ <``5@Hh&Ay= *R:MwFʚ4@V^&RQ EGA7~>F4Qۑf퉯R0@IR 63v:h@/FbbUYA7K_ #U lJԪ?tˏ{Pbl-<8_S~E("1Wr"ڬC{K+~C[O(qe!PB!"+\\Oy*OM&uIgBcI'dJ ǓSwʹLܖwWmv1m'!\MrC~#jrT1;ދ\1eURU>/&oG3LaDɒZ> ۃG4O$}ubP0. WP7m޲nfí20gE#ʬZ TJ3Jj!S\(gO4%rݷ&[樧4yXM_B0ݔHS:&&,Պ*EH3v&'ew$`dMSeE Sf"lE*dMMAOqҾpOmT9r=A鿵wCӢ. 幋rC 9gJ a*Gcf).:Fi*a2aTLڨd}R'݁JV&Q؂$M,$>3&˱:'zv|-cSΙMq:j9洽|N0:<=уʮ_cS`4Gt֐~:iÃPQ׬;ɜҰ 4+P?` ➨r@3t 2@Nj+b.擀LSNp0jj=Naz~`nt ˊ{j$OZ H89^{4k5nD\F#sT /gKDMs)Ys_59#fImbnMG,/}n UʞI$D:\eҲ[|JvcUA05`W25ٞ4M_Hs֋3ts3}nnN  {u]b;|m<m8 e<+AM:זj;a58lnEثp[1Q{'Ba*{N)@}(&mҘD\&Oh&<^cK[=K𝸅7D{$˫`EmZ̺ !8oHu~8\Nt=h<Ԉ&Q [0wKDn+ۛ4n:)&MH[ S&Pj`WP^;fQ{DUhl^<{up+aПԽqt@ur=.I@bʲHC-HBtyV{3.fd vT-7&;DP^Vj,1+Q98m.SWpqP|2`6ɨuZ~J֖TJtK$q:Eɛ{}49"H[bcW,),VI*o-MN3'ėԪh{ϥ_%W=ɻ҄:kr.'Gkpi> stream xX=s#7 +X&x&=αL*MQ2&?}稰 @.aʨY0>@b #k>77GRM?l~:Sio!f}t.z!9FwjMS"uwPh {c%0ows"3 e\}v݂gˀ=r]ˬQkZQ[;zZIl3x_}uLIsځ&Ͷ`骎5>#kퟐStFdM@T4q(؅*/UO|Afڂބ9eS6:ug"G ưuG Y`emV1tOhUl lqLXT'57ðf̸OqSelA!|fR+&zi-g͆NQpb? ΢T!X ǻ<Ť!vj6G4 B6YrD4Bajd|ܪHb-V.pXv dΨlWױZBr8ۧHh2)M'6/Ope`I~zf(58;Y# ~ >`@1<N[XWM~DE4{~cF𞋿RfIǻ14Ռ10fUD>,aԊL6M'qxJwJ6u_;ڱJ+`(fQn"ܔ v^Hapj{ܬ}4 -Gh[Ml&B٫?1[iR}*Mr~Ujlnw "+_ _{fz7[²Á{o㇀|iwB<'KR(T֥X/b]鳛4-XI%*FյhH`,xjټy[9[Njoq\ [,m;Umv9rÕŷk, j(.tnopf;'萜cLcsy}~~W3b.ǶkE-2V'%ӵU},V%[MCֆǣmt-Wk&ДoҌHf ѽd*cKzMX'[* gvS}%[ӨXj 0cX֋\.PqnBs!KO[_M endstream endobj 1716 0 obj << /Filter /FlateDecode /Length 1331 >> stream xX=s7 WL 1=LN4qL.rM~%VYȅ]F}TF]mb$l`WYOu>;%&hraԻrH{03soW|R^1n)IDjwPl {c0Ղ92.B>neye֨K cG c+&zj-g͆N^pb? ΢T!X ]_bKQ;YCjW;c!, 9"p!E0 52^>lnԵ\l$1UwB[,;Jd2g6E}X-ec!tuS$4ؔwo2i~?=ҀZYQF,?tj0DX]^L-ao,ɫڇ&hB`G~MD\amo=Da x_S3Do14Ռ10fUD>,aԊL6ǛM?qxo6l~~>x_4jƊ+}  E&opS z!f=J2rn,ȾKH'ku 8򲇣m^4Iw8 e>u;cx7@ä$U^D6NDV$AoeK xNP^K_źg71$ܳi*[Pܓ0'KT{)}gBaqP`GBKg&Tv ~ zy.w?ϵï?]jVLX3`Vc}VFc}q53_u زbviHڰ4E͙ۜjr~/TiӬ»!gy4{R%I9`zN%Y*CjS}.[cXjM0c֋\,guSl{ endstream endobj 1615 0 obj << /Type /ObjStm /N 100 /First 1010 /Filter /FlateDecode /Length 1718 >> stream xZMo7W̱r߀ uzhS!b D dM}p5r4˖Z,`O+p%ızrı@$) $ @B6Px37$'=y:Dz$YP!qEUZ{P%@*-1Ɉ!C;<-.}U4/+ 08SR3B xF@MD"$'HCB B!5-R)Qb4."- 1|@=Q % ԡ*A" mbJ8rv@`u@5Н]Y; YOydijF< Y5kr,Q"U'5&*M()PRRISPK&!1UmiIjdMU T(jCj7!sA0M*v6ԺeL˭[@W9 ~f7tZUūJ2#]QLZ..') gV6GznvC#z O8\5ԿVt돟!ӏ ?r:[ N7pgh~^]O?Qx] :ٍJdn܊Mp9ns+P g o YYY7foޘ1{c7`1cŖ6'\:w',r]ATIcv5^E7.\Gp;RI Qbqܑ̘ޥj8CWsSG )!<1VtOXr<=JwYv.Z9t!w&'ɉ؋Wk'CQ^7Xς.5ڡ`6>c7z8T1O'~'~'~'~O _I6I?r?OhK4%wDst9:hN4G's2dɘ1'cNƜ9s2l٘1gcƜ9s6\F?iF?iF?i8I?~o6w~O*'=>Iy?~R#?)쑟ekOڮd͆~]UssmUzOկ>2{L+}S̾)f3CՌjP5c1T\s5b`bd (OOS0; endstream endobj 1751 0 obj << /Filter /FlateDecode /Length 1528 >> stream xY=o7+X&r t%ĝ"uACrG.)klG s͐UwZFƓ $5y7hЗn-R[pA~jAQ!K~=@ڇ}6 rQƨAF)rJk>4X64@zhH%4>jm^쁖PF^N: 1}uq+Ñormx{I!,,$2Q҂&`jZgD97kKΖ$5! 5']2hari[VvD>v?si4H0LC"Q1lu(S|#a)ü90ڭrg c445kh3K0;y[Ag\IK0d:?G;58;T޲G@$|iMu}ȍyS _/i&ҹ+OE_GCxOe9NUIÛE/nTFCf*bY`y5a%v jG&?' Jolz>/ލxXYJK^i7@05,2R;lFGO3gDo,s kwd$ZFn%o`I[&82e/hzy@}UND)f3$H\iFlԸ.ְ};8PAвB!Sj_^uWbO{5nzt,sƤlV^z4$N`,O> stream xYMs5W ]JU6.r3ⴅB9>O5cLR~ݒzU(q}F>@$qIM^|E_ Q^jKx.:h-H:#0sɏ;(rQ8B@{wgi eZO"}?t+SԆfX IdGK=r^ʨIG4..zE|8ҵRN /)e6WWtU& VZЄuUMWSL]<\wmْ2nZXl$/+oZᖕ'D8W?JƕCyzĚIZ3HC- qMbP D=<\׷X7>Evk";O$]E={*qO,z)vb52cTaL[J< G-kPӏ?y7mce)ml.x}Ԕ;HnJh==̴{UY1y}his%mȔCeW9.%vm}"qclRϺX2@[?B x6O}ye^=OD6ʻIgQRPӱIU4Zzѐ8㎦.rXM:cˀ6 8߮] '0|ӥS(w5/+rxi/EXzϵ >ʄE==-q㻉Ca1gqYb/XʡZP!\ $\ZDK+rjyimbIrk [EגM7[IQ_UpФ\zZNb/{@gT`spWu> stream xYMs5W ]JU6)r3ⴅB9>O5?0`kWj_?=J*xFA$qIM^|E^\ z(/%<]$Jz ҹ(rQ8B@{sgi eZO"}?t+SԆfX IdGK=r^ʨIG4..zE|8ҵRN /)e6WWtU& VZЄuUMWSL]<\wmْ2nZXl$/+oZᖕ'?yڀN9464H0LC"Q1lu(S|#a)ü90ڭrg c445khʇb]Y٤Xbc ,*a0lIzD,f.N-('aNR[KmV6b^ FkՑm [==D=U3xgveǣI[<ӣƉ-#֨p (i%B1N\!5L%;e>;kaݴrbQ\<2dh.Xnl%v4)a3K>Fmc dC= N@^VP(W OALA*YG@$|iMu}yS _/i&ҹ+OEO==h=SYoާ͢n7*VX!3Ft^tÚ0|Ԓ_5ȣUf!.2bx/6lz>?F|l,ͥ rgB&L-,~rfǰ~IMe4G^rX( e#Sⷦv_v*r~+Qδg3$H\iAlx.ְvq?_MMEB<Ծ2Ş'k"^O f$zt,cƤlV^z4$N`,o<Ӷyr.)K&˖pgevTmrTMJrgP%Njk8 Ggߵ+qS1ֵ8y"?.\w4}u1j K_ dtf?L7?|NZQaRgfZJ9qaqLK!Vs-]AGC<u|7q9:,9+]+[9TPbS1 ?K?+r \|cQY&Y28WWzS'q8^\ Hg̫r%uw|Ui=Brkn[M/A溗͕L 3k_eD/X|9 „WH@Gtw\ڝOUtCY:vv Y,>)X]vLwm";lʡu6K~D endstream endobj 1719 0 obj << /Type /ObjStm /N 100 /First 1012 /Filter /FlateDecode /Length 1703 >> stream x[MoGW1tUK19$a$BY do>1WIJKblP T* ;G57"!PK;( E4O %254THТHk SV$5$$ b'QIKn9&qfmy*\zN")5ྚb!z.R!9C$S )7JƅPcCLꅢ4-S) d \BCb.c4!pJI(S Sj-0 v.D5DKCVs@{ q%eO(' 7qMsWHGq28&*J:>i!H!9+:f}fHjڇPZXLj AsArj:&e:I&.G-VGZ$,C3b?4C4Asjʹ;C *?"HNA[M31HlFꫂ=K^Zsзi3G?9w/k,WՉs?O']sJٚNȻ1NX:(>:Gݓٟf"=H dVi]PPiI_\E.<60c䃱?;2{;?y:{5G2FJP8 A͠ʷwE 3s"%ZgLl%X #/DjZk%ud_"wFNWyԂ`)jȋ% /jOwϘWS/!vލyINg[E[ik-xcђ]%GKK~Ӓæ`K-c)Eo-+R2HՔןZl8vfߺeMBWL]t~v\5[}Q[u2IϨoX^wdq:۩|\1;<Ղd8z-V6GrmG.j]3n|57^zZ5YGGHCub}!<||:_v=5/.A|5[\ZodVNFrؼZN o l7foޘ1{cs0`1c9sOwî =Z$b\W,c߿"Rsƣn|t~%5XGm+Dþ`RWj8CݵKm+q\MZmɑ.4WocJ-˱}AV. pI%]e'N}<9Hz|rw﫾Aڽ8H9H8H;8H;29H49H?)rnr{._pQhܚTS c?͝Dsg>|dO2'I$cNƜ9s2l٘1gcƜ9s6l٘1c.\d?Md?Md?Lld?Md?Md?Md?Md?T>nO*L%'LjvK5SȩfT3r9Ռ1rs؀h cfcfcfcfcfcfcfcfcsOvb{GP endstream endobj 1857 0 obj << /Filter /FlateDecode /Length 1532 >> stream xYMs5W ]JU6.r3ⴅB9>O5`LR~ݒzU(qsF>@$qIM^|E_ z(/%<]$JzҹǛ(L!i4V2F-WJSʾZ~ݻI)jC3 i$]M%h9 eT夣^AW >aV)цח2+I*Y+-hº F益uqU%*1׿][t$ !vۅl!(c[? )VeeG o&O)?gF`A:J?1d 4,/V2e=bVr/0̛ [ݱ*w9FC]#|*&;0g`Qag17ð&Uiu81? 3utZj[ڈZ0X3樎dmKN)iTKC[,{4r;k'IJodG[FQa/K!Pk%R1A\!5L%e>;kaݴr`^܊<2dh.Xnl%"ɔ'jﭏ9l $,qHYiȫ ?JZ!z"i=@%|f cX$&2euӀ-/9,}[K2Yő){[{ ї]夊Jؙb=MˊĕovI?b ˨߷5o OO -+Yzh^0+&ឭGIKAM2'aLVhUGC3͓sI12I\~VvϹlG.FU/vrgPK|]ޡptuJ\PḩZüR i|M_.|;a5댥n/2:p37?|v%O:3{LբP 㥽b=.+(dǡ&9Mǜ!g`e+j^!> stream xYKo7 WJx8hnn|+zZ¹F4$G`kĕ(H %]Ej(aaV)цחB2+AT& VZyUNSL[mƜsmђf Lr%eOCn|w ᔟ#Lñ IF2Ąug6h aF2v! OyIn;k9ֆv͚6@cWV4ԇd9 <o^8&b SG')ͥU:xQ#5cꚬm [-=|"*֙Yy,EyA(3w9Ozz8e΢8`I޶u! ra/.u(L#{f>iaôrbA܈<3ld h.nl%<`ɔ'jmm (w,yVon;j~^[F+t1)]B㿡 mʗsЦڛ}5Mph#Go wҕ=> stream x[Mo7W̱C?#@>ЦCZCV7JJ#Gi!ͮogsrsMcP#FUJ|q7S U P͊Y,!>R6ÛGfybpì@,6G$>q i .y _@(J!wfX@7DV$QQȸWLqkH Q'](QSiŚZ $ GIt>0U_ I2.XJt$5)bSbVH[ ɬHIYB)("TFTl# 6By3u5dqD8a(j2 oJU=Ey*llSS=⻢ؾQmu\->`֣cvAr݋]p|Er>wܬ?dc#X]R_Q}w(hEw_=Nby:l%dv| o7?Y-7V6'vn;AOz]E=EB zdž z^]-4tG'f>CyUb־;N׫w닅ݓޏ˫{ @5 ]u+- SK \]ELVuk nFhFl4!rhȱ!džrlȱ!džrlȱ!dž, Y4di2 vq@%#Ȕt>3_xl'Mfݸx>([wK#6EuWŐ cI䆍`wkliZ1f l`Τ'MzԓMzu4I4I4I4I;=I'I>Փ*]On?ԓR[R[R[RrRrRrRrRrRrrrrC 97ܐsC 97ܐsC. 4ҐKC. 4ҐKC. IOIOIO $?I4I4I4I4IT'I>I7o/_Hbq=ߍfG 'R/܁G)!5e9xc endstream endobj 1898 0 obj << /Filter /FlateDecode /Length 15 >> stream xc`Ƈ  endstream endobj 1899 0 obj << /Filter /FlateDecode /Length 13187 >> stream x{\?~p AD d \4JOfedy)+A oIn],M,Kh7-/w=όt}}_o3{^{pPv,y|ꌊzݏdSg5)?.aҴ[gHH:}v9Ӗ\;@ @ΟeVcA<)MtGl>*MK0d]-3*sY`{V̨Zӫ 0/ (<0tp rOrH/g4(rTX~.Ht#U GPKd0@<kv)(PF7P ָ{Č0xBKˌ1?606$6"[[eVbmF[dْm,tB%gm/ܶ]7l>}gϲ;rT4ɳmlXr^̼uqŜy.psi?]c乤JZ$ 1M\f!m)9E\ϝ偗o1wBQ4ߦG1 o1?l2+"&2jNy -IIW62PFY[nB-[-<6Jo[QߖZm/]!^UoC'Dmx"}q0yqł/^tߔ<`AW5HjlԨ)+We_z{Gg&({;nnC[uKB7u3ݴN]ta_m}6_=5TIWKn;6kG$w-~c+> Z0}T]`lc-%fb"R]0 ]ݼ>ewhD?b[˵nW.:u՚e+&/;M`!,bn bx^-`!x x^'K/ ˠޅ*x{N48`??a9| A۠n0j`&C4B34, 0p7³08 `;YI'0%\K "ǰēH8|K>[!~)0_?¯WOpq*IXϯZ9y~o__7//yƻv~ ;ov~_[;?w}~{a=pñ8????_#QOj?w?ɧ3r|N @(B,B`…H!Jb!V_>&w__o_____=0B`B $ Iɡr@GWOX(,&/< <(%CRaa\xDX!<*<1a%Vg5BVxNx>/0Ka^ l^^6 / / &vaU6r)Grl"V9Nv9^N`aWIk8BZI)^'^/7H+NjqxX"ěě2qX>&'ICNS~r& Si.# Q1qJ|R\->%10A 9CΒBΑ7;@"D.g,s e)Gy*PJTGRL@?5Hh0GCh(I%i4h84FjƳx b̅p\@"L\HI$H$I:IxlÙ%'KFN,\,g@)H BP)L2IR)EIRd"JV/$/%HR䐒8&HT)M/K i) KCIY5p)[rJ9R4Bʓ'gZiA0ɠ3ttT( FKc"i4N/KҍR`3R4IIY*n&KR4E*UJU4VZnnK3ZNfJ R$5KCt)}.#t}>FWʿt}Oѧ3t4[>':yQ~A~Q$ /3=}"~A!afyoMflgv33o2`>g'̗W̷i #D_9z pCWE|Y=z "D/a! eKa\7s": hn7Ę[)46kf1\nOG qp-n){OJ+'Z繍Kmvp;=^0)A30wϝູ3y"gy>Øn>'X> |Ә|:ƻpT}>Yg$N?Г[~M[74^-xC~ ~f4@]jI"K巙 DFztWrB&2%dFfi';vЕ(?/`:xd$"#d .Y2Db fbb VCf Du  I!ِbgH5  Qц1"ogӷyK-&;.}O?}t?=@?Qzvѯz~K'0֯s30&#|*WUaԏኸrA!w7 # M-q%4rM\3:3 L"kN.n\Wb\-kd9cR4? `20~aNsĨ7b}baOgH0s0GƵ+"W+Bl:RpM kD.d2?3 y+Qz1 0(8$4cV,8=>!1ɑ/5:,Μy׎FS4v o,)teL.)S+Z]sglhlj59sys} lY䡥/[ȊG[~fMk{~ _xq˯lv۷lj;w~mO7z|o?ǟ||#_=׻nw3_fz7׻nw3_fz7׻DiX;Dx_qN$އh' ~3iX8xb~ V6Ba\p%dgWɽa<e Ѩ??0BI~a#PgOWa< 9фaxpA`[gYŝDO g'W2؈-Fn̫qp/IU]]oysgC\ ":a,ux-TB'$&b#Ns"^>j1u8pNy"܄C2dNK0D@=s}#iVE=y7O !BIh*/b;ɨg>Ҏ%k'A7ۏ M؟[ZV'tCo{4q_#p#TbPDpYq$. q)嚚r5ӫ$F% R| ϪtIcKP~(ZNk(M^-(o+lqYlAo+TiJz=KTa@ ZRb1 V2u0᧔ U3RF*ٌVW>uuIUT7԰r8\IIj#pNZ~`Ji7*}P(X ^)q-[+0% TG5WjB&5 ˭[XD{?chP~P /U±Jro y$WЈ&$h7*?^ JAe,MKutbP笊0î_eA{Y;-,Ң7RRRY0Ū->ʄvxv,t,)ATr۬䁱mNI%ۍ%nJҶ8+َGVJ{K՜栐`UEnw,jY@O WL2V<ƨOn:h38y2$< 0˺5K֨Y&,&Sv+=Ky=tV bq}ȨloH#ߎx'RP><4O ) MF[xύ4:.@!M$<:.R+t:3&mvEFG'R0i,Ψl3҈)"AޠKFx;i5ɨt1b`(5YO0#3sP&>XHǢ́h߮B&sR6 ˞=q#oPTWXLn<7$F~GK|cɢ&=TeS(05lb}P\zlTd kMyV¤&$I| o] 15+$KQ٘_Ur"C1H:AQ1` F{`sR@:h?"euQ}`n'd Q0mWc?8#^DxM_fq紕ikon^s":~~='b3sSzN/OP<'.xe'%,\urc✅I $VlKpybFW] x, b0^ Xfj5zY=c"&l5rGHŝ<<S/pcVyJzef4'D!59zNn'ǘiKU{̬-#ީq/>c5q |m=Gùp'M -5=NwH A|sB PS CHgnQ3ύR'm@3p(qJ5iBkL,)+ae $qv>CƵ\~GSo!]Ic3?]ƍOmܨ}{{G3QXuC+CĄ@X`P0 HNЛ:qCXk+)G։ºCH=Czire)U J& 5 &8!$;xM`*zӔn;DD{Q_$ 1=x1rpkJp>f€TWʡ I|P=$0(P %eHboHīCo܏:e/ 8HwؙȌo q#H Snyq%m1uU |t^Jfu LU 7:kԿzʄ .]6?Fp\?Ѽ)K>?!By7iܿտf,H?g|p]3ﲹߏ-,J'Ȃǝ0)/E{3'}K6i9FۯEh%pOV's`}2>Yp'~>Y'47_d)\Of 3dt's}2rO+"د|>@&p?;e/?ZB0AUo:B0GU>@1MT |2Jج"녽>O%^W+{^{e^Uic?ձ2>Ѣz61'=o~j7d5٨sOVYAW}2Pܭ=>_jr}2 $kr/9|2KC49\՗dUVMTT'J59Z >YSܙ5 >Yo8uN}2ΩtPTH>#)j;:'c;U_ϸ>yyHH(C5T!uPs^+մk4~XY" \*ԞiwԨ@\NDzehWk(Li@l- w<uX_Ӱ>k4++Ub37X?j֢7s5Sǯx*Z,MZPQ*8:h&ZUߟXP+i6ciWm.`϶ZM l;ˊ4'1m,z^0#$u9țYiMZYZyߜޑ+گzk|S}*_Bk^}+^q}‹bGCz-J*Z^V=cUݩ[J-*b&%~"r5k7G땽sߠ˕6z]̑:XDھwX2[y[$T\5U~]fhjNGC^P+Uʨں9Uʈ~Jʸ[qUU *4TLϭ^y2T+QԢ 엖$PX7)QSIP^FBijQpR7?*MX7RTTԺku͵M 5Uz(V5*cMZ(`kkVMhLV*6B_\[+ N/kVfTQgtZ]mTT4O \o©XSQjQӤ8eftVm+6MfW!}z@^S;uzs%YbD]9JBMR5c GWojTG^5LQB T5Cu|C ZY7vz]EN&jfԩ^Z P]~&AsuM4WQ:M[}%_yكi[ʯXQ܀,\LjIU^{4^u3P,`}I}u%#,kW_]Smn1*?멺:g#Lv0da !}OBGoZգGE׌7>e7hƚ?Jڊ`31UZp2/ tg`C=( <` &,䞠ojwk|0/Oq9KE =imcH$ȬuuؐN0NNL!y~ehs^9 <(LH 6#C5H$X(ym4st302O?Q_u2O5߬jJwǠH]@QН_saa/݈hbSHPNwZWh7ҋ waZ<Tȧ0`t`٨̈́0x33yLDjjn?o?tƤ3@.2;ݬdhdվƐ"FYZaf݌gV]2/38btm$ZZ763Qu3Y_(sNfzDm .f)NRecg 4_ ZpZpZpZШ>`ĚQ' lXe5B gLNt%҈vO LzL#y#dLu;$m(HPp̈́yfcwٕcƼf ]_u=H?Q[E|C/tEA?RyWNL5(Q˘~A;T+t;d#?Jۑ@myA;ڑ݆Putۑ6Cslu&>Cu 7!Mt ^tAw!N_bn?[Pf7WwW&@՗,n3]G}_PZ e]y;]F9M6gs=fKKI[(6< R+9F75/] P(Fi}r\1㢰VM*Ǵ^ScoYMʦ` 6!GZtѹHw"݅tV҄Ԍ4wzD#GDzoFR(GD9"5D9"Qr [r Q"D!HC!E(E(BDp"‰'"‰'"pj'"pj4D!" i" iHCDHCD"4 " BAEC(Ph#"0"¨!0"ˆ0jӌ"х.Dti.Dt! ] ]袳ۘ9o"d?B#dُُd?B#doM3(inh]^w½ 4>4f̓sBq 4i f=H&C:0FX#lfK~ s.*9ԠZ:3H4[i@f giLٗD$I$#k t h8)q͇δt۩0۞i ,@~ i=ҽHґRlHf, K&w!#Y U|`N d}~?٫)lxTDmBm>/{KnNd de~nr`1 `fUhq|<ƺ͉xٰ6q6*ۓm,mjNK[mWc[Ķͼϼ4C.{d^`N37777WǙlX6lޥ nf.Qkm9f9 qt;U>6Ԟ:rw%]U ΀ٖ,jkMiī\ԝ&GGT !bϺ[U(u4_lrMǵ曮L΄+fHl@F5 endstream endobj 1901 0 obj << /Filter /FlateDecode /Length 392 >> stream xu]k0+. ݅3v:][vc}\4G`8A}O'7y7lU]ѐdX_O˱:dRtƜIV׸OBZ>0=goӯ#XiQTP[q]e(0+G % [ת]$$pZ %mX̀ ]=YmcsaR8͈m.- _4G- #MS$ p,Ͳf&Fm7ca8A6C]4OSs%%S_u,=8(vܬCC8zzZ;ZPOOrɯ\$>fcZٸqC kTc},Qz endstream endobj 1905 0 obj << /Filter /FlateDecode /Length 20 >> stream xc`p``l; 6 endstream endobj 1906 0 obj << /Filter /FlateDecode /Length 15521 >> stream xy`SU8~%m4i4KҤKJ[@웴H(]Y PvAAڲPAQAA\@@AAgwK|{==&) T(IJޅPR6j׺ ϔM^)#z~ S-B'L9~93, #;t顓Zx]&Bz,GORw+;%=t$F> /M-REXoR/)zerB ߄^X$Oj?h<ѱ,ᩊ0%;σQUаy"|>!n EA*yv$xCڑ(1ڞ0c dxTbHCvr:@ZIYt.mK}  deg~e5U:G9ٸhOLgy:ϺƺWfF؊lڊmvێNپ]K 9$,Iݥ,/II{=nwD0hKap6G(u;S봻\Z2] 4WkkkkY6W׻O]_^w]]qr#F97o4 _5UךҚ:ul֪i[W>BK/nkml=Immm ~jkmw|2U "vAdFAN#et=Eń0)+SDs^dAVd>ahɆl66(1z^[m?~$`8E+ax^[ K KA0µ- 0ݓ an*(ܚ:u4`xJkm2oa8`3pVR{þ!\N'Z7"^DT Ct빶_~E ^puՇ>xuչW:3uiW\Kk ~ү_tiƷo^-ॆK|1⤋3/Ҳ/]| /.F\0rR/Du|n络O=|>|yy|=͹+羔{{ܡss4MFSFTQAhC B3lg<4UڏO`)f0nV$^Pj汀|x=~?7Yj, ބ~A"~ o/xގw7f }b{>܂qޏ` PC8 A 6p_Ça:~GH5b#67؂(~ D6,a;v1|Ow{}؅$>? :cp,2?s+*n5{{{[=Ҵ{upp FY9n<{{{½m1$n;5rM\3rn?s3$ Hk!0:H߷cq.>w;}}ȝp1an0LȱN ˲˳rspq.f߸+kWo@s'>?ƟOg~|$oM|o-x;|4|zzz68>Q߉O͔:sGB~/Ker~_ůOOkYt_>-4 ??o7///[Ч3t]@6~;7M|3K=W=O]~Pa#G Ջ %eJf~?S(6?οßOyL\BRJZzq1W 굼O@@AK'  AB?y'ƿ`[qn `! !0`4r'Q5DDDI- %:F8H8N$D#1(b&b%6q qTM\MbH,#ģ~JNL.boxxЍ$N$$dҙTF*t2,2!d'2_"B-x!W[#%- @a0X"  Å{BP$F haP" c2aP.& ap0,$V#LZ6TXYP-BFӄ ~a0K-沑5QzA!X  GBa ,KeraRX%OO kuzi: FY9aYxAxQxI",lѬK.v B,v {>E+ »{IpZ8#|$>>>>ΉpIBRpY"|%|-|Ced9YAVUd5y!I fnNDU:=J~NW5=H~"$/o< Dh{bXD~%!7H+i#GŔPJYf娅M`)&)lۅ`X/6;va'2bk:v:{?;eهGGمlKe*q˞ac_`_fwe7h'{},33 {^fac`f[~g8 ߂]9gk^\4bx.s\2u?*yry\>Wzs}"sT sC0n8w7+#DMP5i?\W̕rx"+ }bX+gŇ"qR\#7[bG/*.)|__/UժUN5M5]5Cujjjj\?̆>/Җmwllj޵{}-|~y[o;Ήw{)|tcg~_w(ݡu_w(ݡu_w(ݡu_w(ݡu*EV|K[r}{Gd_lX aQa?{ ؞+S`z#\>B}?BlQ&Q(X 2-G+H0߂V :}j/ z C'! fƢp9v0ab:zSKۛξ)k8* ypA a N>= bJ ֏'~ៀՈv=ɢ#G|w*QzݙCFґM?n[%`/K+X7s j2 QFp `8c/~o#v }DB>0揀S ֲǣx>^}X߂} hoԾ|[`(dFd~@U_<&C! z>FNm{|s4V=<ɼ DW.$ćx|H8/L& H{fGvC{s>V_M߻ }͆3v7=EaLgJ,).:mlSmo'׾_D!ġdXcxS| /[O VlS+xx'IzКϒ}'}`}L$ xSd+i$3iz=O010,AW?f|/݃y_v$}> WD<8|4m-Lcthz lpn6G3"t]O Z.}ZZr=E}x4 kᄚ/@K@<^@j/(N*MtYCCQ4`@%[; š(i o}g}/^rѷ\E/ ޜa=2w蚞99)S'>.6v:j1G}.T *X JFwI#vI;KCAIEno((ͤ[z;Zz-Zb:%HN|ԂG.xiHjxlC rbԈK^'6pM:ϙW""@Ϊ&+(D j49 |yUP:q‚(SB#+smDFGiiF^FwKM hO8QH#7F̺[.XE "+$9а@j8c]` K\JzK}J0_T؈ÔyW; 䒒IRʙ0HcjhDCfڛM&~%d*:Q΢|s5 蕌tJh҆ A[u 4Cna+r (IB')C3PCY4Cq@FU^I\.od]Z3p^@ dP[7F1>^f>h k;%Lo!*  ܖuO2xX4.%46y@K+ooxtφH~(Qk[^1 MZcX$Ŕ$jIʕl[6egYTTĢ2)8]xxbq48늶x2<3KsXdo#aw IIv4M0ѝ3c\<ʐ q %]]cVb5һN72n^ q;8c E~_$c[hix|MMtu79edd`@}1N+wtpDG+v 45Kz4_.Y|b[sF}湇ek>̾^O~0jLOLVSd԰G I-1 WX,W}cQO<39w`h#tY% -kTAZE0ۺ83t-B1 QS'*A0ʽZm+iII31gǘ;͂.Y 'lu9YɠP?~Ȋ併K?kIF.O֩`2틔4|˶ Iѥ gz7h`ĜAc‹gM XL⊌-{KZK11cyҾϾ/#Q누aS./T:Z;8؞ӁRZ֊S7vk:̭s`witwfgwf;^-LOOi쌌l311&zu9֍1Z,A,j$6ȎaYTvB鞘IWTZŘo𳿱H0R2`9RwSem#W*eF*,"<:Fkz)ZoD'ZΚ (H=S$IPE}t-B7%~ :+y/ͷXX'7,$";Tje r5dcEH̓#m$>@АȞ=o ;.Pp-_d-^.)'9~}sGuIO mr̴q>-C_evk~8$#}J*ƛn|G 2D]L.lizT~i~i+QiG&n~뉐 jl>NlH\rģ?|h!;&Wr:KXD\;ij*K "u*;J&T%Є̠XzH^Ǝ1 CvnʈXlJnw1kȖ{}%3o5V8,׮^K*(;lhBaơ})LAPO}})Ơzwۈ$t[_k )$ !e-V;tG-?Fs9dXg5V567jIZZ>V3-=;n>n儣&IBZ.6VFJ-.lj#yEdlֻɹy v6Ϊ& NRs) "EQfVN O,J/AEm6=tWtZu|"W7v am ʉQd`ƽe!3@ Ujrѱ㬋jҢy~]vH @ufwVk@H4'p9) ók7OOU|+Z0:_Bm 7+aLf#ܠQc!:&ap|#pجKd̙$ l.mX0&ɪ=bLh|u0}Y1Yk;,ؠ`m^ ߗgF)% -e*XH,ۦ/'מ93t{G՝L@3eW!}VDNkȌrdQj OxS'5Az FNiLh[DAAQnvOU PnO>$\g+R\=<0uH3u!\S+Nc:cMa`8M[>%$1:HAޅlsCE"Ͻv6ls߆]N&5zڿsubT ᆞQkja#3*2&eʘ(cQf}^,s lϘV=`md;ĠcenறR1Tl0$ɅxXDǢAjfO8 &p $?"DDEEF81v9 E^Rt]rp^guDdjL۩6m]U6TNocWO@=_ϒ?bV4,,oCWVRGV c8Ƅڐ1ð ~`|_p*X:d+~{MςJPMrzT D$g{>!sVͭZ'7?= (C~*_=VN=b3Q*# \d J:my`P )cO LYTe]JDf(G uNVz)%e3!Pο .+SfUJ)nn `7}k:T))#w\n3|r;]d 8Xm0|ίheQ&}6W!8r[/ qF+ߎSLtf2wm`ɪ"Z}):S-tW]!)r*+i*5;'FUvB8 Ac (q6tRDC8A.9%lڂ0G6G`ݻ).@JaсtL ]i<+R9ӦQA!A ͽWY fɺ]Pb1!0:(_|RNqfMx5-`t9v(w*F:L.QJy1PEz͆' 5=m4KcʂWY0r' ȓxDQ2/AJ B_+fHP4e'KR)blJ7[mٍA(Pnfu=&Aa y6@ A@HI6HR;nWVVvf? 2hrjh)m@aq8͜ ։A p@F #6cV{>(ƿ AH0\ %>6J/Br ! 9fv(週$H:J59]!@%Y \ x[*s8 j-C UX/PZz+]2x»@ N!^>/}yRUp!u)G N(pNەFJ5 <*بൣ׌ .<`TpQI[Xo''x'OpOp'8 Ex F)q(C-xDs0REv8?hboapa{Cܽ$S.kKO%K$*#xǛ^wcxB$AF -K^|r1r(1_9,t7j }Iߡo2wPg V:sq/;,7o Ҙۨtoaˊ H`4Q#/ EEr&/]Z§gGfzv;QI ^阁X;eKQc ,E}s% ҥ ?*'E$`\/<?ˉIr;$J\rogUYok^dlCi6no3Ai3!І;/!_6?m:`d,2gx?pӰMmlSA"ȅn endstream endobj 1907 0 obj << /Filter /FlateDecode /Length 462 >> stream x}Mo0C@1$$84MKZؓR0Ȁ=H 0-߲C0ef0jdlP7h4NbYhXB aG\\:`o rkP`6-vs1;՟OnU)ThtVZMzHxGQAii."I&QLSvH.4d5v9{7$|6G:zC۞dpl6U 4tZU>ݹ{Ph$tm%Tda2X+#7;è:q4{e\(Wi{1%RϐR9fe>DH)F, fe=q{)GGBe *C=XIRSαz9VO:R쁣g8??/7j1*cgNMiܼi]ʎ?5 U endstream endobj 1912 0 obj << /Filter /FlateDecode /Length 27 >> stream xc  endstream endobj 1913 0 obj << /Filter /FlateDecode /Length 29554 >> stream xw|U?zΙ3;K-$E$Bޤ`f@b  "(RT@Q^E,MsyL;yOA!AѮ=5њ&AGT ;h| O" e_\@(xB|a㇏hZ r]L6F{fAC B~F@HkWc'sKt;D3n8cg^8$r+"CZr|g Q^b-U*mGQO\ǻ"5E8H Ć]鈅5Z6Pj`G@8Al`LWf3yd2k+v\.wgx;>!1:2ާ2|}r~_oge_ogB???R X@f hx".dLK=ӓϼ-sP j@HH i![JeC%1١BkC6vv>   [aq 6K ͮ\m}nĵ;kR{-_K\.!H?tc&3әEs!wvW2mLƾygx!@L6~W_|Wo#||[_#ŷ@%|3ܙ*2|uےК|%e=߆G*L9__͸j^67|&[[@ϰ|w,t͂fڡkrka) ٟK0֟__^0_0]P/( \ TN}=_;}cNWSNM;o^tSN-;' tEz) '^ɢY':hDDE' OB/_/2zCt'!4G@ߡatB'}>E=FH4Ec]h &h"h*GhݏCZ4=mveIL0Y̡~ /+Ө1,^j6`+Y~%/Wx~ oUxތ?/x+ކb#ށwbְ[i5bޅwc;vu~o؉]h#no}8 O}}؏8#|8 pć'S|vlsq:J~_/KG'eS\_^W~-,<";ͯ/|o1X~+;.~7:&˿![8XxNDN ?__Gcq?şgswy E'|G1|\`,U v!8҄t!C >/L*dlOɧoo3Y|^M\U)J\IH*BB# yB>S)f s ||_õ8@x!,O"pBTb$&3+N.$N"n!i$d/AL7!A\DHI6!$rS|BJIY$K|4 !iD Ic҄bҔ4#tr/O 3L2O7R€ @ 5p Dd0dbP Fɠjo ;'{UX>(??˟ɟG//<@.Mh3߁hv+چgTу-4hȥ_w#x.ӛeʘL/Cܐ 'c2#d-ӕYA Y CEmb|3GcnT%5C>կL5f!5f9jQ]vV|Z6TjcCR{M"ZvQn_!wɻ77=[]y|@>$cr"Oar"-9CΒs;M\/7cLpC]n\w@zЉ̕rqpqA&q)&ar<Ѝ{A/ڱe4Y0 FL!Әi1ŀoE'@g(@h~ s7ۂޜ]:|cАhGD+rL3W28}?6`` t!C 1r1c7~ILif̜C̝7 YxG{eO>|Z̪k>/Һ/¼ᵍU6o޺m{͎vƛ{Bo{g!ɧ?':y?j3fS6Om?j3fS6Om 2nX<4y9dyr3EFL`^gooOv`|>^${Ib.xjANSAd/Vz{؟gܩr7|"9\$sWfS8LЪL SΌ^cw+5aB˸^rxExPDGמͫ=Ge2|z?@qa\ <w ģ|pr6/} 2S }V!}n-+|d jrcLcnebPf23YT1o\o5>6 @v ,os!Lh-t 1 ~C4홭h)b`?<DCRH%|r?&Y=|+ wA0z?Y QE+w=(8U7/æ}]dw>;+3<g>DǘSX`עrً%u5WJ3ߏ ]`z&&PԜ=F/܍'v8Z};"hE.w@;~d+W#®E f8c grMAY:ɼ ?H^cJK\<4~4MHBӸ2S<€>(Ğvӄ vX`Ӷv;p3S -.@NgEo+ 4t/XQ5ߋԠA0K'סh1ZE4$u RIdٍn `5 U_Mbas@wXNt;cOۘ=(ޅlJt`xO>l@#cPW ph2ŸxECIdfh|$a1p! ܚh޽ni}SI͛5i\بaAܜp(+i۬f2lDX`Ԡ}C*\QņV@au U~hp9U 4gFavf4yfLKPIA@^#:]KtZ: ]#p}U#*Wm mm MH*gp&lu8۷DB]&1m;wx&͜d&)E(c:NN=9iU~IYԂ@[i)pU*mE֒뫸W?2(‡%)N< -ZoZ`j k~P7򖍀(vfv/KѝiQQ~yGGf"H٫pIsXۏhY7&wԽ_}eEzݰ<ޢX-cH"i~@ٿdST!uPD@ނےrC ?^TD7_fU[ݰCJ: S~ԒQm Ğt)Oɦ 'rPt4CߡrPMbAAW&sAZU%(Al 7Evh*L0i[qK,8VÏPTo%6?A0 r3vDe}p FzX׆lɶF?ƴUv=zt,/4} 0!Xap̞kQZ{G }ղj֭ƕ]P 5lPZ/S-5Gi|Jv3MI+/k% ͋x0>QԤys,Yڣg8[4л$e eXmٻÐ8QʆExѓVCVDM.r&qe7Y$:*3i.W(!Y9$&+P>1Y%զ<ݷþ n)aS]|Q\Dm.^J6h@c%˼kNE|*70PRɇ݇"Py9>$ }0+#V|J->d`S\G1kq&Iq&og)c\9ve[ϝ Gږ,L׾gW= }y?3'ys;~d&5/Zux0xwRrMQC #"VFQ81gU3 u^sqf͋xv SO|\oi7aӱګ+z=oxШCr4"4,a5-FFa՚FzGɤgUU'~ dUKOk-r@tY ̛ݯ`;ZޱߧWk%.zr$~rj _EØ)!R;o! 8׀>}|F, Ԓ(l\XԴ-d7k|ہn}D1LX.u{3!XQx2!DÍG\]31jTzq!lLrq֭IV E]v$ɍ]װz?bT]y}J;1$NnEHMdo<`¬f62Np9yzxnww  %$M"y5B+qAK.H01Mb`X˭ZUƬ{5S7OeᵟM[c}_}a^%8vLɟ/xO#R^ƨ ,WY,!#a z tLS[P8k8?Dͺ@uun*:(\T5su(䰟rs;q 1!2°SRZ f77&ڭ c+, 06/~7%ɬ.R(:ST46K!'x7G *t}A"iׄ?PXd2眎+6zpk*Lz;Թz3}}hV\+~&KxW|?]訔+!և--g=g.y7VkWH\B_x {l1B3W!ojJGtv0Q xH-yk2#3 I "X) vyK JV `ji@ ñ!{ $ތ:`n/µznJ'g{7ld6փGPj>sSݮ(+a |vpnР`ȵ{Yon:U'(BʑnDρF,6m\ ^ܯD}MB%é:Weۛ1=cQ!)4\p 3:rDV\LCC]tUܴZQk'yɈh6nIX&u( vz$U[lv;q p%{A ~tSHXr՞_I%((+O(6w#Z:)R1+hO36>{QgET3wȅaC\?~ȵ|^Ճ"?ٳ[y /ǑpLP++\g8XH3ȌP0,"",>05dv3D3|ņ:khH:'IR< `03TXb"Pj+Fi C lאP`ucx휦Brɕs$S1 jc2c@*}KgQ(dD6#ޢDmJT(3Eh8dö [rHX"s=hf̘,MylxS<f۵_~v4@">Iف0OFnOPs!X֛1\3@'t=v EvU\nMgZFe2Kַ#4QyF* `j[&j3TPv$j\TX|*XvRD b  h y~ݾ|̃]~9Z{8Z}Ϯܵ+tiF)v/)3a!FUҸLM5x1 iԕqujTN98Ι |v@{Nھeh7n'D,!qe8%}87,)ZFR@d=`g>CT"jA[C4]h0Ki\-i`H999:A!Y[z1n`) $X9 o/Pgn*Zsj:2Wtwwgyjw]e;eqTaiaN ip'|^ֺ׾\^ꩍu6l{ h|ԸO,QM,$uʔf$N. iqxnc ] 3PRzb h@xIl,exB|uabf̃>aqKj JZ% t( JZAiކNBp!38+@7퓋:9T..R]rV9цa&Ӕ+cMt3Dg HOvw3:Ԭ4մ8d]RWSCmǒ9j&%^sR(]^c)oٚ4-Φd1sIVop7ݚfn/;_Ͼz|{663◧"mw-?mʅldF4r4rgh 2~fvFif3Rsm  2%>$3_x]QY?$_uRNJR%Z^RYcAEjެ9eq6KHiYZ<?~5xdeTiV/r%bų^1&$-5!E+Z@F<|64=:E+\7u#P.*}n?G"WnJUU( FF6HB#-DMz/(68Dig\%y9N _CG%$*G|ܝXC G- ؃)YbM#R% Vf d0S c#_ nXٝǭ:]mJ<ۜthz^CM!h37KnAn䞝U&FvBbPpbzH `& )}Jk-^oGe;~dA߃zg݁XʭRƲ}Â?3/Mlĸ IZyy(= yf$¼B+YO$BS";KQ$Ba%^y Exdxzaɟ*]-N*JUbN|dJV]5$]ҋSeTPЛH#3}i*)Fā&bC8)Q*}8i9|ka1|Ӭwq:R~Dƣ3%h 󂺃VU3f sF[>>{- ,+dsِGi7DtTLiV¤yYI nGa?XThoDwp=̏X֩h8i@ D`f0Β)-"v`zM^Fv ܠ՛E{[m> !ӳyKwſܝ_V6F}ħYO/H:$^v-:teh3~u;Rto5.l;-ڌID^DVdy"|r^-6i3-FXvʃ,u:H' 4hAX|'u&YBO!Ӟ}/5Ьq_<{F,:RFOD<EA@ Ki2 R,bn*1xTVJ;J1TWX3 a@jyͺɿ93۹!ոncX,aV_&#w)5G _&YRUۍaz6[4[Td[,8Iy~ y@.aeF]c}ptLdlAT ;չT]IOSDO"4Hcitw:+a-db C.5#&kNYerN63R X[Wַk>E;! 0!‚inf:|_]w;Gwn7g݁0Y֤ͫI;/Ik/?W1sPsly<6%Sׅ/imOcW212G,5>i(ʥ{?{L+ٟzs'jS8RW_VUU+?6I%_ A G%幝/~u [jKu\ Y}/mIy8-(Lnsr`(&.OeO%F AbU!n8 KVG)\)Xǟs%%#>?ϲGʯ3mm a]|ĒXShٔcͽ4D1BLlن|3í\ Fj8MGw9B{A ,naD-YŌnQ"ںԖ }gAOFor3CD @-$1, 6=Q-o0 DCd2j*ÝXvɅCZ%0B Ud[C߆z sSk%X%%t@].-ZXa 4kiedBMw.mQ̔_N xh.5V,QʠfR2BڵY5pGXdE4'9tDxV3m6jP6o i)7& )*pß`^|r #|Qڵȹ⬮4phlTD?MKQ@1^``\, ءݠ)xE#g"n?Djm?(}ݙC)Bs&&$( Fϒ5D_jGXU➖٣:OJ ս ׬Hѝ.꫌g}-%"eOiao0!d!vw &Hd^) @-Eˍ,I&7L@$HNU*+JGˆ2vzq*ʄ#j3cW҉i'DR)Y&,1/ BQQBNRTzz("w$`Fʩ2B,;:ƛ9XG dG2w X#[P4װVClsL,YLwiz ~L Y`v9.UyI-lב JD`Qb euq2%f@ZlP K7=m&\L -F|C7w{g|qM~/x,~fok=~-X~,~6oh6IdCʊ r%,5QKT~ z 6M,}3Ke&ĒD)B'^ @$1?>߻{Us񇹝Fmcwkk_eI%q?v(>10:Lܮv">| 8ígpgc8q2ӹB y|>wEgg]t.q86=Z<̆ybG$1}SXfm/oHn}tEavq"oa]6Wגc a!>X=;zM  []T:Z)'N\ұk.%!*ϛGaP:~ewr}bd.ޏ*=h"& 5 gj,o3zp6ۼU<λp)=n+opډL,^;ǎ!;ߊplk#b+qd36<"'?n۾BZ4`,o8J3Q_ : 2}2%:B#,5oX<Ű%3L3֔/d|-ǣoOS>6}tqiaIutI8o6f٤H48 \pz^'u!tG2u-v7l\MTOB3t׋1YLVl M 2{3.ZJ5<DӼ}P*{Ĩ)bZ--X^㎘/Y`1F#ZzGS~]pZLCF$a`-]} k,sBng<2%>7,NaOu>o;w{4{03LfPvS&ޖ(thk!'S.%:"TG:""yr:"f(Hjf* o';4F6 uMMkS&2jmNCGeevo*F/-iaar=I0 ʥLK{8j7;C%>[ yFt`#b2y`.&iтPQ@z7Mx!<eeBy n G2]A ֐2.X4뎮EEsZm:'BLSGpTX6J5dMvޏI#:8U:u!/uI7ufZY''zGqW`(ĥgb4}>}N'ъ(3xnׯlh6e"Pp@\̶;SM/rM%[>6'Zy:'1118TZ I|IhC$TB4zhihȈbjlΊd9(̩) fb>5~?ymWk-Lkz^}>r#$LsQ؜k "9bin5w*C}e.))Ix=|{1W)콸^!e}27Yn4 x"R/ӆ~(c˴a!SQ I5LjЦd \~U,fC8B a\(z.([ɯmfHs&2.qK3$I eH8f wG~Kq6?}mv*qBb[q׺\KlJ֨%mi&eMP+s՗K;ixJXᴈ5a鴺ٜN 5{B1pX-M"Ĭ% L !yȴDd%#pF@)B)6(E!*xXkE*P)H6 6n֒Kž@c{| FވϟҦ[_<ڟD.h4W=qMg[ԜDHV=yj^^Dmfo2c^LRGUVssW8W9u/6QE9ܻr|j*Gl^XҔjMoJ>W~iБA<822Oy_S3ܼ؈YQVI;.721.66&jFFƨ~iCo.G-F}^֌tYC^z–. zGw M9w6OM?&}jK`}HgOfl4bJPV]|UCpaxcc٦#z,.쉐5qҾL 2e䉏oި:Mޥ8TN^/EF=n[\S"56Y P HOXyhBozh\6-NNjMXa`3s$dȎQw:鶦 EϘQ_I;dφ39]fuUOVpWM\t=ι*'])mt[]o[L:'MӘSLY\S=ǵUϗ^~KxZ(tvtĘZf9xFcwy*ǜXt6/sFFB)u6uq2~cndyA t:$cMLMĐuʮK+u9wp!OӼEA#*Qy26!6Y!"&D Y\/aև஘4$tm[(X7)Sإhק,a7uqhT>bVEЄ@b<Į`f6߳W ^΍_^=^:L}Y⮋?9~ |xhwKg.~Y&l1}:1˂+.t>~A%*htO7bMB*)ؗYap>MfVk{QuF(n2^l*C|Kc@8 c`f wЭ%h :.Aa2>C׳n2`|YrbDLQEuܦKţKc=렀}BFZk' Ke!]erFO(8rʼnȗFZ H;__gnTvLɦ_;}o8oqn?3ULfm\6zۇ}d٩;;jH-V۩\S[gp2* U}}n}z{/CjАd -ISivuLkW9—3FY3NʂR2!64k樹< I1TQUޗFq\VU6[ϢY4#MkIh- 0n%@vx7Bnl,zM.BEc$8|Mrm'GHHz{ĀxOSuTթSNUE;K-źM(]JqW|mEBәt;xL<%kΪB?K:[#(Dsu:y[giRb)a[ދ$wYpR='2<]\wOo6%]$*a磳RvPDUPXAAۦ,wsxvo9#|j{߹5O3>J ]ON wm߳?g9PR$GR$;gsDb^ HQE \LZϪgQJ9K[2KEA9I!! btm8=ЕQ\Hác|-۽ۓ|džkCS 8v{uEr͊''ވV}jY3Lɳfy2JxKk+MrL˞1-y{iU]c&mEi5V[דw"?gv}B 7l,Q54$=hG K8Tfm/0ZD~u yc16?clt `l4e26? f`]NECcSQ'qV8ac}ƙL֙ζ1}mɸ3J u܅*<=Csl\\^Ǎ?7dBDX$L윛4k^º&;.$N\C Xt1l!l_":݆SyfhWU>uhÿU t@9{{o]m/C*~gs6>i'R( ҕ(gRc&&q@{?;E 䉑-QTr, o lk]H*asptz=(;8bV[9j72MdfT6;їJl^5(mVbfZUUaKns P.nW%.!,IUBXv!dz,La6vS-1{Țɑ\[㺝|{^@+Ԧ!%2s-"G8,a"bnB܂aZl;?~'}V0+e-` &'(h6kub]fEjQ'Rj)"}.s5u*G;9"8fN~]RJe)%5PƷ4K33ۨvdѡ4f}*3]٘¦Q$%3.%*5j ]2& Nxd->[~ 0@"H~ cP@da(\Tl'~aHGaqZ"ݖS.biXF-IP0ӤwF'v68l^O a=)>Pz:[lfrtxk7<zgNk o+㳾3wʥ&o^^!}6{[ÿ\÷ 'xȳ!_ES[ fw^ 2|v92L 0ʤ-+cҖuk:KA)̤-+3B3vheÿunvd*yH[`O70)Lyq2͞VR\ o!}7϶.q/0!Pϖ<&Hp!Tf%ӭ' Z6u U+*|zd̶9 w[W|sܟ6c#>юxifbAmpDn$H-s3*wofR+/Pur޽؈db[dYhk-JMyLÛbk؁]"S!գqtiɐ!ݓ-(b$&rS%huT#tv"oDaVL`[Ɓ;g%eMJj0@XźC1JвP^iY)ttI< d8-Խ?{n}F~w_]g?aN7x󭟽q&> ЍRJA:^JR W#m-# ezJCe١F[6VZgkRׅ_yON&*LimTe15T̗eLQ. S ;<`UѕJk54Kne B\|7 mmd { I;k s5Aa^0xœ-id ȬLcW_.7L K8c%yٖlP۟*۹kOݺ 7lz᙮}#MsGw=9}ח =u7yȯ)? *0ԡ O`|5_wdI{\q2#E!a)]`Iwydwݕ/ Ruz+S3j݅R4~R_`ut'A(C#[iM74m7ySۯ-{&{VŊ ۚя}@_OɳKӷwf>y!隆]'[Bd1!jVR\ZkmZyֶֺ>5fN&g.Sj Y 9]]=VgۙHw&>13n}1\z<ҧ;r㖞կ@Oy3QiٹE+ HEAO)L0+4F(B Sqh!L'NV<ƔYtT;lGJ?F'1az~ xsX=a?~X{a&W*;S;3=>5rnգrB] !9G axpRp MSlYb|E:K rc۶mC ,ʞ@&|p~Fi*޺eSqۇxٴeϗ#KvWem;ksN$v7.(x-vCO3G?%GAU,:+ bmvsȧ1gu(Qb#yW`{ZH !s:@J0C('[}Ť;\PVk)wfQXC5Ѯv#j+=w b{N^2O/;Md3Ey|^<8Sl;wP/S5~&L Oa;Ǩn2RQ8|2iKޓܛ<'ۢAOiC<6tO[Fi^~~2~Dn}I^R^bR0XCfz4Oa[Q¶\b =Z>#vԼk,udOO#F+3'nYR4rsjNfh3~{ۖ d;f!=9{ކv{u{.7.p/u<-T 8#童T_CZ,fʷ.V>|t@㤘\*k,TDtqLIIQH0=J[bJ_)`y̡A"Ln.*RS80ryٙg(GRbjԊF&ct]imst"gb̎c+W3>ST!s‹pDU3$JKKqR5սI`z*%_**KK/@c),BݨɅiI9Υ#\OZ7I΍7* dx_v-f MkXAS5mz۫qdnm@Ds.ū*yr$1Hܰw2sfF};?[G7eN}|rxm EFZ0BtIRdWX 燉£ԟ=̅m 4N\l)y}FDVT RN(&>ġK\9zۿWџ9^g'lL8wQŗ Cӯ=c5_ᠶxַ~!?2Vkw9񜇜Oy1y^qw{CCU!_H_xI%ˤe^bl^H"s~>#;r;*=C"'bon+1R'98E*'sC`Ca,ETNA gճuTfގ?\2A~Ap{c^I%ww.alc1ky=}.y鼗` {i{Ȑ8!b!;ŝ &yH% &6+/x(ulv ȅD0 *,Ųi(݄@{e#o-Ht vYMqrrQ(gXxEN ?n̛\&M?noK8kiX,ؗN0;?>;|$\,1Eⴑj}[T4 <֡'qm0v]Jh1)r%fz˨oY2:lYOgR2ҡជ.įHq yGhT3=O؎?}Gwp7tW}vP|'@@e!2՟:0/DAKJ ׂ~#$d{?aI\"Mv|yg``w,siA}W}{ާ%=\K)e,Yg+9q=;>};eґIE_o Ň'Nqѧ}cŢ BeٸM"d)cu8nB0q>! ~| Kh"5q;ybw&2qD9oI1q>!,E&.@M\Du&.LKb_!gs,8B _pFIÿp٤44pn4 ܠ44pn R\I(m'm ?pM7{w0ܛ>Kƒbi4<gxRBgmwyi(2MlZ.pCxK1b*Q34nP'jRoRV6Q7`vRjW-G4by" XԄVAl+ķՐ㸄%Yީr^ϞU\Q hXF-rXkػi-\M,)1l+FʾтƎgTlE+Ͳe1k ҴAw{Xwx7HlkjB71ޥ=/iƻ6@F歬PY7-OٝZM )YV0qmњFmNkKkF֎֎֖ Zes5]ڂƎ *;4\jfhْƎN_+0q3iUGkgq,՜EFN^oh\_߱Nk]ˡ5h]A[U74vhӡjnhj0"rVzuӪFmu%6i՚X^ŷ|*?gW[zYN-p\HYcdY{ NRNBGs?q9YWq4R"l.ojD2IU!3W`/!-wTpo p8b_*Zv1\ "je6{("T,x`7ѐVg1:YeǼ޸c7?:#YlR iJsp+v8p@ w ~Dv8 ઄-K B~Jރz\'9 r҂ H$j"}?>-* jZ\: +o XdOD6*0`@ػzvV #o&$r3HeMT/ϑ(~o r/5*||g#.rh7`9C9D"netDB}Fj* 0pvkpIwF;:Yl:YNVZl9`ɪ^8/efGJaI6666"l?Oݾ\czl\n y,=OFܳl=&=aܓ{t2ez=?=' DqO&p>H+dLWNUӀ8IP4 |CeW:$ҍTV Z+%B5NPAB3z2y2p[`(ӡ1 n>@r8j5,,t5"/~i$MOQjL{(:u4 nov$WAJa}Ļ^T&GP*, d(,Q mξAw|>8kVDYY%Y%YYYyKIhzյO >mkS[CAZyYc5v5r|%>E4[g(]Qf60;) 7 nf^? ܅U-'RoY> stream xm]K@F+f/M+*O(~`˲{Yh*ғ;?QټNų;4Ƕpz\\Lsu\N> stream xڍx4ֶ AD{:ä5]Ht=QB":!&ysk}ߚy}z8HJu,D PL%4ᐿ턜w ;أ1@$HHHJQ Po ]b tSstBc} D$~]!0=cvb*#$A#}'4MZXK%twxNC ~QڻBP";P9P;1a  @!Lu6@ @9!+ ;B#|`GԴh= hG!10{5E=~(; B8 Ji*tu (_SC@9\ Ch=܄MGM?6G @ '_} ~nH7CB0_~({O O?W""0 8@agǘ!п֘wy>( D} }J:j:(˩ J$ 8 yՁ?2j"H_$0e^?+"1zx-@q s?e_;Ry?~{Wg4f6t A7 @@0j13p\P_vJ  a`ja>DÌlAa UE_#(*.ww!(`f -qƄ0P;ᯃc^HL_1.yc&0^w"\Edœ_W+2z --wD'ZF9igO>RW =ӟ/g?~6;x1M#ڻt ?pqF28I>^%dLjgkŝb6{.%ԆPtJƖƈS~bƱxHOnai2vKj1ӻgbZUTr驓4OKS ]#q$O&y;*{U tӖ7!7a*0/WC]RAj~=T4ߘ|X{+]tb ~)eCdS?b@Vz۠M(V^].DXNզdb@[ʒqO6+FY£vNھfngJ3ΝQy{@0.V/oHoQGmbgvD5 m8 :fY{#%)|jN.Qi = bYp .`NJIS yi7'ʖ&3{=>~6דx磈amQ%D/RQDyEp読hRF$=6wg+L0Sa^FswpV4ɱ D^:|+ +[ ?t1yBg1l=ڀ3<o1}&аuk48LLo`2Mv7N آd2:{()C SN6yzrb`/VI8[raXU"Stqr U)ϖdڧ2Okd> w+ն^)XX $quuEOvG¬ #\>R" >IG8Vv.G7"[Cl8b׏SQ\aaoWVlx3ٌ{쉏+kiۍe6SdTf$ԌORZ EM (M?aʄܸ.ُ!>M}+#- ĉ(:`5-뾤 Y[0}6i_i})?#@w·;I$ԋ-3J4zx.qV2mosEʅȇ<^#MAe`nL'=.}`f])W]Y3Ћm&mD"nPKciށx;`NFwXŒo i\«,z I9^ Տ!+b5 [>5?Ii-˺AHi3{m'P0Żf>?-E $1ƥ  9s5x6S)6m˥C71yN2 kX+V(59n.z ueXOJ{OV_ߨYk6^R т2Q.~Wg.;a(NJ+awR2̿9ZK]Aҋe[C eӑbrdATe&ŵoQ|+,`oԨNs~4_s4Zԁ>\CW$75<#TIA{q׿P83.Ե˳eGÎʃIGI_ߴdސٺn(܃~ܒԛq̷L*}lFI>ҹdO9E9HoDݚYp8bg qa;q%<ஈ9Ildp,go/i~er?pn:G@`Mt7R8R<Ыe)-OĆ$Dh6&*gkH4WTpQbkN]!"RW0@57,dlq!ɑW߾0aE \ˇc?0"eꯘYE7&ؗlqM=xiysoڅv&}l]bۅ%BE}_Ѻu=QpdM.֑:礁 F_~Z- B2fJl@ X+tW\F{_>;``ثPDRp?.~VmvA5",7H{KF8[Q /ꞇhw@3=uc_Ƿc`ĥGstE|n21zO5zWr:ׅŅN5ڔYE֪kp8t],+ܠyh\jaGϙSuMõ1H܉ء4Y+s3/p &9ἷ(&`|.I4CWF8F^ZˏFi]CW'ʏk; 'KU6?jL'dwB؆$> < B  W6VTb5Ad-XI7΋URww\1!H|_PC8zgUx:K<δ%ķ,Q^a3p$(W :hӑ|!&RI9OF& N`hGzP#JiqE+1weW)BlqS );gVw*)$G\A=g[7<@DEQ\pcf}q-M i.D<#QPUr=I`K‚v!*E4٤]M_~;@͑Eead66OSKJdcZƺ6GF:O]fbgv Fyڣ#&q'Z9dz똢;ڻ,dcW"vɧt[6ъѸG3Vn5͒]HpON-$(W~mdu ]5"[[ۢ'GqvL]eVc5Q)I Y"F{F1Uw\56{Б ?["ً'XQOi8a[PP#%]~ H~%P=ByjW"_]9T|Rb.U`qH̒"gwc٠lG/Z{xt4ǹZWx*0MkQ,z|f})` TGƍ] 4'墎ڛQ ^wmǎb-9ݯiDSV9MZGث:Ǖ 4+,GIM4^>w15-f"~"7 cKK}hk;] sR9^O{FlDacK̞R^<3᪄keN-=|,G/khiPvX-RE1ϊ[+zYUL 7<}/׍/ fݰKT|p6Tܵ WKc&y&wTg%W 2 >Jp6. _S =ֶbu`aO<f XGfS:ޙ AFjKQ2Ò:Rw;Q^JI+mF׭Yse,S_tMs7mG5*)tA<KMwFξp2n /.)c LW$,T-jO?o8Df8>6S9|=Vs Qj>ԥʏ ۸Z=QXN")yM?d0Yh{Ni`9?/΍(n[^l%sO _)sNd]$qTF.('Q5@RոU+`$ g~;5y-02ZgFZ(?V<>yfT>̎XQnpv}$d4g~ݸKTHɖyta1%n΅> stream xڍtTk6!ݠ0HСtH 0 !HIHJHw -" H|=kzv\΢ ◳FXBp4P@ Pvm'd A!0ƦF"u@H\ZHBRHi"j #! CKypYq$~!H 7 A{+;4IZPM@ menP@ ]!ր_`Gj;(/av#! G݄!HMuHM 3?DJ[Y!p(`ut5h>n v@!n`u0@YNa uBPP_ZQS"!V7ss08  EIuv)ܘcb@!)I!qU | @nP`Wtx'B!!5 B~cu$` ϛ¬p_"8/I\EDB7;?o.JA$p3yן6FoZ(Jօo;f%BXa1q{o",&Y2komMA ]@FA_` A*V.Hț>^WbE8;h_rV!ƿ1p}7,/<=` y*Ӛɣ9+xKq̈́3#ov?%`7x}݈ٮΞ"ICu֥^h~ xjCo\\Ga{I{h<_&NN)3x }DL'=J Qtlt&wO(F9䷓i >uϸ7[g+)/Rz]-#!&$X[#/0Id*gCֲ 9D깝%,3Aݧ/IJ@q籐qy?n,-Wglz% ׸]XV"km.'#^ G qmvyl$x=قR/D~%.=*9rR ˥P rn4c͐sLiz>ćP^fE8=N8/߃~{ c|4]6QIXyDx_6݂/-=[5bC[DxCRDwiQH' YXۻ|%<[ν{tuR~dzz3XƬy΁BIȴȹq8I̧jC82#votp%X`"DVج)).|.`KQh]ӝQn_n3.n)1$?iDKbt'41Rx,ןaN4Ӆ dg]*qy00P+}Z W289Fl fRKq 5Ƣ,4D dG@ɚ߭"/$0CQPa D#%#E:bԵ,eAJ=7⅃(5v~µEViCID4n_ ts qifZҀJ;C'Ɨ}'ŝCI^ V@b?au&]T+R>9ȝ灉R~=^OX-ƔЏMt<]ziF|97,3hu͛*(!GzxځO*׭@R3M/X?G }^#=EdP>yYyFx$>w8Sܻejn?D7D:>ӮLJsQ6<%<[OceƮBv c*Q*f'~ԑܲ'SALfV#?/6qDDEX+ Նfv? \ Fӫ?, bܖy͹qM'6v1"I}):R˂G6"K0UF t,$U4}"x%/ݣjIl D?JYAR+.t_ݺXr-4InPlϤ52p⩬8{X"\{̧/G) ۇ9Wg6WOt:uZ¹X< %-cyGR]?93{la26d5NxPA&EV8A؇2e߮dIiHwˮO:6'X|lIܼڽ-2SI(۬7to0#neHb2ă[(x?W%vp -*  qDu,kt|Cְ<_^ )ϲ9 ce^ l{8>u$+]9Z՛'qðV|՟IO/!-JH`aIslU]M+fQg#8f\vna_NԻ*|(Rܐ5U܌(#lmV"Mgڊ ] }/=䒶)UQ>&|3 Zt,=,7&ЙMEtY=Ô+.VRwB 7?|riǪr B.E#KJ`U8TC2-HV)o1 s)y8*z+VC3>~{a V =R2:هM'f+[Z Qn{?)뇫Eⶡ)lVgI#{aWsZDʓ+g%j2̪5v F$Y}%7Z.f/#o(6~{ad̝ąS$8EB& FQl+MTESVEqfɖhRO9[4aÃUS4*5^RyPچ-5ŒaZk>^ ¬&= Ҹ/Z}MnpGmʤH+k1I݉B1`3[)T4~#ykCT*ÑdLa {$ɓrjVfm;Ĭ~7SEOYn4^n2 IS zz}ȉhٰȻP9.cBmMۻCbk@`NMɈ=^֥Z[M"1QK^0ɭW/ᘱ'\p`Z&ٽ6?[~Znʾ-5 +rGSU@70H̗a>t#;?y7E8e)H! Lz:zzwHV ]7{}&vZ&hCIx9O%iTk ŔbZw76.K,>P5(@7V_oO^#ok=pe'3H .dv/*i2:ObN5sXVt1.1rG3 56r S=6JwŎ7_.e[]D<=iiX$lѶ7$i(&-f@xISvDauq/ߗ2Y cDyGe?tpc;ze)Ggjf,VlN" [277#LMWRkbDF'TK#5)8kT c>NN 7.>޹;/aNi WSiW؉h@)ȯ~0v@Q֌^?綄?+ipMߑ`K/YwH^<(E)`- X~T}IXќ6;LVwhLǚތ85p|ڮ3ŷ&j?vh6)D2~7a~jfh"ޠ}O/8_Au!!sgju?l΅ŭ)%#' (7ip4 1p"/VoOsxU>S0!BmpCaN̑'EtF|,UoWRSTlȰ ˩kṁ;$ {pڪE%_>}M6y`/`X7M&K8Z\HؤԷ[3̈́ֆvHV2l2Mauk %S*]U^&ȕ)RXSsj]Mjy柊$TiUTrki7/\Xiet@ۙ)-N 8}`H:Lփ=~1>.pug_-M_;x.E \ks ٘"َmiC s'Z=\pYG?I=-6fўz{Ǽ'*IЦsF* %#[8qGJʊ.NaVnyQ[N \NTd m'qC0Mv7QR.@r3*)AeFH ;ũ]?L.| u}-aIMٰI)"D;:J!Q~Hn6 마!VK%PZ螺ڿi˘"6]sgƷ#VJ7A{Ƥ{)ЧGX|{HK%^o D_fABt⼢2ǞrjXּ$@LZ=jNuZ}FMuhL i=cTr.gg:;}ls|WqHתÄM?.2Qb(fb^V;& VCj@;D}hȣ^r 6sgQp빥IVk&l>};4A{eF]hԿuZ퉭cڌQFm *n5w&r}1\7 ra-Ƚey}YJ;EʧcؕLLD:kIdY(8wɾ{gψ0;NDg' +"b/R+.B&Z@޻eJ}I jW#]g<@Q .T|yEdqUL}6ݔ vaSL: hYhjڮ9m$l]e%roR:(J)">k. 6ceq\Dm|Rë !=8[h839vhKFU1ʭg_@ w\'U-/5IP )0=jLbs W5!]֞eLl|!om:E3 S̓,aقոn-$\jrQC.:=HE~}|dS`~pegRuE٫oV;@@/z m?%pq~SC^(?tZ!WYbA? NrEs)4!?ӧؠ΂&ogH/_,!:krLO AJ9zؙ oq iQڠ1IנbUKsfD4\?̆!xHșWDWoD9تA4$U}&'OjhPo }RyӼkF_E$X\r|RM`a>}zi5bD3./nM%x#+&:aw $BU˾-EXĤqP> endobj 1900 0 obj << /Type /ObjStm /N 39 /First 356 /Filter /FlateDecode /Length 2220 >> stream xڽY[o~ϯࣅw_ӠI?l=dH!wJ( p8Ï [ƙ <LjA ɴvPy$@)N-@ RJi* ǙqLmC`lcB[ˬdž K&a\sfFϤ8 dRx[& ~Z!I' IrP[LqI_j8 2%TĈ0bt, tuTXM[P OH`V ^5-i]5r=\>tѪ=ϫ5SQx'k/l91Mַ IK}M]rFcaM[ۣ͛ݼF;붾/IΚy8Ğwhuݒ -4 ]׋Yܡдaj]'c #@5&J\b ZI M~76 hd "f5f%xwͺ]}g{Gz¦f|O(ԇy}OK130g,ᬳDZ"M1n0 N&hs+ﳎ59槊o?~y|\57 ^VBV4g6Տ\Ы~M=U;r7Z2 vSwa|fTՠ2GF'MV} 7% V bQFE;LB0Mˌ>a+>; R$آXv:Tsctlt7iD1Xj J SKspɯS1Ahs01>= D%Dىgg/O.?bǾlpyyg[϶{i<T *5)BNOV+=6V_ɶl#'//.vؾ2@; e֮AF-)hp= ?UpيJ'YZ1:YuM0x n?u: *_Uw6cH}tk3b=j)d +e\m. O CE S6VNU]7X㵆8lZL'#_w*6'!]@*4\JBᓄadj ͓#Z$5]$0.oӉKȺ$q %9Tz;3Cݤfx7G,ΛE(K9=Hnff"ct=b .nժF:LiGg^y3̔ˊWa3b9)_}g_2T Yu) Gz:pA[цmA[l;:3%FІ ڰ 86hqp;]_ժ7{շj&̺B'MU!B,Hl 0N.VR[O^ ]* 3š8m\Ql0jW 9Y.@bY/BQ.̼;s1fŘ6L'.pA+)9Sd/EG,|J2wBW)`ԷT*rUysߴJ"')Lv#Qh+N+ y+BOUEn+PUJE 3F\ `u֫ [ZEB6OabPC)@{a 25p\6rC`qmpСDeZq@+.{xmJO$A U.7ATߗ$ֹX[cns3гC)zZ&]o@ Cis&fu^Fy:pLLn+. č㻇Oo?>D ]"_$Tm5_u/Sl ¿ ӥXuݩy_^>ޯ?sl\BK`KĖ -EqXSS-6el:<5mϱ}sx?ԋ[bR6_F endstream endobj 1930 0 obj << /Type /XRef /Index [ 0 1931 ] /Size 1931 /W [ 1 3 1 ] /Root 1928 0 R /Info 1929 0 R /ID [ <426D91FD711C23EBCEEBC694895092E8> <426D91FD711C23EBCEEBC694895092E8> ] /Filter /FlateDecode /Length 4095 >> stream x%I$_^xRkewQ!PxÈ"*p@P# (((AP|^9z[||~ߊʮ,F,r1c#2dT6eYȖNG&GCsmt4ѡ,kݶƇۗܶ`!&0EX%XeX)@!xToBv)zlFl[ ۱; {qqqGq q'sMȎipppWpp7ppwpp3xxp|gxo0N+}xO0rM?7ssM?7sM?7sM?7sM?7|%V! m.K+X㺖"|-NMc.йs\r:u A\r:u A\r:u A\:s~>d3>u A\r:u A\r:u A<A\r`"rχٷJ4#bjg :1tbЉC'N :1tbЉC'ubЉC'N jo.m⇐}R I@'N: t$I@'N: t$I@'N: t$I@'ND;d1d__Љ:t:tAN:t:tAN:t:tAN:t:7; tC]!C1Q!ۜsbXXX *wdki?g*}ٯQ:݂؆؁؅؃؇8888888i9 B {.b3zo3=uMm]} ^"'|7xwxP5dmP^5GCmb(PC)R J1b(PC)R J1b(PC)R J1b(7`#6a/B?֧RQb(PC)R J1b(PC)ҠJ1b(PC)R J1b(P^J[eܫm)RJ (%PJ@)RJ (%PJ@)RJ (%PJ@)ReJ uji}!:u=(o{?Jߛ~oߛ~oߛ~oߛ~oߛ~oߛ~oߛ~o{؏싃i}[l~n^"zE+WD^"zE+WD^"zE+WD^"zE:uл;BN/塟kwnjE.^,zYeˢE/^,zYeˢE/^,zYeˢlfS+Ca>`!&0EX%XeX)JjZzlFl[ i;Bv`7{qqqGq q'q q8s8 K+kB{scO/oZZ:h1C/]Ɯq3IAVZ:huAVZ:huAVZ:huAv;LM9/d?2oVZ:huAVZ:huAVZ:huAVZlMM۹'di%޷:huAVZ:huAVZ:huA0a`cH;y7d?ήO",,2,V`%Va5`-a=6`#6a؂؆؁؅ BAZ,!1 )L,<.".2*O븁۸}!L}3tib;zxxxxxxx Ԟ@-Zj 1i'-p:hotPAZVAZj:uPAZj:uPAZjojӯvNpAbPC-Z j1bPC-Z j1bPC-Z j1bPHy _K˽lGZj:uPAZj:uPAZg!`(0yH; 7gn[X *:l& [۰;{sQ/ObNN qpppWpp7ppwppi;i0Wh1 ^^ >t7 :(tPAB  1BP>vt0t :(tPAB :(tPAB :(tPAB :(􋴝KBA/tPAB :(tPAB :(tPAB :(tPA􋴝GB濥>b/tPAB :(tPABG::::::::::::ꌦN> .=?eo/-!!!!!!!!!!!!!!!!!!!!!!!!!! { \usetheme{Goettingen} \usecolortheme[named=Asparagus]{structure} \setbeamercolor{section in sidebar}{fg=Asparagus} \setbeamercolor{section in sidebar shaded}{fg=Asparagus} % \setbeamercovered{transparent} } \usepackage[english]{babel} \usepackage{fontspec} \setmainfont{Linux Libertine O} \setsansfont{Arial} \setmonofont{Courier New} \title[\BibLaTeX and Biber] {\BibLaTeX and Biber, some history and plans for the future} \author{Philip Kime} \date {19.10.2019 / DANTE Herbsttagung} \beamerdefaultoverlayspecification{<+->} \def\BibLaTeX{\textsc{Bib}\LaTeX} \def\BibTeX{\textsc{Bib}\kern-.08em \TeX} \begin{document} \begin{frame} \titlepage \end{frame} \section*{Introduction} \subsection*{\BibLaTeX} \begin{frame}{What is \BibLaTeX?}{} \begin{itemize} \item \BibLaTeX\ is a comprehensive bibliography and references typesetting system for \LaTeX \item Styles are completely separate from the backend (\BibTeX, Biber) \item It uses the \texttt{.bbl} file like a database \end{itemize} \end{frame} \begin{frame}{Origins of \BibLaTeX}{} \begin{itemize} \item Started in 2006 by Philipp Lehman ... \item ... who disappeared in 2011 \item Sophisticated styles for humanities and data/style separation \item Started to run into limitations imposed by \BibTeX\ as backend in 2008 \end{itemize} \end{frame} \subsection*{Biber} \begin{frame}{What is Biber?} \begin{itemize} \item Biber is the default backend for \BibLaTeX, written for \BibLaTeX\ and designed to overcome \BibTeX\ limitations \item Its main job is sorting (full multi-field, UCA with CLDR tailoring) \item It also does a \textbf{lot} of other things ... \end{itemize} \end{frame} \begin{frame}{Origins of Biber}{} \begin{itemize} \item Started around 2008 by François Charette as dedicated \BibLaTeX\ backend \item PL put me in touch with FC when I found limitations in \BibTeX preventing implementation of APA style \item My first commit April 14th 2009 \item Became sole developer early 2011 \end{itemize} \end{frame} \section*{Statistics and Features} \subsection*{Some Statistics} \begin{frame}{Since 2009} \begin{itemize} \item \textasciitilde 4000 total commits \item \textasciitilde 250k total \textbf{manual} downloads \item \textasciitilde 50k lines of code \item \textasciitilde 1k issues/bugs, 95\% resolved \item Germany is largest user (\textasciitilde 33\%) by Sourceforge downloads (twice US) \end{itemize} \end{frame} \begin{frame}{Features} \begin{itemize} \item Full Unicode (UTF-8) support including auto-reencoding and \LaTeX\leftrightarrow UTF-8 conversion \item Best-in-class sorting \item Completely customisable datamodel \item Dynamic data mapping \item Automatic name and name list disambiguation \item Biber Tool mode \item Generalised name support \item Sophisticated label auto-disambiguation and generation \item Customisable data inheritance \item Full support for all types of ``related'' entries \end{itemize} \end{frame} \begin{frame}[shrink=10]{Technical History} \begin{description} \item[29.04.2009] Started on \texttt{.bcf} format (\texttt{XML}) which is \textasciitilde 2000 lines as opposed to the \textbf{one} line original control file format \item[18.05.2009] Moved from Subversion to Git \item[05.2010] Started hacking \texttt{btparse} \item[09.2010] ``binary'' distribution and real CLDR support \item[10.2010] TLContrib \item[11.2010] Dynamic entry sets, related entries \item[12.2010] Real multi-field sorting, \texttt{.bcf} to \texttt{HTML} via \texttt{XSLT} \item[2011] Became sole maintainer \item[04.2011] \texttt{uniquelist} option implemented, APA style now fully possible\ldots \item[06.2011] customisable labelalpha and auto-disambiguation methods \item[06.2011] Datasource mapping functionality \item[04.2012] Generalised sorting lists to make multiple, differently sorted bibliographies and other bib lists possible \item[2012] Generalised, explicit datamodel implemented and passed in \texttt{.bcf} \item[12.2012] Biber Tool mode \item[2016--2017] Data annotations, extended name format, full generalisation of all aspects of name handling (sorting key, name parts etc.), ISO8601 date handling \end{description} \end{frame} \section*{Present and Future} \subsection*{Present} \begin{frame}{Personnel} \begin{itemize} \item \BibLaTeX - Philip Kime and Moritz Wemheuer \item Biber - Philip Kime (plus release builders) \end{itemize} \end{frame} \subsection*{Future} \begin{frame}{Planned Developments} \begin{itemize} \item Multiscript support \item Quick-start documentation \item Granular regression test setup for \BibLaTeX \item ``Stand-alone'' \texttt{.bbl} \item Finding someone to help support Biber \end{itemize} \end{frame} \end{document} biber-2.19/etc/biber-tb-final.tex000066400000000000000000000345761440117422400166200ustar00rootroot00000000000000\documentclass[final]{ltugboat} \usepackage{graphicx,microtype} \usepackage[breaklinks,colorlinks,linkcolor=black,citecolor=black, urlcolor=black]{hyperref} \def\BibLaTeX{\Bib\LaTeX} \interlinepenalty = -300 \title{Biber\Dash{}the next generation \\backend processor for \BibLaTeX} \author{Philip L. Kime} \address{Z\"{u}rich, Switzerland} \netaddress{Philip (at) kime dot org dot uk} \personalURL{http://biblatex-biber.sourceforge.net} \begin{document} \maketitle \begin{abstract} For many, particularly those writing in the humanities, Philipp Lehman's \BibLaTeX\ package has been a much welcomed innovation in \LaTeX\ bibliography preparation. The ability to avoid the \BibTeX\ stack language and to be able to write sophisticated bibliography styles using a very rich set of \LaTeX\ macros is a considerable advantage. Up until 2009 however, \BibLaTeX\ still relied on \BibTeX\ to sort the bibliography, construct labels and to create the \verb|.bbl|. The requirement for a dedicated backend processor to do such tasks was not going to go away as doing complex, fast sorting in \TeX\ is not a particularly amusing task. It was clear that in the future, the \BibLaTeX\ backend processor needed to be able to handle full Unicode and many feature requests were being raised for things which the backend had to do and which were either impossible or nightmarish to do with \BibTeX. Biber was created to address these issues and this article is about how it works and the many rather nice things it can do. Biber is the recommended backend processor for \BibLaTeX, replacing \BibTeX. There will come a time (probably around \BibLaTeX\ 2) when \BibTeX\ is deprecated for use with \BibLaTeX, so read on \ldots \end{abstract} \section{History} Fran\c{c}ois Charette originally started to write Biber in 2008 and after I realised that an \acro{APA} style I was writing for \BibLaTeX\ required some fundamental changes to the backend processor and that \BibTeX\ wasn't going to be it (for why, see below), I had a look at the early Biber. I played with it for a while, found a small bug and submitted it. Things escalated and development entered a very rapid period where Fran\c{c}ois and I knocked Biber into a releasable shape quite quickly. After a year or so, the vicissitudes of life pulled Fran\c{c}ois away and I was left to my own devices with Biber gaining users rapidly, particularly in Germany, probably due to Philipp Lehman's involvement with the development as we soon realised we had to coordinate \BibLaTeX\ and Biber releases. This continues and \BibLaTeX\ and Biber are now so closely linked, it is fair to say that they are essentially one product. As we approach the \BibLaTeX~2.0 release, the plan is to drop \BibTeX\ support altogether as there are so many features now which are marked ``Biber only'' in the \BibLaTeX\ manual. It's those features which I will describe~below. Fran\c{c}ois says that the name comes from the national animal of the last country he lived in, translated into the language of the country he currently lives in. It also sounds a bit bibliographical. \section{What Biber does} Biber is used just as you would \BibTeX. It's designed to be a drop-in replacement for \BibLaTeX\ users. It uses a \BibTeX\ compatible C library called ``\verb|btparse|'' and so existing \verb|.bib| files should work as-is. When \BibLaTeX\ is told that it's using Biber instead of \BibTeX\ as the backend processor, it outputs a special \verb|.bcf| file. This is nothing more than a fancy \verb|.aux| file in \XML\ which describes all of the necessary options, citation keys and data sources which Biber uses to construct the \verb|.bbl|. \XML\ was a natural choice as the options can get quite complex (particularly for sorting). Biber reads the \verb|.bcf| file, looks for the required data sources, reads them and looks for the citation keys also mentioned in the \verb|.bcf|. Then it constructs a \verb|.bbl| and writes it. Sounds simple? It's not. Biber is about 20,000 lines of mostly object-oriented Perl and some of the things it does are quite tricky. \section{Distributing Biber} Biber is written in Perl. This is an ideal language for such a task, as Perl 5.14 (which is what Biber uses now) has full Unicode 6.0 support and some really superb modules for collating \acro{UTF-8} which have \acro{CLDR}\footnote{Common Locale Data Repository} support, allowing sorting to be tailored automatically to the idiosyncrasies of particular languages. The \verb|Text::BibTeX| module makes parsing \BibTeX\ files easy but I had to change the underlying \verb|btparse| C library a little bit to make it deal with \acro{UTF-8} when forming initials out of names and to address a few other things which are the inevitable consequences of a library written probably fifteen years ago; other than that, the library has proven to be a solid foundational element of Biber. I have to thank Alberto Manuel Brand\~{o} Sim\~{o}es, the current \verb|Text::BibTeX| maintainer for being so flexible and releasing new versions so quickly after my hacks. Distributing Perl programs with such module dependencies is not easy and was a major stumbling block to early adoption of Biber. Then I came across the marvellous \verb|PAR::Packer| module which allows one to package an entire Perl tree with all dependencies into one executable which is indistinguishable from a ``real'' executable. One virtualised build farm later and Biber had an automated build procedure for most major platforms and was swiftly put into \TeX{}\ Live. Now all users have to do is to update their \acro{TL} installation and type ``\verb|biber|''. SourceForge\footnote{\url{https://sourceforge.net/projects/biblatex-biber}} is home to regular updates of the development binaries and github\footnote{\url{https://github.com/plk/biber}} is home to the Perl source which can be used instead of the binary versions if you don't mind installing some Perl modules (in fact, I only ever use the Perl source version myself). \section{Unicode and sorting} One of the main issues with the original \BibTeX\ is that it is \acro{ASCII} only. There is an 8-bit version \verb|bibtex8| but that's not really enough these days. There is also a newish Unicode version \verb|bibtexu| but that doesn't help \BibLaTeX's myriad of other needs for its backend and it doesn't help with \acro{CLDR} and the hard problem of complex sorting. Biber is Unicode 6.0 compliant throughout, even the file names it reads and the citation keys themselves. This means that your data sources can be pure \acro{UTF-8} which is particularly nice if you are using a \acro{UTF-8} engine like \XeTeX\ or Lua\TeX. In fact, Biber will look at the locale settings passed by \BibLaTeX\ (or those found in the environment or passed on the command line) and automatically (re)encode things to output a \verb|.bbl| in whatever encoding you want. It will even automatically convert \acro{UTF-8} to and from \LaTeX\ character macros/symbols in case you are using a not-quite-Unicode engine like pdf\TeX. Sorting is one of the most important things that Biber does. Sorting the bibliography is done by default using the \acro{UCA} (Unicode Collation Algorithm) via the excellent \verb|Unicode::Collate| module. This is \acro{CLDR} aware and so it will take notice of the locale from various sources and tailor the sort accordingly. Swedes hate it when \"{a} sorts before \r{a} and \acro{CLDR} support avoids upsetting Swedes. Sorting a bibliography means dealing with sorting requirements such as: \begin{quote} ``Sort first by name (or editor if there is no name or translator if there is no editor) and then descending by year and month (or by original year and month of publication if there is no year) and then by just the last two digits of the volume and then by title (but case insensitive for title). Oh, and if there is a special shorthand for the entry, sort by that instead and ignore everything else.'' \end{quote} \noindent Biber does this in complete generality using a multi-field sorting algorithm allowing case sensitivity, direction and substrings to be specified on a per-field basis. \BibLaTeX\ defines many common sorting schemes (such as name/year/title, etc.)\ but you are free to define your own using a nice \LaTeX\ macro interface. This interface makes \BibLaTeX\ write a section in the \XML\ \verb|.bcf| which Biber reads to construct the sorting scheme it uses to sort the entries before writing the \verb|.bbl|. I am not aware of any bibliography system that has better sorting but that may be wishful thinking born of spending so much time getting it to work \ldots \section{Data sources and output} It may have struck readers as strange that I refer to their \verb|.bib| files as ``data sources''. This is because Biber can read more than just \BibTeX\ format files. It has a modular data source reading/writing architecture and so new drivers can be written relatively easily to implement the ability to read new data sources and write new output formats. Data sources are read and internal entry objects constructed so that the data is processed in a source-neutral format internally. Currently, Biber can also read files in \acro{RIS} format, Zotero \acro{XML/RDF} format and Endnote \XML\ format but support for these formats is experimental, partly due to weaknesses in the formats themselves, it has to be said. There is support for remote data sources for all formats by specifying a \acro{URL} that returns a file in the format. This is quite useful with services such as CiteuLike which has a \verb|.bib| gateway. Biber normally outputs a \verb|.bbl| file but it can also output a GraphViz \verb|.dot| file which allows you to visualise your data. This is mainly useful for checking complex cross-reference inheritance and other entry-linking semantics. Biber can also output \BibLaTeX{}\acro{ML} which is an experimental \XML\ data format specially tuned for \BibLaTeX\ (of course it can read this too). A very nice feature of Biber is the ``sourcemap'' option. It is often the case that users would like to massage their data sources but they have no control over the actual source. Biber allows you to specify data mapping rules which are applied to the data as it is read, effectively altering the data stream which it sees, but without changing the source itself. For example, you can: \begin{itemize} \item Drop all \acro{ABSTRACT} fields as the entries are read so that their strange formatting doesn't break \LaTeX. \item Add or modify a \acro{KEYWORD} field in all \acro{BOOK} or \acro{INBOOK} entries which come from a data source called ``\nolinkurl{references.bib}'' whose \acro{TITLE} field matches ``Collected Works'' so that you can split your bibliography using \BibLaTeX\ filters. \item Use full Perl regular expressions to match\slash replace in any field in the entry to regularise messy variants of a name so that the same-author disambiguation features of \BibLaTeX\ work nicely. \end{itemize} \noindent The ``sourcemap'' option is quite general and provides a linear mapping interface where you can specify a chain of rules to apply to each entry as it is read from the data source. The Biber \PDF\ manual has many examples. \section{Uniqueness} A major feature is the automated disambiguation system. Depending on the options which you set in \BibLaTeX, Biber will automatically disambiguate names by using either initials or, if necessary, full names. Even better, it can, if you like, disambiguate lists of names which have been truncated using ``et al.''\ by expanding them past the ``et al.''\ to the point of minimal unambiguity. (This is a requirement for \acro{APA} style and the very feature I needed when I started looking at Biber. It took two years to get this implemented.) This is fairly deep magic as it interacts with name disambiguation in an unbounded loop sort of way. The disambiguation system can be asked to do more subtle types of work too, such as disambiguating citations just enough to make them unambiguous pointers into the bibliography but not enough to make every single individual author unambiguous, etc. These are quite fine points and make sense when you read the section of the \BibLaTeX\ manual which covers this, with examples. Again, I don't know of any other bibliography system that has automated this. \section{Other features} The following features are all due to feature requests by \BibLaTeX\ users and some were quite complex to implement. Some of them are waiting until \BibLaTeX~2.x for a macro interface to expose them to users as this is when it is planned to deprecate \BibTeX\ support in \BibLaTeX. \hfuzz=1.1pt \begin{itemize} \item Many \BibLaTeX\ options can be set on a per-entrytype basis so you can, for example, choose to truncate names lists of five or more authors with ``et al.''\ for \acro{BOOK} entries and choose a different limit for \acro{ARTICLE} entries. \newpage \item Biber only needs one run to do everything, including processing multiple sections. \item You can create an entry ``set'' (a group of entries which are referenced/cited together) dynamically, just using \BibLaTeX\ macros. With \BibTeX, this requires changes to the data source. \item ``Syntactic'' inheritance via a new \acro{XDATA} entrytype and field. This can be thought of as a field-based generalisation of the \BibTeX\ \verb+@STRING+ functionality (which is also supported). \acro{XDATA} entries can cascade so you can inherit specific fields defining a particular publisher or journal, for example. \item ``Semantic'' inheritance via a generalisation of the \BibTeX\ cross-reference mechanism using the \acro{CROSSREF} field. This is highly customisable by the user\Dash{}it is possible to choose which fields to inherit for which entrytypes and to inherit fields under different names etc. Nested cross-references are also supported. \item Support for related entries, to enable generic treatment of things like ``translated as'', ``reprint\-ed as'', ``reprint of'' etc. (\BibLaTeX\ 2.x) \item Customisable bibliography labels for styles which use labels (\BibLaTeX\ 2.x) \item Multiple bibliography lists in the same section with different sorting and filtering.\\(\BibLaTeX~2.x) \item No more restriction to a static data model of specific fields and entrytypes. (\BibLaTeX~2.x) \item Structural validation of the data against the data model with a customisable validation model (\BibLaTeX\ 2.x) \end{itemize} \smallskip \noindent Feature requests and bug reports are always welcome via the SourceForge tracker. \bigskip \advance\signaturewidth by 3pc \makesignature \end{document} biber-2.19/etc/bibtex.g000066400000000000000000000506531440117422400147400ustar00rootroot00000000000000/* ------------------------------------------------------------------------ @NAME : bibtex.g @DESCRIPTION: PCCTS-based lexer and parser for BibTeX files. (Or rather, for the BibTeX data description language. This parser enforces nothing about the structure and contents of entries; that's up to higher-level processors. Thus, there's nothing either particularly bibliographic or TeXish about the language accepted by this parser, apart from the affinity for curly braces.) There are a few minor differences from the language accepted by BibTeX itself, but these are generally improvements over BibTeX's behaviour. See the comments in the grammar, at least until I write a decent description of the language. I have used Gerd Neugebauer's BibTool (yet another BibTeX parser, along with a prettyprinter and specialized language for a common set of bibhacks) as another check of correctness -- there are a few screwball things that BibTeX accepts and BibTool doesn't, so I felt justified in rejecting them as well. In general, this parser is a little stricter than BibTeX, but a little looser than BibTool. YMMV. Another source of inspiration is Nelson Beebe's bibclean, or rather Beebe's article describing bibclean (from TUGboat vol. 14 no. 4; also included with the bibclean distribution). The product of the parser is an abstract syntax tree that can be traversed to be printed in a simple form (see print_entry() in bibparse.c) or perhaps transformed to a format more convenient for higher-level languages (see my Text::BibTeX Perl module for an example). Whole files may be parsed by entering the parser at `bibfile'; in this case, the parser really returns a forest (list of ASTs, one per entry). Alternately, you can enter the parser at `entry', which reads and parses a single entry. @GLOBALS : the usual DLG and ANTLR cruft @CALLS : @CREATED : first attempt: May 1996, Greg Ward second attempt (complete rewrite): July 25-28 1996, Greg Ward @MODIFIED : Sep 1996, GPW: changed to generate an AST rather than print out each entry as it's encountered Jan 1997, GPW: redid the above, because it was lost when my !%&$#!@ computer was stolen Jun 1997, GPW: greatly simplified the lexer, and added handling of %-comments, @comment and @preamble entries, and proper scanning of between-entry junk @VERSION : $Id: bibtex.g 640 1999-11-29 01:13:10Z greg $ @COPYRIGHT : Copyright (c) 1996-99 by Gregory P. Ward. All rights reserved. This file is part of the btparse library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. -------------------------------------------------------------------------- */ #header << #define ZZCOL #define USER_ZZSYN #include "config.h" #include "btparse.h" #include "attrib.h" #include "lex_auxiliary.h" #include "error.h" #include "my_dmalloc.h" extern char * InputFilename; /* for zzcr_ast call in pccts/ast.c */ >> /* * The lexer has three modes -- START (between entries, hence it's what * we're in initially), LEX_ENTRY (entered once we see an '@' at * top-level), and LEX_STRING (for scanning quoted strings). Note that all * the functions called from lexer actions can be found in lex_auxiliary.c. * * The START mode just looks for '@', discards comments and whitespace, * counts lines, and keeps track of any other junk. The "keeping track" * just consists of counting the number of junk characters, which is then * reported at the next '@' sign. This will hopefully let users clean up * "old style" implicit comments, and possibly catch some legitimate errors * in their files (eg. a complete entry that's missing an '@'). */ #token AT "\@" << at_sign (); >> #token "\n" << newline (); >> #token COMMENT "\%~[\n]*\n" << comment (); >> #token "[\ \r\t]+" << zzskip (); >> #token "~[\@\n\ \r\t]+"<< toplevel_junk (); >> #lexclass LEX_ENTRY /* * The LEX_ENTRY mode is where most of the interesting stuff is -- these * tokens control most of the syntax of BibTeX. First, we duplicate most * of the START lexer, in order to handle newlines, comments, and * whitespace. * * Next comes a "number", which is trivial. This is needed because a * BibTeX simple value may be an unquoted digit string; it has to precede * the definition of "name" tokens, because otherwise a digit string would * be a legitimate "name", which would cause an ambiguity inside entries * ("is this a macro or a number?") * * Then comes the regexp for a BibTeX "name", which is used for entry * types, entry keys, field names, and macro names. This is basically the * same as BibTeX's definition of such "names", with two differences. The * key, fundamental difference is that I have defined names by inclusion * rather than exclusion: this regex lists all characters allowed in a * type/key/field name/macro name, rather than listing those characters not * allowed (as the BibTeX documentation does). The trivial difference is * that I have disallowed a few extra characters: @ \ ~. Allowing @ could * cause confusing BibTeX syntax, and allowing \ or ~ can cause bogus TeX * code: try putting "\cite{foo\bar}" in your LaTeX document and see what * happens! I'm also rather skeptical about some of the more exotic * punctuation characters being allowed, but since people have been using * BibTeX's definition of "names" for a decade or so now, I guess we're * stuck with it. I could always amend name() to warn about any exotic * punctuation that offends me, but that should be an option -- and I don't * have a mechanism for user selectable warnings yet, so it'll have to * wait. * * Also note that defining "number" ahead of "name" precludes a string of * digits from being a name. This is usually a good thing; we don't want * to accept digit strings as article types or field names (BibTeX * doesn't). However -- dubious as it may seem -- digit strings are * legitimate entry keys, so we should accept them there. This is handled * by the grammar; see the `contents' rule below. * * Finally, it should be noted that BibTeX does not seem to apply the same * lexical rules to entry types, entry keys, and field names -- so perhaps * doing so here is not such a great idea. One immediate manifestation of * this is that my grammar in its unassisted state would accept a field * name with leading digits; BibTeX doesn't accept this. I correct this * with the check_field_name() function, called from the `field' rule in * the grammar and defined in parse_auxiliary.c. */ #token "\n" << newline (); >> #token COMMENT "\%~[\n]*\n" << comment (); >> #token "[\ \r\t]+" << zzskip (); >> #token NUMBER "[0-9]+" #token NAME "[a-z0-9\!\$\&\*\+\-\.\/\:\;\<\>\?\[\]\^\_\`\|]+" << name (); >> /* * Now come the (apparently) easy tokens, i.e. punctuation. There are a * number of tricky bits here, though. First, '{' can have two very * different meanings: at top-level, it's an entry delimiter, and inside an * entry it's a string delimiter. This is handled (in lbrace()) by keeping * track of the "entry state" (top-level, after '@', after type, in * comment, or in entry) and using that to determine what to do on a '{'. * If we're in an entry, lbrace() will switch to the string lexer by * calling start_string(); if we're immediately after an entry type token * (which is just a name following a top-level '@'), then we force the * current token to ENTRY_OPEN, so that '{' and '(' appear identical to the * parser. (This works because the scanner generated by DLG just happens * to assign the token number first, and then executes the action.) * Anywhere else (ie. at top level or immediately after an '@', we print a * warning and leave the token as LBRACE, which will cause a syntax error * (because LBRACE is not used anywhere in the grammar). * * '(' has some similarities to '{', but it's different enough that it * has its own function. In particular, it may be an entry opener just * like '{', but in one particular case it may be a string opener. That * particular case is where it follows '@' and 'comment'; in that case, * lparen() will call start_string() to enter the string lexer. * * The other delimiter characters are easier, but still warrant an * explanation. '}' should only occur inside an entry, and if found there * the token is forced to ENTRY_CLOSER; anywhere else, a warning is printed * and the parser should find a syntax error. ')' should only occur inside * an entry, and likewise will trigger a warning if seen elsewhere. * (String-closing '}' and ')' are handled by the string lexer, below.) * * The other punctuation characters are trivial. Note that a double quote * can start a string anywhere (except at top-level!), but if it occurs in * a weird place a syntax error will eventually occur. */ #token LBRACE "\{" << lbrace (); >> #token RBRACE "\}" << rbrace (); >> #token ENTRY_OPEN "\(" << lparen (); >> #token ENTRY_CLOSE "\)" << rparen (); >> #token EQUALS "=" #token HASH "\#" #token COMMA "," #token "\"" << start_string ('"'); >> #lexclass LEX_STRING /* * Here's a reasonably decent attempt at lexing BibTeX strings. There are * a couple of sneaky tricks going on here that aren't strictly necessary, * but can make the user's life a lot easier. * * First, here's what a simple and straightforward BibTeX string lexer * would do: * - keep track of brace-depth by incrementing/decrementing a counter * whenever it sees `{' or `}' * - if the string was started with a `{' and it sees a `}' which * brings the brace-depth to 0, end the string * - if the string was started with a `"' and it sees another `"' at * brace-depth 0, end the string * - any other characters are left untouched and become part of the * string * * (Note that the simple act of counting braces makes this lexer * non-regular -- there's a bit more going on here than you might * think from reading the regexps. So sue me.) * * The first, most obvious refinement to this is to check for newlines * and other whitespace -- we should convert either one to a single * space (to simplify future processing), as well as increment zzline on * newline. Note that we don't do any collapsing of whitespace yet -- * newlines surrounded by spaces make that rather tricky to handle * properly in the lexer (because newlines are handled separately, in * order to increment zzline), so I put it off to a later stage. (That * also gives us the flexibility to collapse whitespace or not, * according to the user's whim.) * * A PCCTS lexer to handle these requirements would look something like this: * * #token "\n" << newline_in_string (); >> * #token "[\r\t]" << zzreplchar (' '); zzmore (); >> * #token "\{" << open_brace(); >> * #token "\}" << close_brace(); >> * #token "\"" << quote_in_string (); >> * #token "~[\n\{\}\"]+" << zzmore (); >> * * where the functions called are the same as currently in lex_auxiliary.c. * * However, I've added some trickery here that lets us heuristically detect * runaway strings. The heuristic is as follows: anytime we have a newline * in a string, that's reason to suspect a runaway. We follow up on this * suspicion by slurping everything that could reasonably be part of the * string and still be in the same line (i.e., a string of anything except * newline, braces, parentheses, double-quote, and backslash), and then * calling check_runaway_string(). This function then "backs up" to the * beginning of the slurped string (the newline), and scans ahead looking * for one of two patterns: "@name[{(]", or "name=" (with optional * whitespace between the "tokens"). (Actually, it first makes a pass over * the string to convert all whitespace characters -- including the sole * newline -- to spaces. So, it's effectively looking for "\ *\@\ *NAME\ * *[\{\(]" (DLG regexp syntax) or "\ *NAME\ *=", where * NAME="[a-z][a-z0-9+/:'.-]*" -- that is, something that looks like the * start of an entry or a new field, but in a string (where they almost * certainly shouldn't occur). Of course, there are no explicit regexps * there -- it's all coded as a little hand-crafted automaton in C. * * At any rate, if either one of these patterns is matched, * check_runaway_string() prints a warning and sets a flag so that we don't * print that warning -- or indeed, even scan for the suspect patterns -- * more than once for the current string. (Because chances are if it * occurs once, it'll occur again and again and again.) * * There is also some trickery going on to deal with '@comment' entries. * Syntactically, these are just AT NAME STRING, where NAME must be * 'comment'. This means that an '@comment' entry has no delimiters, it * just has a string. To make them look a bit more like the other kinds of * entries (which are delimited with '{' ... '}' or '(' ... ')', the STRING * here is special: it's delimited either by braces or parentheses, rather * than by the usual braces or double-quotes. Thus, we treat parentheses * much like braces in this lexer, to handle the '@comment(...)' case. And * there's an explicit check for the erroneous '@comment"..."' case in * start_string(), just to be complete. * * So that explains all the regexps in this lexer: the first one (starting * with newline) triggers the check for a runaway string. Then, we have a * pattern to convert any single whitespace char (apart from newline) to a * space; note that any whitespace chars that are matched in the * newline-regexp will be converted by check_runaway_string(), and won't be * matched by the whitespace regexp here. Then, we check for braces; * open_brace() and close_brace() take care of counting brace-depth and * determining if we have hit the end of the string. lparen_in_string() * and rparen_in_string() do the same for parentheses, to handle * '@comment(...)'. Then, if a double quote is seen, we call * quote_in_string(); this takes care of ending strings quoted by double * quotes. Finally, the "fall-through" regexp handles most strings (except * for stuff that comes after a newline). */ #token "\n~[\n\{\}\(\)\"\\]*" << check_runaway_string (); >> #token "[\r\t]" << zzreplchar (' '); zzmore (); >> #token "\{" << open_brace (); >> #token "\}" << close_brace (); >> #token "\(" << lparen_in_string (); >> #token "\)" << rparen_in_string (); >> #token STRING "\"" << quote_in_string (); >> #token "~[\n\{\}\(\)\"]+" << zzmore (); >> #lexclass START /* At last, the grammar! After that lexer, this is a snap. */ /* * `bibfile' is the rule to recognize an entire BibTeX file. Note that I * don't actually use this as the start rule myself; I have a function * bt_parse_entry() (in input.c), which takes care of setting up the lexer * and parser state in such a way that the parser can be entered multiple * times (at the `entry' rule) on the same input stream. Then, the user * calls bt_parse_entry() until end of file is reached, at which point it * cleans up its mess. The `bibfile' rule should work, but I never * actually use it, so it hasn't been tested in quite a while. */ bibfile! : << AST *last; #0 = NULL; >> ( entry << /* a little creative forestry... */ if (#0 == NULL) #0 = #1; else last->right = #1; last = #1; >> )* ; /* * `entry' is the rule that I actually use to enter the parser -- it parses * a single entry from the input stream (that is, the lexer scans past * junk until an '@' is seen at top-level, and that '@' becomes the AT * token which starts an entry). * * `entry_metatype()' returns the value of a global variable maintained by * lex_auxiliary.c that tells us how to parse the entry. This is needed * because, while the different things that look like BibTeX entries * (string definition, preamble, actual entry, etc.) have a similar lexical * makeup, the syntax is different. In `entry', we just use the entry * metatype to determine the nodetype field of the AST node for the entry; * below, in `body' and `contents', we'll actually use it (in the form of * semantic predicates) to select amongst the various syntax options. */ entry : << bt_metatype metatype; >> AT! NAME^ << metatype = entry_metatype(); #1->nodetype = BTAST_ENTRY; #1->metatype = metatype; >> body[metatype] ; /* * `body' is what comes after AT NAME: either a single string, delimited by * {} or () (where NAME == 'comment'), or the more usual case of the entry * contents, delimited by an entry 'opener' and 'closer' (either * parentheses or braces). */ body [bt_metatype metatype] : << metatype == BTE_COMMENT >>? STRING << #1->nodetype = BTAST_STRING; >> | ENTRY_OPEN! contents[metatype] ENTRY_CLOSE! ; /* * `contents' is where we select and accept the syntax for the guts of the * entry, based on the type of entry that we're parsing. We find this * out from the `nodetype' field of the top AST node for the entry, which * is passed in as `entry_type'. General entries (ie. any unrecognized * entry type) and `modify' entries have a name (the key), a comma, and * list of "field = value" assignments. Macro definitions ('@string') are * similar, but without the key-comma pair. Preambles have just a single * value, and aliases have a single "field = value" assignment. (Note that * '@modify' and '@alias' are BibTeX 1.0 additions -- I'll have to check * the compatibility of my syntax with BibTeX 1.0 when it is released.) * '@comment' entries are handled differently, by the `body' rule above. */ contents [bt_metatype metatype] : << metatype == BTE_REGULAR /* || metatype == BTE_MODIFY */ >>? ( NAME | NUMBER ) << #1->nodetype = BTAST_KEY; >> COMMA! fields | << metatype == BTE_MACRODEF >>? fields | << metatype == BTE_PREAMBLE >>? value // | << metatype == BTE_ALIAS >>? // field ; /* * `fields' is a comma-separated list of fields. Note that BibTeX has a * little wart in that it allows a single extra comma after the last field * only. This is easy enough to handle, we just have to do it in the * traditional BNFish way (loop by recursion) rather than use EBNF * trickery. */ fields : field { COMMA! fields } | /* epsilon */ ; /* `field' recognizes a single "field = value" assignment. */ field : NAME^ << #1->nodetype = BTAST_FIELD; check_field_name (#1); >> EQUALS! value << #if DEBUG > 1 printf ("field: fieldname = %p (%s)\n" " first val = %p (%s)\n", #1->text, #1->text, #2->text, #2->text); #endif >> ; /* `value' is a sequence of simple_values, joined by the '#' operator. */ value : simple_value ( HASH! simple_value )* ; /* `simple_value' is a single string, number, or macro invocation. */ simple_value : STRING << #1->nodetype = BTAST_STRING; >> | NUMBER << #1->nodetype = BTAST_NUMBER; >> | NAME << #1->nodetype = BTAST_MACRO; >> ; biber-2.19/etc/btparse.notes000066400000000000000000000002551440117422400160160ustar00rootroot00000000000000To regenerate grammar using old PCCTS, get version 1.33 from here: http://www.polhode.com/pccts133mr.zip and compile by adding this to makefile: COPT=-DPCCTS_USE_STDARG biber-2.19/etc/definitions.bib000066400000000000000000001674161440117422400163120ustar00rootroot00000000000000% ABBREVIATIONS % % OF JOURNAL-NAMES % @string{acmcs = "ACM Computing Surveys"} @string{acmtalg = "ACM Transactions on Algorithms"} @string{acmjea = "ACM Journal of Experimental Algorithms"} @string{actacybernetica = "Acta Cybernetica"} @string{adm = "Annals of Discrete Mathematics"} @string{ai = "Acta Informatica"} @string{alg = "Algorithmica"} @string{amm = "American Mathematical Monthly"} @string{amsuh = "Abh. Math. Sem. Univ. Hamburg"} @string{aor = "Annals of Operations Research"} @string{apal = "Annals of Pure and Applied Logic"} @string{arscomb = "Ars Combinatoria"} @string{artint = "Artificial Intelligence"} @string{beatcs = "Bulletin of the EATCS"} @string{bit = "BIT"} @string{cacm = "Communications of the ACM"} @string{canjm = "Canadian Journal of Mathematics"} @string{cg = "Computational Geometry"} @string{cm = "Contemporary Mathematics"} @string{cn = "Congressus Numerantium"} @string{cnet = "Computer Networks"} @string{comb = "Combinatorica"} @string{combinatorica = "Combinatorica"} @string{comp = "Computing"} @string{cor = "Computers \& Operations Research"} @string{cpc = "Combinatorics, Probability, and Computing"} @string{dm = "Discrete Mathematics"} @string{dam = "Discrete Applied Mathematics"} @string{dcg = "Discrete and Computational Geometry"} @string{dmtcs = "Discrete Mathematics and Theoretical Computer Science"} @string{do = "Discrete Optimization"} @string{endm = "Electronic Notes in Discrete Mathematics"} @string{elemmath = "Elem. Math."} @string{ejc = "Electronic Journal of Combinatorics"} @string{ejcom = "European Journal of Combinatorics"} @string{ejor = "European Journal of Operational Research"} @string{fundmath = "Fundamenta Mathematicae"} @string{gc = "Graphs and Combinatorics"} @string{ic = "Information and Control"} @string{ic2 = "Information and Computation"} @string{ietc = "IEEE Transations on Computers"} @string{ieeetc = "IEEE Transactions on Computers"} @string{ieeetcs = "IEEE Transactions on Circuits and Systems"} @string{ieeetct = "IEEE Transactions on Circuit Theory"} @string{ieeeted = "IEEE Transactions on Electronic Devices"} @string{ieeetse = "IEEE Transactions on Software Engineering"} @string{ijcis = "International Journal of Computer and System Sciences"} @string{ijcm = "International Journal of Computer Mathematics"} @string{ijfcs = "International Journal of Foundations of Computer Science"} @string{informsjc = "INFORMS Journal on Computing"} @string{ipl = "Information Processing Letters"} @string{ita = "Informatique Th\'{e}orique et Applications"} @string{ja = "Journal of Algorithms"} @string{jair = "Journal of Artificial Intelligence Research"} @string{jacm = "Journal of the ACM"} @string{jct = "Journal of Combinatorial Theory"} @string{jcta = "Journal of Combinatorial Theory, Series A"} @string{jctb = "Journal of Combinatorial Theory, Series B"} @string{jco = "Journal of Combinatorial Optimization"} @string{jcss = "Journal of Computer and System Sciences"} @string{jda = "Journal of Discrete Algorithms"} @string{jgaa = "Journal of Graph Algorithms and Applications"} @string{jgt = "Journal of Graph Theory"} @string{jip = "Journal of Information Processing"} @string{jise = "Journal of Information Science and Engineering"} @string{jmaa = "Journal of Mathematical Analysis and Applications"} @string{jpdc = "Journal of Parallel and Distributed Computing"} @string{jucs = "Journal of Universal Computer Science"} @string{math = "Mathematika"} @string{mor = "Mathematics of Operations Research"} @string{mp = "Mathematical Programming"} @string{mst = "Mathematical Systems Theory"} @string{netw = "Networks"} @string{networks = "Networks"} @string{nordicjc = "Nordic Journal of Computing"} @string{or = "Operations Research"} @string{orl = "Operations Research Letters"} @string{pms = "Probability and Mathematical Statistics"} @string{sam = "Studies in Applied Mathematics"} @string{siamjc = "SIAM Journal on Computing"} @string{siamjo = "SIAM Journal on Optimization"} @string{sjam = "SIAM Journal on Applied Mathematics"} @string{sjadm = "SIAM Journal on Algebraic and Discrete Methods"} @string{sjdm = "SIAM Journal on Discrete Mathematics"} @string{sjmaa = "SIAM Journal on Matrix Analysis and Applications"} @string{sjna = "SIAM Journal on Numerical Analysis"} @string{tcs = "Theoretical Computer Science"} @string{tocs = "Theory of Computing Systems"} @string{tcj = "The Computer Journal"} @string{vi= "Department of Computer Science, Utrecht University"} @string{tr= "Technical Report"} %Abbreviations of Conference names @string{aaai92 = "Proceedings of the 10th National Conference on Artificial Intelligence, AAAI'92"} @string{aaai93 = "Proceedings of the 11th National Conference on Artificial Intelligence, AAAI'93"} @string{aaai94 = "Proceedings of the 12th National Conference on Artificial Intelligence, AAAI'94"} @string{aaai95 = "Proceedings of the 13th National Conference on Artificial Intelligence, AAAI'95"} @string{aaai96 = "Proceedings of the 14th National Conference on Artificial Intelligence, AAAI'96"} @string{aaai97 = "Proceedings of the 15th National Conference on Artificial Intelligence, AAAI'97"} @string{aaai98 = "Proceedings of the 16th National Conference on Artificial Intelligence, AAAI'98"} @string{aaai07 = "Proceedings of the 25th National Conference on Artificial Intelligence, AAAI'07"} @string{acid05 = "Proceedings of the 1st Workshop on Algorithms and Complexity in Durham, ACiD 2005"} @string{alenex99 = "Proceedings of the 1st International Workshop on Algorithm Engineering and Experimentation, ALENEX'99"} @string{alenex00 = "Proceedings of the 2nd International Workshop on Algorithm Engineering and Experimentation, ALENEX 2000"} @string{alenex01 = "Proceedings of the 3rd International Workshop on Algorithm Engineering and Experimentation, ALENEX 2001"} @string{alenex02 = "Proceedings of the 4th International Workshop on Algorithm Engineering and Experimentation, ALENEX 2002"} @string{alenex03 = "Proceedings of the 5th Workshop on Algorithm Engineering and Experimentation, ALENEX 2003"} @string{alenex04 = "Proceedings of the 6th Workshop on Algorithm Engineering and Experimentation and the 1st Workshop on Analytic Algorithmics and Combinatorics, ALENEX/ANALCO 2004"} @string{alenex05 = "Proceedings of the 7th Workshop on Algorithm Engineering and Experimentation and the 2nd Workshop on Analytic Algorithmics and Combinatorics, ALENEX/ANALCO 2005"} @string{alenex06 = "Proceedings of the 8th International Workshop on Algorithm Engineering and Experimentation, ALENEX 2006"} @string{alenex07 = "Proceedings of the 9th Workshop on Algorithm Engineering and Experimentation, ALENEX 2007"} @string{alenex08 = "Proceedings of the 10th Workshop on Algorithm Engineering and Experimentation, ALENEX 2008"} @string{alenex09 = "Proceedings of the 11th Workshop on Algorithm Engineering and Experimentation, ALENEX 2009"} @string{ciac97 = "Proceedings of the 3rd Italian Conference on Algorithms and Complexity, CIAC'97"} @string{ciac00 = "Proceedings of the 4th Italian Conference on Algorithms and Complexity, CIAC 2000"} @string{ciac03 = "Proceedings of the 5th Italian Conference on Algorithms and Complexity, CIAC 2003"} @string{ciac06 = "Proceedings of the 6th Italian Conference on Algorithms and Complexity, CIAC 2006"} @string{ciac10 = "Proceedings of the 7th Italian Conference on Algorithms and Complexity, CIAC 2010"} @string{cocoon95 = "Proceedings of the 1st Annual International Conference on Computing and Combinatorics, COCOON'95"} @string{cocoon96 = "Proceedings of the 2nd Annual International Conference on Computing and Combinatorics, COCOON'96"} @string{cocoon97 = "Proceedings of the 3rd Annual International Conference on Computing and Combinatorics, COCOON'97"} @string{cocoon98 = "Proceedings of the 4th Annual International Conference on Computing and Combinatorics, COCOON'98"} @string{cocoon99 = "Proceedings of the 5th Annual International Conference on Computing and Combinatorics, COCOON'99"} @string{cocoon00 = "Proceedings of the 6th Annual International Conference on Computing and Combinatorics, COCOON 2000"} @string{cocoon01 = "Proceedings of the 7th Annual International Conference on Computing and Combinatorics, COCOON 2001"} @string{cocoon02 = "Proceedings of the 8th Annual International Conference on Computing and Combinatorics, COCOON 2002"} @string{cocoon03 = "Proceedings of the 9th Annual International Conference on Computing and Combinatorics, COCOON 2003"} @string{cocoon04 = "Proceedings of the 10th Annual International Conference on Computing and Combinatorics, COCOON 2004"} @string{cocoon05 = "Proceedings of the 11th Annual International Conference on Computing and Combinatorics, COCOON 2005"} @string{cocoon06 = "Proceedings of the 12th Annual International Conference on Computing and Combinatorics, COCOON 2006"} @string{cocoon07 = "Proceedings of the 13th Annual International Conference on Computing and Combinatorics, COCOON 2007"} @string{cocoon08 = "Proceedings of the 14th Annual International Conference on Computing and Combinatorics, COCOON 2008"} @string{cocoon09 = "Proceedings of the 15th Annual International Conference on Computing and Combinatorics, COCOON 2009"} @string{ecai2002 = "Proceedings of the 15th European Conference on Artificial Intelligence, ECAI 2002"} @string{ecai2003 = "Proceedings of the 16th European Conference on Artificial Intelligence, ECAI 2003"} @string{ecai2004 = "Proceedings of the 17th European Conference on Artificial Intelligence, ECAI 2004"} @string{ecai2005 = "Proceedings of the 18th European Conference on Artificial Intelligence, ECAI 2005"} @string{ecai2006 = "Proceedings of the 19th European Conference on Artificial Intelligence, ECAI 2006"} @string{ecai2007 = "Proceedings of the 20th European Conference on Artificial Intelligence, ECAI 2007"} @string{ecai2008 = "Proceedings of the 21st European Conference on Artificial Intelligence, ECAI 2008"} @string{ecai2009 = "Proceedings of the 22nd European Conference on Artificial Intelligence, ECAI 2009"} @string{esa93 = "Proceedings of the 1st Annual European Symposium on Algorithms, ESA'93"} @string{esa94 = "Proceedings of the 2nd Annual European Symposium on Algorithms, ESA'94"} @string{esa95 = "Proceedings of the 3rd Annual European Symposium on Algorithms, ESA'95"} @string{esa96 = "Proceedings of the 4th Annual European Symposium on Algorithms, ESA'96"} @string{esa97 = "Proceedings of the 5th Annual European Symposium on Algorithms, ESA'97"} @string{esa98 = "Proceedings of the 6th Annual European Symposium on Algorithms, ESA'98"} @string{esa99 = "Proceedings of the 7th Annual European Symposium on Algorithms, ESA'99"} @string{esa00 = "Proceedings of the 8th Annual European Symposium on Algorithms, ESA 2000"} @string{esa01 = "Proceedings of the 9th Annual European Symposium on Algorithms, ESA 2001"} @string{esa02 = "Proceedings of the 10th Annual European Symposium on Algorithms, ESA 2002"} @string{esa03 = "Proceedings of the 11th Annual European Symposium on Algorithms, ESA 2003"} @string{esa04 = "Proceedings of the 12th Annual European Symposium on Algorithms, ESA 2004"} @string{esa05 = "Proceedings of the 13th Annual European Symposium on Algorithms, ESA 2005"} @string{esa06 = "Proceedings of the 14th Annual European Symposium on Algorithms, ESA 2006"} @string{esa07 = "Proceedings of the 15th Annual European Symposium on Algorithms, ESA 2007"} @string{esa08 = "Proceedings of the 16th Annual European Symposium on Algorithms, ESA 2008"} @string{esa09 = "Proceedings of the 17th Annual European Symposium on Algorithms, ESA 2009"} @string{fct85 = "Proceedings of the 5th International Conference on Fundamentals of Computation Theory, FCT'85"} @string{fct87 = "Proceedings of the 6th International Conference on Fundamentals of Computation Theory, FCT'87"} @string{fct89 = "Proceedings of the 7th International Conference on Fundamentals of Computation Theory, FCT'89"} @string{fct91 = "Proceedings of the 8th International Symposium on Fundamentals of Computation Theory, FCT'91"} @string{fct93 = "Proceedings of the 9th International Symposium on Fundamentals of Computation Theory, FCT'93"} @string{fct95 = "Proceedings of the 10th International Symposium on Fundamentals of Computation Theory, FCT'95"} @string{fct97 = "Proceedings of the 11th International Symposium on Fundamentals of Computation Theory, FCT'97"} @string{fct99 = "Proceedings of the 12th International Symposium on Fundamentals of Computation Theory, FCT'99"} @string{fct01 = "Proceedings of the 13th International Symposium on Fundamentals of Computation Theory, FCT 2001"} @string{fct03 = "Proceedings of the 14th International Symposium on Fundamentals of Computation Theory, FCT 2003"} @string{fct05 = "Proceedings of the 15th International Symposium on Fundamentals of Computation Theory, FCT 2005"} @string{fct07 = "Proceedings of the 16th International Symposium on Fundamentals of Computation Theory, FCT 2007"} @string{fct09 = "Proceedings of the 17th International Symposium on Fundamentals of Computation Theory, FCT 2009"} @string{focs75 = "Proceedings of the 16th Annual Symposium on Foundations of Computer Science, FOCS'75"} @string{focs76 = "Proceedings of the 17th Annual Symposium on Foundations of Computer Science, FOCS'76"} @string{focs77 = "Proceedings of the 18th Annual Symposium on Foundations of Computer Science, FOCS'77"} @string{focs78 = "Proceedings of the 19th Annual Symposium on Foundations of Computer Science, FOCS'78"} @string{focs79 = "Proceedings of the 20th Annual Symposium on Foundations of Computer Science, FOCS'79"} @string{focs80 = "Proceedings of the 21st Annual Symposium on Foundations of Computer Science, FOCS'80"} @string{focs81 = "Proceedings of the 22nd Annual Symposium on Foundations of Computer Science, FOCS'81"} @string{focs82 = "Proceedings of the 23rd Annual Symposium on Foundations of Computer Science, FOCS'82"} @string{focs83 = "Proceedings of the 24th Annual Symposium on Foundations of Computer Science, FOCS'83"} @string{focs84 = "Proceedings of the 25th Annual Symposium on Foundations of Computer Science, FOCS'84"} @string{focs85 = "Proceedings of the 26th Annual Symposium on Foundations of Computer Science, FOCS'85"} @string{focs86 = "Proceedings of the 27th Annual Symposium on Foundations of Computer Science, FOCS'86"} @string{focs87 = "Proceedings of the 28th Annual Symposium on Foundations of Computer Science, FOCS'87"} @string{focs88 = "Proceedings of the 29th Annual Symposium on Foundations of Computer Science, FOCS'88"} @string{focs89 = "Proceedings of the 30th Annual Symposium on Foundations of Computer Science, FOCS'89"} @string{focs90 = "Proceedings of the 31st Annual Symposium on Foundations of Computer Science, FOCS'90"} @string{focs91 = "Proceedings of the 32nd Annual Symposium on Foundations of Computer Science, FOCS'91"} @string{focs92 = "Proceedings of the 33rd Annual Symposium on Foundations of Computer Science, FOCS'92"} @string{focs93 = "Proceedings of the 34th Annual Symposium on Foundations of Computer Science, FOCS'93"} @string{focs94 = "Proceedings of the 35th Annual Symposium on Foundations of Computer Science, FOCS'94"} @string{focs95 = "Proceedings of the 36th Annual Symposium on Foundations of Computer Science, FOCS'95"} @string{focs96 = "Proceedings of the 37th Annual Symposium on Foundations of Computer Science, FOCS'96"} @string{focs97 = "Proceedings of the 38th Annual Symposium on Foundations of Computer Science, FOCS'97"} @string{focs98 = "Proceedings of the 39th Annual Symposium on Foundations of Computer Science, FOCS'98"} @string{focs99 = "Proceedings of the 40th Annual Symposium on Foundations of Computer Science, FOCS'99"} @string{focs00 = "Proceedings of the 41st Annual Symposium on Foundations of Computer Science, FOCS 2000"} @string{focs01 = "Proceedings of the 42nd Annual Symposium on Foundations of Computer Science, FOCS 2001"} @string{focs02 = "Proceedings of the 43rd Annual Symposium on Foundations of Computer Science, FOCS 2002"} @string{focs03 = "Proceedings of the 44th Annual Symposium on Foundations of Computer Science, FOCS 2003"} @string{focs04 = "Proceedings of the 45th Annual Symposium on Foundations of Computer Science, FOCS 2004"} @string{focs05 = "Proceedings of the 46th Annual Symposium on Foundations of Computer Science, FOCS 2005"} @string{focs06 = "Proceedings of the 47th Annual Symposium on Foundations of Computer Science, FOCS 2006"} @string{focs07 = "Proceedings of the 48th Annual Symposium on Foundations of Computer Science, FOCS 2007"} @string{focs08 = "Proceedings of the 49th Annual Symposium on Foundations of Computer Science, FOCS 2008"} @string{focs09 = "Proceedings of the 50th Annual Symposium on Foundations of Computer Science, FOCS 2009"} @string{fsttcs01 = "Proceedings 21st International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2001"} @string{fsttcs02 = "Proceedings 22nd International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2002"} @string{fsttcs03 = "Proceedings 23rd International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2003"} @string{fsttcs04 = "Proceedings 24th International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2004"} @string{fsttcs05 = "Proceedings 25th International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2005"} @string{fsttcs06 = "Proceedings 26th International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2006"} @string{fsttcs07 = "Proceedings 27th International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2007"} @string{fsttcs08 = "Proceedings 28th International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2008"} @string{fsttcs09 = "Proceedings 29th International Comference on Foundations of Software Technology and Theoretical Computer Science, FSTTCS 2009"} @string{gd94 = "Proceedings of the 3rd International Symposium on Graph Drawing, GD'94"} @string{gd95 = "Proceedings of the 4th International Symposium on Graph Drawing, GD'95"} @string{gd96 = "Proceedings of the 5th International Symposium on Graph Drawing, GD'96"} @string{gd97 = "Proceedings of the 6th International Symposium on Graph Drawing, GD'97"} @string{gd98 = "Proceedings of the 7th International Symposium on Graph Drawing, GD'98"} @string{gd99 = "Proceedings of the 8th International Symposium on Graph Drawing, GD'99"} @string{gd00 = "Proceedings of the 9th International Symposium on Graph Drawing, GD 2000"} @string{gd01 = "Proceedings of the 10th International Symposium on Graph Drawing, GD 2001"} @string{gd02 = "Proceedings of the 11th International Symposium on Graph Drawing, GD 2002"} @string{gd03 = "Proceedings of the 12th International Symposium on Graph Drawing, GD 2003"} @string{gd04 = "Proceedings of the 13th International Symposium on Graph Drawing, GD 2004"} @string{gd05 = "Proceedings of the 14th International Symposium on Graph Drawing, GD 2005"} @string{gd06 = "Proceedings of the 15th International Symposium on Graph Drawing, GD 2006"} @string{gd07 = "Proceedings of the 16th International Symposium on Graph Drawing, GD 2007"} @string{gd08 = "Proceedings of the 17th International Symposium on Graph Drawing, GD 2008"} @string{gd09 = "Proceedings of the 18th International Symposium on Graph Drawing, GD 2009"} @string{gragra86 = "Proceedings of the 3rd International Workshop on Graph-Grammars and Their Application to Computer Science"} @string{gragra90 = "Proceedings of the 4th International Workshop on Graph-Grammars and Their Application to Computer Science"} @string{icalp74 = "Proceedings of the 1st International Colloquium on Automata, Languages and Programming, ICALP'74"} @string{icalp75 = "Proceedings of the 2nd International Colloquium on Automata, Languages and Programming, ICALP'75"} @string{icalp76 = "Proceedings of the 3rd International Colloquium on Automata, Languages and Programming, ICALP'76"} @string{icalp77 = "Proceedings of the 4th International Colloquium on Automata, Languages and Programming, ICALP'77"} @string{icalp78 = "Proceedings of the 5th International Colloquium on Automata, Languages and Programming, ICALP'78"} @string{icalp79 = "Proceedings of the 6th International Colloquium on Automata, Languages and Programming, ICALP'79"} @string{icalp80 = "Proceedings of the 7th International Colloquium on Automata, Languages and Programming, ICALP'80"} @string{icalp81 = "Proceedings of the 8th International Colloquium on Automata, Languages and Programming, ICALP'82"} @string{icalp82 = "Proceedings of the 9th International Colloquium on Automata, Languages and Programming, ICALP'83"} @string{icalp83 = "Proceedings of the 10th International Colloquium on Automata, Languages and Programming, ICALP'81"} @string{icalp84 = "Proceedings of the 11th International Colloquium on Automata, Languages and Programming, ICALP'84"} @string{icalp85 = "Proceedings of the 12th International Colloquium on Automata, Languages and Programming, ICALP'85"} @string{icalp86 = "Proceedings of the 13th International Colloquium on Automata, Languages and Programming, ICALP'86"} @string{icalp87 = "Proceedings of the 14th International Colloquium on Automata, Languages and Programming, ICALP'87"} @string{icalp88 = "Proceedings of the 15th International Colloquium on Automata, Languages and Programming, ICALP'88"} @string{icalp89 = "Proceedings of the 16th International Colloquium on Automata, Languages and Programming, ICALP'89"} @string{icalp90 = "Proceedings of the 17th International Colloquium on Automata, Languages and Programming, ICALP'90"} @string{icalp91 = "Proceedings of the 18th International Colloquium on Automata, Languages and Programming, ICALP'91"} @string{icalp92 = "Proceedings of the 19th International Colloquium on Automata, Languages and Programming, ICALP'92"} @string{icalp93 = "Proceedings of the 20th International Colloquium on Automata, Languages and Programming, ICALP'93"} @string{icalp94 = "Proceedings of the 21st International Colloquium on Automata, Languages and Programming, ICALP'94"} @string{icalp95 = "Proceedings of the 22nd International Colloquium on Automata, Languages and Programming, ICALP'95"} @string{icalp96 = "Proceedings of the 23rd International Colloquium on Automata, Languages and Programming, ICALP'96"} @string{icalp97 = "Proceedings of the 24th International Colloquium on Automata, Languages and Programming, ICALP'97"} @string{icalp98 = "Proceedings of the 25th International Colloquium on Automata, Languages and Programming, ICALP'98"} @string{icalp99 = "Proceedings of the 26th International Colloquium on Automata, Languages and Programming, ICALP'99"} @string{icalp00 = "Proceedings of the 27th International Colloquium on Automata, Languages and Programming, ICALP 2000"} @string{icalp01 = "Proceedings of the 28th International Colloquium on Automata, Languages and Programming, ICALP 2001"} @string{icalp02 = "Proceedings of the 29th International Colloquium on Automata, Languages and Programming, ICALP 2002"} @string{icalp03 = "Proceedings of the 30th International Colloquium on Automata, Languages and Programming, ICALP 2003"} @string{icalp04 = "Proceedings of the 31st International Colloquium on Automata, Languages and Programming, ICALP 2004"} @string{icalp05 = "Proceedings of the 32nd International Colloquium on Automata, Languages and Programming, ICALP 2005"} @string{icalp06 = "Proceedings of the 33rd International Colloquium on Automata, Languages and Programming, ICALP 2006"} @string{icalp07 = "Proceedings of the 34th International Colloquium on Automata, Languages and Programming, ICALP 2007"} @string{icalp08-1 = "Proceedings of the 35th International Colloquium on Automata, Languages and Programming, ICALP 2008, Part I"} @string{icalp09-1 = "Proceedings of the 36th International Colloquium on Automata, Languages and Programming, ICALP 2009, Part I"} @string{isaac92 = "Proceedings of the 3rd International Symposium on Algorithms and Computation, ISAAC'92"} @string{isaac93 = "Proceedings of the 4th International Symposium on Algorithms and Computation, ISAAC'93"} @string{isaac94 = "Proceedings of the 5th International Symposium on Algorithms and Computation, ISAAC'94"} @string{isaac95 = "Proceedings of the 6th International Symposium on Algorithms and Computation, ISAAC'95"} @string{isaac96 = "Proceedings of the 7th International Symposium on Algorithms and Computation, ISAAC'96"} @string{isaac97 = "Proceedings of the 8th International Symposium on Algorithms and Computation, ISAAC'97"} @string{isaac98 = "Proceedings of the 9th International Symposium on Algorithms and Computation, ISAAC'98"} @string{isaac99 = "Proceedings of the 10th International Symposium on Algorithms and Computation, ISAAC'99"} @string{isaac00 = "Proceedings of the 11th International Symposium on Algorithms and Computation, ISAAC 2000"} @string{isaac01 = "Proceedings of the 12th International Symposium on Algorithms and Computation, ISAAC 2001"} @string{isaac02 = "Proceedings of the 13th International Symposium on Algorithms and Computation, ISAAC 2002"} @string{isaac03 = "Proceedings of the 14th International Symposium on Algorithms and Computation, ISAAC 2003"} @string{isaac04 = "Proceedings of the 15th International Symposium on Algorithms and Computation, ISAAC 2004"} @string{isaac05 = "Proceedings of the 16th International Symposium on Algorithms and Computation, ISAAC 2005"} @string{isaac06 = "Proceedings of the 17th International Symposium on Algorithms and Computation, ISAAC 2006"} @string{isaac07 = "Proceedings of the 18th International Symposium on Algorithms and Computation, ISAAC 2007"} @string{isaac08 = "Proceedings of the 19th International Symposium on Algorithms and Computation, ISAAC 2008"} @string{isaac09 = "Proceedings of the 20th International Symposium on Algorithms and Computation, ISAAC 2009"} @string{iwpec04 = "Proceedings of the 1st International Workshop on Parameterized and Exact Computation, IWPEC 2004"} @string{iwpec06 = "Proceedings of the 2nd International Workshop on Parameterized and Exact Computation, IWPEC 2006"} @string{iwpec08 = "Proceedings of the 3rd International Workshop on Parameterized and Exact Computation, IWPEC 2008"} @string{iwpec09 = "Proceedings of the 4th International Workshop on Parameterized and Exact Computation, IWPEC 2009"} @string{latin92 = "Proceedings of the 1st Latin American Symposium on Theoretical Informatics, LATIN'92"} @string{latin95 = "Proceedings of the 2nd Latin American Symposium on Theoretical Informatics, LATIN'95"} @string{latin98 = "Proceedings of the 3rd Latin American Symposium on Theoretical Informatics, LATIN'98"} @string{latin00 = "Proceedings of the 4th Latin American Symposium on Theoretical Informatics, LATIN 2000"} @string{latin02 = "Proceedings of the 5th Latin American Symposium on Theoretical Informatics, LATIN 2002"} @string{latin04 = "Proceedings of the 6th Latin American Symposium on Theoretical Informatics, LATIN 2004"} @string{latin06 = "Proceedings of the 7th Latin American Symposium on Theoretical Informatics, LATIN 2006"} @string{latin08 = "Proceedings of the 8th Latin American Symposium on Theoretical Informatics, LATIN 2008"} @string{mfcs90 = "Proceedings of the 15th International Symposium on Mathematical Foundations of Computer Science, MFCS'90"} @string{mfcs91 = "Proceedings of the 16th International Symposium on Mathematical Foundations of Computer Science, MFCS'91"} @string{mfcs92 = "Proceedings of the 17th International Symposium on Mathematical Foundations of Computer Science, MFCS'92"} @string{mfcs93 = "Proceedings of the 18th International Symposium on Mathematical Foundations of Computer Science, MFCS'93"} @string{mfcs94 = "Proceedings of the 19th International Symposium on Mathematical Foundations of Computer Science, MFCS'94"} @string{mfcs95 = "Proceedings of the 20th International Symposium on Mathematical Foundations of Computer Science, MFCS'95"} @string{mfcs96 = "Proceedings of the 21st International Symposium on Mathematical Foundations of Computer Science, MFCS'96"} @string{mfcs97 = "Proceedings of the 22nd International Symposium on Mathematical Foundations of Computer Science, MFCS'97"} @string{mfcs98 = "Proceedings of the 23rd International Symposium on Mathematical Foundations of Computer Science, MFCS'98"} @string{mfcs99 = "Proceedings of the 24th International Symposium on Mathematical Foundations of Computer Science, MFCS'99"} @string{mfcs00 = "Proceedings of the 25th International Symposium on Mathematical Foundations of Computer Science, MFCS 2000"} @string{mfcs01 = "Proceedings of the 26th International Symposium on Mathematical Foundations of Computer Science, MFCS 2001"} @string{mfcs02 = "Proceedings of the 27th International Symposium on Mathematical Foundations of Computer Science, MFCS 2002"} @string{mfcs03 = "Proceedings of the 28th International Symposium on Mathematical Foundations of Computer Science, MFCS 2003"} @string{mfcs04 = "Proceedings of the 29th International Symposium on Mathematical Foundations of Computer Science, MFCS 2004"} @string{mfcs05 = "Proceedings of the 30th International Symposium on Mathematical Foundations of Computer Science, MFCS 2005"} @string{mfcs06 = "Proceedings of the 31st International Symposium on Mathematical Foundations of Computer Science, MFCS 2006"} @string{mfcs07 = "Proceedings of the 32nd International Symposium on Mathematical Foundations of Computer Science, MFCS 2007"} @string{mfcs08 = "Proceedings of the 33rd International Symposium on Mathematical Foundations of Computer Science, MFCS 2008"} @string{mfcs09 = "Proceedings of the 34th International Symposium on Mathematical Foundations of Computer Science, MFCS 2009"} @string{soda90 = "Proceedings of the 1st Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'90"} @string{soda91 = "Proceedings of the 2nd Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'91"} @string{soda92 = "Proceedings of the 3rd Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'92"} @string{soda93 = "Proceedings of the 4th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'93"} @string{soda94 = "Proceedings of the 5th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'94"} @string{soda95 = "Proceedings of the 6th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'95"} @string{soda96 = "Proceedings of the 7th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'96"} @string{soda97 = "Proceedings of the 8th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'97"} @string{soda98 = "Proceedings of the 9th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'98"} @string{soda99 = "Proceedings of the 10th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA'99"} @string{soda00 = "Proceedings of the 11th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2000"} @string{soda01 = "Proceedings of the 12th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2001"} @string{soda02 = "Proceedings of the 13th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2002"} @string{soda03 = "Proceedings of the 14th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2003"} @string{soda04 = "Proceedings of the 15th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2004"} @string{soda05 = "Proceedings of the 16th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2005"} @string{soda06 = "Proceedings of the 16th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2006"} @string{soda07 = "Proceedings of the 17th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2007"} @string{soda08 = "Proceedings of the 18th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2008"} @string{soda09 = "Proceedings of the 19th Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2009"} @string{sofsem04 = "Proceedings of the 30th Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2000"} @string{sofsem05 = "Proceedings of the 31st Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2005"} @string{sofsem06 = "Proceedings of the 32nd Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2006"} @string{sofsem07 = "Proceedings of the 33rd Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2007"} @string{sofsem08 = "Proceedings of the 34th Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2008"} @string{sofsem09 = "Proceedings of the 35th Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2009"} @string{sofsem10 = "Proceedings of the 36th Conference on Current Trends in Theory and Practive of Computer Science, SOFSEM 2010"} @string{stacs84 = "Proceedings 1st International Symposium on Theoretical Aspects of Computer Science, STACS'84"} @string{stacs85 = "Proceedings 2nd International Symposium on Theoretical Aspects of Computer Science, STACS'85"} @string{stacs86 = "Proceedings 3rd International Symposium on Theoretical Aspects of Computer Science, STACS'86"} @string{stacs87 = "Proceedings 4th International Symposium on Theoretical Aspects of Computer Science, STACS'87"} @string{stacs88 = "Proceedings 5th International Symposium on Theoretical Aspects of Computer Science, STACS'88"} @string{stacs89 = "Proceedings 6th International Symposium on Theoretical Aspects of Computer Science, STACS'89"} @string{stacs90 = "Proceedings 7th International Symposium on Theoretical Aspects of Computer Science, STACS'90"} @string{stacs91 = "Proceedings 8th International Symposium on Theoretical Aspects of Computer Science, STACS'91"} @string{stacs92 = "Proceedings 9th International Symposium on Theoretical Aspects of Computer Science, STACS'92"} @string{stacs93 = "Proceedings 10th International Symposium on Theoretical Aspects of Computer Science, STACS'93"} @string{stacs94 = "Proceedings 11th International Symposium on Theoretical Aspects of Computer Science, STACS'94"} @string{stacs95 = "Proceedings 12th International Symposium on Theoretical Aspects of Computer Science, STACS'95"} @string{stacs96 = "Proceedings 13th International Symposium on Theoretical Aspects of Computer Science, STACS'96"} @string{stacs97 = "Proceedings 14th International Symposium on Theoretical Aspects of Computer Science, STACS'97"} @string{stacs98 = "Proceedings 15th International Symposium on Theoretical Aspects of Computer Science, STACS'98"} @string{stacs99 = "Proceedings 16th International Symposium on Theoretical Aspects of Computer Science, STACS'99"} @string{stacs00 = "Proceedings 17th International Symposium on Theoretical Aspects of Computer Science, STACS 2000"} @string{stacs01 = "Proceedings 18th International Symposium on Theoretical Aspects of Computer Science, STACS 2001"} @string{stacs02 = "Proceedings 19th International Symposium on Theoretical Aspects of Computer Science, STACS 2002"} @string{stacs03 = "Proceedings 20th International Symposium on Theoretical Aspects of Computer Science, STACS 2003"} @string{stacs04 = "Proceedings 21st International Symposium on Theoretical Aspects of Computer Science, STACS 2004"} @string{stacs05 = "Proceedings 22nd International Symposium on Theoretical Aspects of Computer Science, STACS 2005"} @string{stacs06 = "Proceedings 23rd International Symposium on Theoretical Aspects of Computer Science, STACS 2006"} @string{stacs07 = "Proceedings 24th International Symposium on Theoretical Aspects of Computer Science, STACS 2007"} @string{stacs08 = "Proceedings 25th International Symposium on Theoretical Aspects of Computer Science, STACS 2008"} @string{stacs09 = "Proceedings 26th International Symposium on Theoretical Aspects of Computer Science, STACS 2009"} @string{stoc71 = "Proceedings of the 3rd Annual Symposium on Theory of Computing, STOC'71"} @string{stoc72 = "Proceedings of the 4th Annual Symposium on Theory of Computing, STOC'72"} @string{stoc73 = "Proceedings of the 5th Annual Symposium on Theory of Computing, STOC'73"} @string{stoc74 = "Proceedings of the 6th Annual Symposium on Theory of Computing, STOC'74"} @string{stoc75 = "Proceedings of the 7th Annual Symposium on Theory of Computing, STOC'75"} @string{stoc76 = "Proceedings of the 8th Annual Symposium on Theory of Computing, STOC'76"} @string{stoc77 = "Proceedings of the 9th Annual Symposium on Theory of Computing, STOC'77"} @string{stoc78 = "Proceedings of the 10th Annual Symposium on Theory of Computing, STOC'78"} @string{stoc79 = "Proceedings of the 11th Annual Symposium on Theory of Computing, STOC'79"} @string{stoc80 = "Proceedings of the 12th Annual Symposium on Theory of Computing, STOC'80"} @string{stoc81 = "Proceedings of the 13th Annual Symposium on Theory of Computing, STOC'81"} @string{stoc82 = "Proceedings of the 14th Annual Symposium on Theory of Computing, STOC'82"} @string{stoc83 = "Proceedings of the 15th Annual Symposium on Theory of Computing, STOC'83"} @string{stoc84 = "Proceedings of the 16th Annual Symposium on Theory of Computing, STOC'84"} @string{stoc85 = "Proceedings of the 17th Annual Symposium on Theory of Computing, STOC'85"} @string{stoc86 = "Proceedings of the 18th Annual Symposium on Theory of Computing, STOC'86"} @string{stoc87 = "Proceedings of the 19th Annual Symposium on Theory of Computing, STOC'87"} @string{stoc88 = "Proceedings of the 20th Annual Symposium on Theory of Computing, STOC'88"} @string{stoc89 = "Proceedings of the 21st Annual Symposium on Theory of Computing, STOC'89"} @string{stoc90 = "Proceedings of the 22nd Annual Symposium on Theory of Computing, STOC'90"} @string{stoc91 = "Proceedings of the 23rd Annual Symposium on Theory of Computing, STOC'91"} @string{stoc92 = "Proceedings of the 24th Annual Symposium on Theory of Computing, STOC'92"} @string{stoc93 = "Proceedings of the 25th Annual Symposium on Theory of Computing, STOC'93"} @string{stoc94 = "Proceedings of the 26th Annual Symposium on Theory of Computing, STOC'94"} @string{stoc95 = "Proceedings of the 27th Annual Symposium on Theory of Computing, STOC'95"} @string{stoc96 = "Proceedings of the 28th Annual Symposium on Theory of Computing, STOC'96"} @string{stoc97 = "Proceedings of the 29th Annual Symposium on Theory of Computing, STOC'97"} @string{stoc98 = "Proceedings of the 30th Annual Symposium on Theory of Computing, STOC'98"} @string{stoc99 = "Proceedings of the 31st Annual Symposium on Theory of Computing, STOC'99"} @string{stoc00 = "Proceedings of the 32nd Annual Symposium on Theory of Computing, STOC 2000"} @string{stoc01 = "Proceedings of the 33rd Annual Symposium on Theory of Computing, STOC 2001"} @string{stoc02 = "Proceedings of the 34th Annual Symposium on Theory of Computing, STOC 2002"} @string{stoc03 = "Proceedings of the 35th Annual Symposium on Theory of Computing, STOC 2003"} @string{stoc04 = "Proceedings of the 36th Annual Symposium on Theory of Computing, STOC 2004"} @string{stoc05 = "Proceedings of the 37th Annual Symposium on Theory of Computing, STOC 2005"} @string{stoc06 = "Proceedings of the 38th Annual Symposium on Theory of Computing, STOC 2006"} @string{stoc07 = "Proceedings of the 39th Annual Symposium on Theory of Computing, STOC 2007"} @string{stoc08 = "Proceedings of the 40th Annual Symposium on Theory of Computing, STOC 2008"} @string{stoc09 = "Proceedings of the 41st Annual Symposium on Theory of Computing, STOC 2009"} @string{swat88 = "Proceedings of the 1st Scandinavian Workshop on Algorithm Theory, SWAT'88"} @string{swat90 = "Proceedings of the 2nd Scandinavian Workshop on Algorithm Theory, SWAT'90"} @string{swat92 = "Proceedings of the 3rd Scandinavian Workshop on Algorithm Theory, SWAT'92"} @string{swat94 = "Proceedings of the 4th Scandinavian Workshop on Algorithm Theory, SWAT'94"} @string{swat96 = "Proceedings of the 5th Scandinavian Workshop on Algorithm Theory, SWAT'96"} @string{swat98 = "Proceedings of the 6th Scandinavian Workshop on Algorithm Theory, SWAT'98"} @string{swat00 = "Proceedings of the 7th Scandinavian Workshop on Algorithm Theory, SWAT 2000"} @string{swat02 = "Proceedings of the 8th Scandinavian Workshop on Algorithm Theory, SWAT 2002"} @string{swat04 = "Proceedings of the 9th Scandinavian Workshop on Algorithm Theory, SWAT 2004"} @string{swat06 = "Proceedings of the 10th Scandinavian Workshop on Algorithm Theory, SWAT 2006"} @string{swat08 = "Proceedings of the 11th Scandinavian Workshop on Algorithm Theory, SWAT 2008"} @string{tamc08 = "Proceedings of the 5th Annual Conference on Theory and Applications of Models of Computation, TAMC 2008"} @string{tamc09 = "Proceedings of the 6th Annual Conference on Theory and Applications of Models of Computation, TAMC 2009"} @string{uai90 = "Proceedings of the 6th Annual Conference on Uncertainty in Artificial Intelligence, UAI'90"} @string{uai91 = "Proceedings of the 7th Annual Conference on Uncertainty in Artificial Intelligence, UAI'91"} @string{uai92 = "Proceedings of the 8th Annual Conference on Uncertainty in Artificial Intelligence, UAI'92"} @string{uai93 = "Proceedings of the 9th Annual Conference on Uncertainty in Artificial Intelligence, UAI'93"} @string{uai94 = "Proceedings of the 10th Annual Conference on Uncertainty in Artificial Intelligence, UAI'94"} @string{uai95 = "Proceedings of the 11th Annual Conference on Uncertainty in Artificial Intelligence, UAI'95"} @string{uai96 = "Proceedings of the 12th Annual Conference on Uncertainty in Artificial Intelligence, UAI'96"} @string{uai97 = "Proceedings of the 13th Annual Conference on Uncertainty in Artificial Intelligence, UAI'97"} @string{uai98 = "Proceedings of the 14th Annual Conference on Uncertainty in Artificial Intelligence, UAI'98"} @string{uai99 = "Proceedings of the 15th Annual Conference on Uncertainty in Artificial Intelligence, UAI'99"} @string{uai00 = "Proceedings of the 16th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2000"} @string{uai01 = "Proceedings of the 17th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2001"} @string{uai02 = "Proceedings of the 18th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2002"} @string{uai03 = "Proceedings of the 19th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2003"} @string{uai04 = "Proceedings of the 20th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2004"} @string{uai05 = "Proceedings of the 21st Annual Conference on Uncertainty in Artificial Intelligence, UAI 2005"} @string{uai06 = "Proceedings of the 22nd Annual Conference on Uncertainty in Artificial Intelligence, UAI 2006"} @string{uai07 = "Proceedings of the 23rd Annual Conference on Uncertainty in Artificial Intelligence, UAI 2007"} @string{uai08 = "Proceedings of the 24th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2008"} @string{uai09 = "Proceedings of the 25th Annual Conference on Uncertainty in Artificial Intelligence, UAI 2009"} @string{wads89 = "Proceedings of the 1st Workshop on Algorithms and Data Structures, WADS'89"} @string{wads91 = "Proceedings of the 2nd Workshop on Algorithms and Data Structures, WADS'91"} @string{wads93 = "Proceedings of the 3rd Workshop on Algorithms and Data Structures, WADS'93"} @string{wads95 = "Proceedings of the 4th International Workshop on Algorithms and Data Structures, WADS'95"} @string{wads97 = "Proceedings of the 5th International Workshop on Algorithms and Data Structures, WADS'97"} @string{wads99 = "Proceedings of the 6th International Workshop on Algorithms and Data Structures, WADS'99"} @string{wads01 = "Proceedings of the 7th International Workshop on Algorithms and Data Structures, WADS 2001"} @string{wads03 = "Proceedings of the 8th International Workshop on Algorithms and Data Structures, WADS 2003"} @string{wads05 = "Proceedings of the 9th International Workshop on Algorithms and Data Structures, WADS 2005"} @string{wads07 = "Proceedings of the 10th International Workshop on Algorithms and Data Structures, WADS 2007"} @string{wads09 = "Proceedings of the 11th International Symposium on Algorithms and Data Structures, WADS 2009"} @string{waoa03 = "Proceeings of the 1st International Workshop on Approximation and Online Algorithms, WAOA 2003"} @string{waoa04 = "Proceeings of the 2nd International Workshop on Approximation and Online Algorithms, WAOA 2004"} @string{waoa05 = "Proceeings of the 3rd International Workshop on Approximation and Online Algorithms, WAOA 2005"} @string{waoa06 = "Proceeings of the 4th International Workshop on Approximation and Online Algorithms, WAOA 2006"} @string{waoa07 = "Proceeings of the 5th International Workshop on Approximation and Online Algorithms, WAOA 2007"} @string{waoa08 = "Proceeings of the 6th International Workshop on Approximation and Online Algorithms, WAOA 2008"} @string{waoa09 = "Proceeings of the 7th International Workshop on Approximation and Online Algorithms, WAOA 2009"} @string{wea02 = "Proceedings of the 1st International Workshop on Experimental and Efficient Algorithms, WEA 2002"} @string{wea03 = "Proceedings of the 2nd International Workshop on Experimental and Efficient Algorithms, WEA 2003"} @string{wea04 = "Proceedings of the 3rd International Workshop on Experimental and Efficient Algorithms, WEA 2004"} @string{wea05 = "Proceedings of the 4th International Workshop on Experimental and Efficient Algorithms, WEA 2005"} @string{wea06 = "Proceedings of the 5th International Workshop on Experimental and Efficient Algorithms, WEA 2006"} @string{wea07 = "Proceedings of the 6th International Workshop on Experimental and Efficient Algorithms, WEA 2007"} @string{wea08 = "Proceedings of the 7th International Workshop on Experimental and Efficient Algorithms, WEA 2008"} @string{sea09 = "Proceedings of the 8th International Symposium on Experimental and Efficient Algorithms, SEA 2009"} @string{wg82 = "Proceedings of the 8th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'82"} @string{wg83 = "Proceedings of the 9th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'83"} @string{wg84 = "Proceedings of the 10th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'84"} @string{wg85 = "Proceedings of the 11th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'85"} @string{wg86 = "Proceedings of the 12th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'86"} @string{wg87 = "Proceedings of the 13th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'87"} @string{wg88 = "Proceedings of the 14th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'88"} @string{wg89 = "Proceedings of the 15th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'89"} @string{wg90 = "Proceedings of the 16th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'90"} @string{wg91 = "Proceedings of the 17th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'91"} @string{wg92 = "Proceedings of the 18th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'92"} @string{wg93 = "Proceedings of the 19th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'93"} @string{wg94 = "Proceedings of the 20th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'94"} @string{wg95 = "Proceedings of the 21st International Workshop on Graph-Theoretic Concepts in Computer Science, WG'95"} @string{wg96 = "Proceedings of the 22nd International Workshop on Graph-Theoretic Concepts in Computer Science, WG'96"} @string{wg97 = "Proceedings of the 23rd International Workshop on Graph-Theoretic Concepts in Computer Science, WG'97"} @string{wg98 = "Proceedings of the 24th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'98"} @string{wg99 = "Proceedings of the 25th International Workshop on Graph-Theoretic Concepts in Computer Science, WG'99"} @string{wg00 = "Proceedings of the 26th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2000"} @string{wg01 = "Proceedings of the 27th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2001"} @string{wg02 = "Proceedings of the 28th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2002"} @string{wg03 = "Proceedings of the 29th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2003"} @string{wg04 = "Proceedings of the 30th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2004"} @string{wg05 = "Proceedings of the 31st International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2005"} @string{wg06 = "Proceedings of the 32nd International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2006"} @string{wg07 = "Proceedings of the 33rd International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2007"} @string{wg08 = "Proceedings of the 34th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2008"} @string{wg09 = "Proceedings of the 35th International Workshop on Graph-Theoretic Concepts in Computer Science, WG 2009"} % Stings for the names of Springer LNCS proceedings @string{lncs52 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 52"} @string{lncs172 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 172"} @string{lncs182 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 182"} @string{lncs199 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 199"} @string{lncs210 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 210"} @string{lncs219 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 219"} @string{lncs246 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 246"} @string{lncs267 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 267"} @string{lncs291 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 291"} @string{lncs299 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 299"} @string{lncs317 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 317"} @string{lncs318 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 318"} @string{lncs319 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 319"} @string{lncs344 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 344"} @string{lncs382 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 382"} @string{lncs411 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 411"} @string{lncs452 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 452"} @string{lncs477 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 477"} @string{lncs484 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 484"} @string{lncs510 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 510"} @string{lncs532 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 532"} @string{lncs533 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 533"} @string{lncs583 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 583"} @string{lncs621 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 621"} @string{lncs623 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 623"} @string{lncs650 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 650"} @string{lncs657 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 657"} @string{lncs665 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 665"} @string{lncs700 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 700"} @string{lncs709 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 700"} @string{lncs726 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 726"} @string{lncs762 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 762"} @string{lncs787 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 787"} @string{lncs790 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 790"} @string{lncs824 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 824"} @string{lncs831 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 831"} @string{lncs842 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 842"} @string{lncs855 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 855"} @string{lncs894 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 894"} @string{lncs900 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 900"} @string{lncs903 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 903"} @string{lncs944 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 944"} @string{lncs945 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 945"} @string{lncs955 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 955"} @string{lncs979 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 979"} @string{lncs1017 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1017"} @string{lncs1018 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1018"} @string{lncs1028 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1028"} @string{lncs1046 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1046"} @string{lncs1075 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1075"} @string{lncs1090 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1090"} @string{lncs1136 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1136"} @string{lncs1178 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1178"} @string{lncs1197 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1197"} @string{lncs1203 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1203"} @string{lncs1256 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1256"} @string{lncs1295 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1295"} @string{lncs1335 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1335"} @string{lncs1373 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1373"} @string{lncs1461 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1461"} @string{lncs1517 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1517"} @string{lncs1563 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1563"} @string{lncs1665 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1665"} @string{lncs1770 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1770"} @string{lncs1776 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1776"} @string{lncs1851 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1851"} @string{lncs1893 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1893"} @string{lncs1969 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 1969"} @string{lncs2076 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2076"} @string{lncs2125 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2125"} @string{lncs2136 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2136"} @string{lncs2245 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2245"} @string{lncs2286 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2286"} @string{lncs2368 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2368"} @string{lncs2409 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2409"} @string{lncs2461 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2461"} @string{lncs2470 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2470"} @string{lncs2518 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2518"} @string{lncs2556 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2556"} @string{lncs2573 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2573"} @string{lncs2647 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2647"} @string{lncs2719 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2719"} @string{lncs2747 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2747"} @string{lncs2751 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2751"} @string{lncs2832 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2832"} @string{lncs2880 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2880"} @string{lncs2906 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2906"} @string{lncs2996 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 2996"} @string{lncs3153 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3153"} @string{lncs3142 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3142"} @string{lncs3162 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3162"} @string{lncs3221 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3221"} @string{lncs3353 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3353"} @string{lncs3381 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3381"} @string{lncs3404 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3404"} @string{lncs3503 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3503"} @string{lncs3580 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3580"} @string{lncs3595 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3595"} @string{lncs3608 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3608"} @string{lncs3618 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3618"} @string{lncs3624 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3624"} @string{lncs3669 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3669"} @string{lncs3787 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3787"} @string{lncs3732 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3732"} @string{lncs3709 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3709"} @string{lncs3827 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3827"} @string{lncs3831 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3831"} @string{lncs3843 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3843"} @string{lncs3879 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3879"} @string{lncs3887 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 3887"} @string{lncs4041 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4041"} @string{lncs4059 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4059"} @string{lncs4168 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4168"} @string{lncs4169 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4169"} @string{lncs4271 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4271"} @string{lncs4337 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4337"} @string{lncs4372 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4372"} @string{lncs4393 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4393"} @string{lncs4474 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4474"} @string{lncs4475 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4475"} @string{lncs4596 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4596"} @string{lncs4598 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4598"} @string{lncs4614 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4614"} @string{lncs4769 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4769"} @string{lncs4835 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4835"} @string{lncs4957 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4957"} @string{lncs4978 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 4978"} @string{lncs5018 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5018"} @string{lncs5038 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5038"} @string{lncs5125 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5125"} @string{lncs5162 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5162"} @string{lncs5344 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5344"} @string{lncs5369 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5369"} @string{lncs5404 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5404"} @string{lncs5532 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5532"} @string{lncs5555 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5555"} @string{lncs5734 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5734"} @string{lncs5757 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5757"} @string{lncs5901 = "Springer Verlag, Lecture Notes in Computer Science, vol.\ 5901"} biber-2.19/etc/papers.bib000066400000000000000000016711221440117422400152640ustar00rootroot00000000000000% % THE PAPERS % % % %A %Aa @article{AardalHLT02, author = {K. I. Aardal and C. A. J. Hurkens and J. K. Lenstra and S. R. Tiourine}, title = {Algorithms for radio link frequency assignment: The {CALMA} project}, journal = or, volume = 50, year = 2003, number = 6, pages = {968 - 980}} @article{AardalHKMS03, author = {K. Aardal and C. van Hoesel and A. Koster and C. Mannino and A. Sassano}, title = {Models and solution techniques for the frequency assignment problem}, journal = {4OR}, volume = 1, year = 2003, pages = {261-317}} %Ab %Abd @article{AbdelbarH98, author = {A.M. Abdelbar and S.M. Hedetniemi}, title = {Approximating {MAP}s for belief networks is {NP}-hard and other theorems}, journal = artint, volume = 102, year = 1998, pages = {21-38}} %Abr %Abrahamson89 @article{AbrahamsonDKP89, author = {Karl R. Abrahamson and N. Dadoun and D. G. Kirkpatrick and T. Przytycka}, title = {A simple parallel tree contraction algorithm}, journal = ja, volume = 10, year = 1989, pages = {287-302}} @inproceedings{AbrahamsonEFM89, author = {Karl R. Abrahamson and John A. Ellis and Michael R. Fellows and Manuel E. Mata}, title = {On the Complexity of Fixed-Parameter Problems}, booktitle = focs89, year = 1989, pages = {210-215}} @inproceedings{AbrahamsonFLM89, author = {Karl R. Abrahamson and Michael R. Fellows and Michael A. Langston and B. M. E. Moret}, title = {Constructive Complexity}, year = 1989, booktitle = {Proceedings of the Capital City Conference on Combinatorics and Theoretical Computer Science}} %Abrahamson90 @techreport{AbrahamsonEFM90, author = {Karl R. Abrahamson and John A. Ellis and Michael R. Fellows and Manuel E. Mata}, title = {Completeness for Families of Fixed Parameter Problems}, institution = {University of Victoria}, address = {Victoria, B.C., Canada}, number = {DCS-141-IR}, year = 1990, note = {Extended abstract in Proc. 30th ACM Foundations of Computer Science, 1989, p. 210-215}} %Abrahamson93 @inproceedings{AbrahamsonDF93, author = {Karl R. Abrahamson and Rodney G. Downey and Michael R. Fellows}, title = {Fixed-parameter intractability {II}}, editor = {Patrice Enjalbert and Alain Finkel and Klaus W. Wagner}, booktitle = stacs93, year = 1993, publisher = lncs665, pages = {374-385}} @inproceedings{AbrahamsonF93, author = {Karl R. Abrahamson and Michael R. Fellows}, title = {Finite Automata, Bounded Treewidth and Well-Quasiordering}, year = 1993, editor = {N. Robertson and P. Seymour}, booktitle = {Proceedings of the AMS Summer Workshop on Graph Minors, Graph Structure Theory, Contemporary Mathematics vol. 147}, publisher = {American Mathematical Society}, pages = {539-564}} %Abrahamson95 @article{AbrahamsonDF95, author = {Karl A. Abrahamson and Rodney G. Downey and Michael R. Fellows}, title = {Fixed-Parameter Tractability and Completeness {IV}: On Completeness for {$W[P]$} and {PSPACE} Analogues}, journal = apal, volume = 73, year = 1995, pages = {235-276}} @article{Abramson89, author = {Bruce Abramson}, title = {Control strategies for two-player games}, journal = acmcs, volume = 21, year = 1989, pages = {137-162}} %Abu @article{AbuKhzamL07, author = {Faisal N. Abu-Khzam and Michael A. Langston}, title = {Linear-time algorithms for problems on planar graphs with fixed disk dimension}, journal = ipl, volume = 101, year = 2007, pages = {36-40}} @inproceedings{AbuKhzamCFLSS04, author = {Faisal N. Abu-Khzam and R. L. Collins and Michael R. Fellows and Michael A. Langston and W. Henry Suters and C. T. Symons}, title = {Kernelization algorithms for the Vertex Cover problem: Theory and experiments}, booktitle = alenex04, pages = {62-69}, publisher = {ACM-SIAM}, year = 2004} @inproceedings{AbuKhzamLS05, author = {Faisal N. Abu-Khzam and Michael A. Langston and W. Henry Suters}, title = {Fast, effective vertex cover kernelization: a tal of two algorithms}, booktitle = {Proceedings of the IEEE International Conference on Computer Systems and Applications, AICCSA 2005}, year = 2005, pages = 16} @article{AbuKhzamFLS07, author = {Faisal N. Abu-Khzam and Michael R. Fellows and Michael A. Langston and W. Henry Suters}, title = {Crown structures for vertex cover kernelization}, journal = tocs, volume = 41, year = 2007, pages = {411-430}} %Ad %Ada @inproceedings{AdachiIK81, author = {A. Adachi and S. Iwata and T. Kasai}, title = {Low level complexity for combinatorial games}, booktitle = stoc81, year = 1981, pages = {228-237}, publisher = {Assoc. Comp. Mach.}, address = {New York}} @article{AdachiIK84, author = {A. Adachi and S. Iwata and T. Kasai}, title = {Some combinatorial game problems require {$\Omega (n^k) $} time}, journal = jacm, volume = 31, year = 1984, pages = {361-376}} @article{AdachiIK87, author = {A. Adachi and S. Iwata and T. Kasai}, title = {Shogi on $n \times n$ board is complete in exponential time ({I}n {J}apanese)}, journal = {Trans. IEICE}, volume = {J70-D}, year = 1987, pages = {1843-1852}} %Adh @article{AdharP90, author = {Gur Saran Adhar and Shietung Peng}, title = {Parallel algorithms for cographs and parity graphs with applications}, journal = ja, volume = 11, year = 1990, pages = {252-284}} %Adl @article{Adler04, author = {Isolde Adler}, title = {Marshals, monotone marshals, and hypertree-width}, journal = jgt, volume = 47, year = 2004, pages = {275-296}} @article{Adler07, author = {Isolde Adler}, title = {Directed tree-width examples}, journal = jctb, volume = 97, year = 2007, pages = {718-725}} %Ag %Aga @article{AgarwalKS98, author = {P. K. Agarwal and M. {van Kreveld} and S. Suri}, title = {Label placement by maximum independent set in rectangles}, journal = cg, volume = 11, year = 1998, pages = {209-218}} @inproceedings{AgarwalaF93, author = {Richa Agarwala and David Fern{\'a}ndez-Baca}, title = {A polynomial-time algorithm for the perfect phylogeny problem when the number of character states is fixed}, booktitle = focs93, year = 1993, pages = {140-147}} @inproceedings{AgarwalaFS92, author = {Richa Agarwala and David Fern{\'a}ndez-Baca and G. Slutzki}, title = {Fast algorithms for inferring evolutionary trees}, booktitle = {Proceedings of the 30th Alllerton Conference on Comm., Control, and Comput.}, year = 1992, pages = {594-603}} %Age @unpublished{Ageev99, author = {A. A. Ageev}, title = {Approximation schemes for the planar graph cases of feedback vertex set and uncapacitated facility location}, year = 1999, note = {Unpublished manuscript}} %Agg @article{AggarwalKLLW91, author = {A. Aggarwal and M. Klawe and D. Lichtenstein and N. Linial and A. Wigderson}, title = {A lower bound on the area of permutation layents}, journal = alg, volume = 6, year = 1991, pages = {241-255}} @article{AggarwalKS91, author = {A. Aggarwal and M. Klawe and P. Shor}, title = {Multilayer grid embeddings in {VLSI}}, journal = alg, volume = 6, year = 1991, pages = {129-151}} %Agr @incollection{AgrawalKR93, author = {Ajir Agrawal and Philip N. Klein and R. Ravi}, title = {Cutting down on fill using nested dissection: provably good elimination orderings}, booktitle = {Graph Theory and Sparse Matrix Computation}, editor = {A. George and J. Gilbert and J. W. H. Liu}, series = {IMA Volumes in Mathematics and its Applicatins}, publisher = {Springer-Verlag}, year = 1993, volume = 56, pages = {31-55}} %Ah %Aho @book{AhoHU74, author = {A. V. Aho and J. E. Hopcroft and J. D. Ullman}, title = {The Design and Analysis of Computer Algorithms}, year = 1974, publisher = {Addison-Wesley}} %Ahu @book{AhujaMO93, author = {R. K. Ahuja and T. L. Magnanti and J. B. Orlin}, title = {Network Flows: Theory, Algorithms, and Applications}, address = {Upper Saddle River, NJ, USA}, publisher = {Prentice Hall}, year = 1993} %Ai @article{AignerF84, author = {M. Aigner and M. Fromme}, title = {A game of cops and robbers}, journal = dam, volume = 8, year = 1984, pages = {1-12}} %Ak @article{AkiyamaNS80, author = {T. Akiyama and Takao Nishizeki and N. Saito}, title = {{NP}-completeness of the {H}amiltonian cycle problem for bipartite graphs}, journal = jip, volume = 3, year = 1980, pages = {73-76}} @article{AkiyamaEH83, author = {Jin Akiyama and Hiroski Era and Frank Harary}, title = {Regular graphs containing a given graph}, journal = elemmath, volume = 83, year = 1983, pages = {15-17}} %Al %Alb %Alber 2001 @article{AlberFN01, author = {Jochen Alber and Henning Fernau and Rolf Niedermeier}, title = {Parameterized complexity: {E}xponential speed-up for planar graph problems}, journal = {Electronic Colloquium on Computational Complexity (ECCC)}, year = 2001} @inproceedings{AlberFN01a, author = {Jochen Alber and Henning Fernau and Rolf Niedermeier}, title = {Parameterized complexity: exponential speed-up for planar graph problems}, editor = {Fernando Orejas and Paul G. Spirakis and Jan van Leeuwen}, booktitle = icalp01, publisher = lncs2076, year = 2001, pages = {261-272}} @article{AlberGN01, author = {Jochen Alber and J. Gramm and Rolf Niedermeier}, title = {Faster exact algorithms for hard problems: {A} parameterized point of view}, journal = dm, volume = 229, year = 2001, pages = {3-27}} %Alber 2002 @phdthesis{Alber02, author = {Jochen Alber}, title = {Exact Algorithms for {NP}-hard Problems on Networks: Design, Analysis, and Implementation}, year = 2002, school = {Universit\"at T\"ubingen}, address = {T\"ubingen, Germany}} @article{AlberBFKN02, author = {Jochen Alber and Hans L. Bodlaender and Henning Fernau and Ton Kloks and Rolf Niedermeier}, title = {Fixed parameter algorithms for dominating set and related problems on planar graphs}, journal = alg, volume = 33, year = 2002, pages = {461-493}} @inproceedings{AlberN02, author = {Jochen Alber and Rolf Niedermeier}, title = {Improved tree decomposition based algorithms for domination-like problems}, editor = {Sergio Rajsbaum}, booktitle = latin02, publisher = lncs2286, year = 2002, pages = {613-627}} %Alber 2003 @article{AlberFN03, author = {Jochen Alber and Henning Fernau and Rolf Niedermeier}, title = {Graph separators: A parameterized view}, journal = jcss, volume = 67, year = 2003, pages = {808-832}} %Alber 2004 @article{AlberDN04, author = {Jochen Alber and F. Dorn and Rolf Niedermeier}, title = {Experimental evaluation of a tree decomposition based algorithm for vertex cover on planar graphs}, journal = dam, volume = 145, pages = {210-219}, year = 2005} @article{AlberFN04, author = {Jochen Alber and Michael R. Fellows and Rolf Niedermeier}, title = {Polynomial-time data reduction for dominating sets}, journal = jacm, volume = 51, year = 2004, pages = {363-384}} @article{AlberFN04a, author = {Jochen Alber and Henning Fernau and Rolf Niedermeier}, title = {Parameterized complexity: Exponential speed-up for planar graph problems}, journal = ja, volume = 52, year = 2004, pages = {26-56}} %Alber 2005 @article{AlberFFFNRS05, author = {J. Alber and H. Fan and M. R. Fellows and H. Fernau and R. Niedermeier and F. A. Rosamond and U. Stege}, title = {A refined search tree technique for dominating set on planar graphs}, journal = jcss, volume = 71, year = 2005, pages = {385-405}} %Alber 2006 @article{AlberBN06, author = {J. Alber and N. Betzler and R. Niedermeier}, title = {Experiments in data reduction for optimal domination in networks}, journal = aor, volume = 146, year = 2006, pages = {105-117}} @inproceedings{AlberDN06, author = {Jochen Alber and Britta Dorn and Rolf Niedermeier}, title = {A general data reduction scheme for domination in graphs}, editor = {Jir\'{\i} Wiedermann and Gerard Tel and Jaroslav Pokorn{\'y} and M{\'a}ria Bielikov{\'a} and Julius Stuller}, booktitle = sofsem06, year = 2006, publisher = lncs3831, pages = {137-147}} %All @article{AllanL78, author = {R. B. Allan and R. C. Laskar}, title = {On domination and independent domination number of graphs}, journal = dm, volume = 23, year = 1978, pages = {73-76}} %Als @article{AlspachDHY08, author = {Brian Alspach and Danny Dyer and Denis Hanson and Boting Yang}, title = {Time constrained graph searching}, journal = tcs, volume = 399, year = 2008, pages = {158-168}} @article{AlstrupLT00, author = {S. Alstrup and P. W. Lauridsen and M. Thorup}, title = {Generalized dominators for structured programs}, journal = alg, volume = 27, pages = {244-253}, year = 2000} %Alt @inproceedings{AltBKRT07, author = {Helmut Alt and Hans L. Bodlaender and Marc van Kreveld and G\"{u}nther Rote and Gerard Tel}, title = {Wooden Geometric Puzzles: {D}esign and Hardness Proofs}, editor = {Pierluigi Crescenzi and Giuseppe Prencipe and Geppino Pucci}, booktitle = {Proceedings 4th International Conference on Fun with Algorithms, FUN 2007}, publisher = lncs4475, year = 2007, pages = {16 - 29}} %Alo %Alon 1986 @article{AlonBI86, author = {Noga Alon and L. Babai and A. Itai}, title = {A fast and simple randomized parallel algorithm for the maximal independent set problem}, journal = ja, volume = 7, year = 1986, pages = {567-583}} %Alon 1989 @techreport{AlonST89, author = {Noga Alon and Paul D. Seymour and Robin Thomas}, title = {A separator theorem for non-planar graphs}, year = 1989, institution = {DIMACS}, type = {Technical Report}, number = {89-18}, pages = {1-9}, month = {11}} %Alon 1990 @inproceedings{AlonST90, author = {Noga Alon and Paul D. Seymour and Robin Thomas}, title = {A separator theorem for graphs with an excluded minor and applications}, booktitle = stoc90, publisher = {ACM Press}, year = 1990, address = {New York}} @article{AlonST90a, author = {Noga Alon and Paul D. Seymour and Robin Thomas}, title = {A separator theorem for non-planar graphs}, journal = jacm, volume = 3, year = 1990, pages = {801-808}} %Alon 1994 @article{AlonST94, author = {Noga Alon and Paul D. Seymour and Robin Thomas}, title = {Planar separators}, journal = sjdm, volume = 7, year = 1994, pages = {184-193}} %Alon 2002 @article{AlonHL02, author = {N. Alon and S. Hoory and N. Linial}, title = {The {M}oore bound for irregular graphs}, journal = gc, volume = 18, year = 2002, pages = {53-57}} %Alon 2009 @article{AlonG09, author = {Noga Alon and Shai Gutner}, title = {Linear time algorithms for finding a dominating set of fixed size in degenerate graphs}, journal = alg, volume = 54, year = 2009, pages = {544-556}} @article{AlonS09, author = {Noga Alon and Uri Stav}, title = {Hardness of edge-modification problems}, journal = tcs, volume = 410, year = 2009, pages = {4920-4927}} %Am %Ame @article{AmestoyDD96, author = {Patrick R. Amestoy and Timothy A. Davis and Iain S. Duff}, title = {An Approximate Minimum Degree Ordering Algorithm}, journal = sjmaa, volume = 17, year = 1996, pages = {886-905}} %Ami @inproceedings{Amir01, author = {E. Amir}, title = {Efficient approximation for triangulation of minimum treewidth}, editor = {Jack S. Breese and Daphne Koller}, booktitle = uai01, pages = {7-15}, year = 2001, publisher = {Morgan Kaufmann}} @article{Amir10, author = {E. Amir}, title = {Approximation algorithms for treewidth}, journal = alg, volume = 56, year = 2010, pages = {448-479}} %An %And @article{Andrea84, author = {T. Andrea}, title = {Note on a pursuit game played on graphs}, year = 1984, journal = dam, volume = 9, pages = {111-115}} @article{Andrea86, author = {T. Andrea}, title = {On a pursuit game played on graphs for which a minor is excluded}, year = 1986, journal = jctb, volume = 41, pages = {37-47}} @article{Andres06, author = {Stephan Dominique Andres}, title = {The game chromatic index of forests of maximum degree}, journal = dam, volume = 154, year = 2006, pages = {1317-1323}} @article{Andrzejak98, author = {A. Andrzejak}, title = {An algorithm for the {T}utte polynomials of graphs of bounded treewidth}, journal = dm, volume = 190, year = 1998, pages = {39-54}} %Ans @article{Anstee85, author = {R. P. Anstee}, title = {An algorithmic proof of {T}utte's $f$-factor theorem}, journal = ja, volume = 6, year = 1985, pages = {112-131}} %Ap %Apo @article{ApostolicoH87, author = {Alberto Apostolico and Susanne E. Hambrusch}, title = {Finding maximum cliques on circular-arc graphs}, journal = ipl, volume = 26, year = 1987, pages = {209-215}} %App @article{AppelH77, author = {K. Appel and W. Haken}, title = {Every planar map is 4-colorable}, journal = {Illinois Journal of Mathematics}, volume = 21, year = 1977, pages = {429-567}} @inproceedings{AppelgateBCC98, author = {D. Appelgate and B. Bixby and V. CHv{\'{a}}tal and W. Cook}, title = {On the solution of travelling salesman problems}, booktitle = {Proceedings of the International Congress of Mathematicians}, volume = {III}, address = {Berlin}, year = 1998, pages = {645-656}} %Ar %Ara @article{Araki09, author = {Toru Araki}, title = {Labeling bipartite permutation graphs with a condition at distance two}, journal = dam, volume = 157, year = 2009, pages = {1677-1686}} %Arc @article{Archdeacon83, author = {D. Archdeacon}, title = {A {K}uratowski theorem for the projective plane}, journal = jgt, volume = 7, year = 1983, pages = {325-334}} @unpublished{ArchdeaconFL88, author = {D. Archdeacon and Michael R. Fellows and Michael A. Langston}, title = {Fixed Genus Embedding in {$O(n^4)$} Time}, note = {In preparation}, year = 1988 } %Ari @article{ArikatiCZ98, author = {Srinivasa R. Arikati and Shiva Chaudhuri and Christos D. Zaroliagis}, title = {All-pairs min-cut in sparse networks}, journal = ja, volume = 29, year = 1998, pages = {82-110}} %Arn %Arnborg 1978 @article{Arnborg78, author = {Stefan Arnborg}, title = {Reduced State Enumeration --- Another Algorithm for Reliability Evaluation}, journal = {IEEE Transactions on Reliability}, volume = {R-27}, year = 1978, pages = {101-105}} %Arnborg 1985 @article{Arnborg85, author = {Stefan Arnborg}, title = {Efficient algorithms for combinatorial problems on graphs with bounded decomposability -- {A} Survey}, journal = bit, volume = 25, year = 1985, pages = {2-23}} @article{ArnborgP85, author = {Stefan Arnborg and Andrzej Proskurowski}, title = {Recognition of partial $k$-trees}, journal = cn, volume = 47, year = 1985, pages = {69-75}} %Arnborg 1986 @article{ArnborgP86, author = {Stefan Arnborg and Andrzej Proskurowski}, title = {Characterization and recognition of partial 3-trees}, journal = sjadm, volume = 7, year = 1986, pages = {305-314}} %Arnborg 1987 @article{ArnborgCP87, author = {Stefan Arnborg and Derek G. Corneil and Andrzej Proskurowski}, title = {Complexity of finding embeddings in a $k$-tree}, journal = sjadm, volume = 8, year = 1987, pages = {277-284}} %Arnborg 1989 @article{ArnborgP89, author = {Stefan Arnborg and Andrzej Proskurowski}, title = {Linear time algorithms for {NP}-hard problems restricted to partial $k$-trees}, journal = dam, volume = 23, year = 1989, pages = {11-24}} %Arnborg 1990 @article{ArnborgPC90, author = {Stefan Arnborg and Andrzej Proskurowski and Derek G. Corneil}, title = {Forbidden minors characterization of partial 3-trees}, journal = dm, volume = 80, year = 1990, pages = {1-19}} @inproceedings{ArnborgPS90, author = {S. Arnborg and A. Proskurowski and D. Seese}, title = {Monadic second order logic, tree automata and forbidden minors}, editor = {E. B\"{o}rger and H. {Kleine B\"{u}ning} and M. M. Richter and W. Sch\"{o}nfeld}, booktitle = {Proceedings 4th Workshop on Computer Science Logic, CSL'90}, publisher = lncs533, year = 1991, pages = {1-16}} %Arnborg 1991 @unpublished{Arnborg91a, author = {Stefan Arnborg}, title = {Some {PSPACE}-Complete Logic Decision Problems that become Linear Time Solvable on Formula Graphs of Bounded Treewidth}, year = 1991, note = {Manuscript}} @article{ArnborgLS91, author = {Stefan Arnborg and Jens Lagergren and Detlef Seese}, title = {Easy problems for tree-decomposable graphs}, journal = ja, year = 1991, volume = 12, pages = {308-340}} %Arnborg 1992 @unpublished{Arnborg92, author = {Stefan Arnborg}, title = {Decomposability helps for deciding logics of knowledge and belief}, year = 1992, note = {Manuscript}} @article{ArnborgP92, author = {S. Arnborg and A. Proskurowski}, title = {Canonical representations of partial 2- and 3-trees}, journal = bit, volume = 32, year = 1992, pages = {197-214}} %Arnborg 1993 @article{Arnborg93, author = {Stefan Arnborg}, title = {Graph Decompositions and Tree Automata in Reasoning with Uncertainty}, journal = {Journal of Experimental \& Theoretical Artificial Intelligence}, volume = 5, year = 1993, pages = {335-357}} @article{ArnborgCPS93, author = {Stefan Arnborg and Bruno Courcelle and Andrzej Proskurowski and Detlef Seese}, title = {An algebraic theory of graph reduction}, journal = jacm, volume = 40, year = 1993, pages = {1134-1164}} %Aro @inproceedings{AroraKM95, author = {S. Arora and D. Karger and M. Karpinski}, title = {Polynomial time approximation schemes for dense instances of {NP}-hard problems}, year = 1995, booktitle = stoc95, pages = {284-293}} @article{Arora03, author = {S. Arora}, title = {Approximation schemes for {NP}-hard geometric optimization problems: A survey}, journal = mp, volume = 97, year = 2003, pages = {43-69}} %As %Asa @article{Asano85, author = {T. Asano}, title = {An approach to the subgraph homeomorphism problem}, journal = tcs, volume = 38, year = 1985, pages = {249-267}} %Asp @article{AspvallH94, author = {Bengt Aspvall and P. Heggernes}, title = {Finding minimum height elimination trees for interval graphs in polynomial time}, journal = bit, volume = 34, year = 1994, pages = {484-509}} @article{Aspvall95, author = {Bengt Aspvall}, title = {Minimizing elimination tree height can increase fill more than linearly}, journal = ipl, volume = 56, year = 1995, pages = {115-120}} @article{AspvallPT00, author = {B. Aspvall and A. Proskurowski and J. A. Telle}, title = {Memory requirements for table computations in partial $k$-tree algorithms}, journal = alg, volume = 27, year = 2000, pages = {382-394}} %Ass @article{AssmanPSZ81, author = {S. F. Assman and G. W. Peck and Maciej M. Sys{\l}o and J. Zak}, title = {The bandwidth of caterpillars with hairs of length 1 and 2}, year = 1981, journal = sjadm, volume = 2, pages = {387-392}} %At %Ata @article{AtallahMJ88, author = {M. J. Atallah and G. K. Manacher and J. Urrutia}, title = {Finding a maximum independent dominating set in a permutation graph}, journal = dam, volume = 21, year = 1988, pages = {177-183}} @inproceedings{AtallahCL93, author = {M. J. Atallah and D. Z. Chen and D. T. Lee}, title = {An optimal algorithm for shortest paths on weighted interval and circular-arc graphs, with applications}, editor = {Thomas Lengauer}, year = 1993, booktitle = esa93, pages = {13-24}, publisher = lncs726} %Au %Aus @book{AusielloCGKMP99, author = {Giorgio Ausiello and Pierluigi Crescenzi and Giorgio Gambosi and Viggo Kann and Alberto {Marchetti-Spaccamela} and Marco Protasi}, title = {Complexity and Approximation: Combinatorial Optimization Problems and Their Approximability Properties}, publisher = {Springer}, address = {Berlin}, year = 1999} %B %Ba %Bab @article{Babel98, author = {Luitpold Babel}, title = {Triangulating graphs with few {$P_4$}'s}, journal = dam, volume = 89, year = 1998, pages = {45-57}} @article{BabelO98, author = {Luitpold Babel and S. Olariu}, title = {On the structure of graphs with few {$P_4$}'s}, journal = dam, volume = 84, year = 1998, pages = {1-13}} @article{Babel00, author = {Luitpold Babel}, title = {Recognition and isomorphism of tree-like {$P_4$}-connected graphs}, journal = dam, volume = 99, year = 2000, pages = {295-315}} %Bac %Bachoore 2004 @misc{Bachoore04, author = {Emgad Bachoore}, note = {Work in progress}, year = 2004} @techreport{BachooreB04, author = {Emgad Bachoore and Hans L. Bodlaender}, title = {New upper bound heuristics for treewidth}, number = {UU-CS-2004-036}, institution = {Institute for Information and Computing Sciences, Utrecht University}, year = 2004, address = {Utrecht, The Netherlands}} %Bachoore 2005 @inproceedings{BachooreB05, author = {Emgad H. Bachoore and Hans L. Bodlaender}, title = {New upper bound heuristics for treewidth}, editor = {Sotiris E. Nikoletseas}, booktitle = wea05, publisher = lncs3503, year = 2005, pages = {217-227}} %Bachoore 2006 @inproceedings{BachooreB06, author = {Emgad H. Bachoore and Hans L. Bodlaender}, title = {A branch and bound algorithm for exact, upper, and lower bounds on treewidth}, editor = {Siu-Wing Cheng and Chung Keung Poon}, booktitle = {Proceedings of the 2nd International Conference on Algorithmic Aspects in Information and Management, AAIM 2006}, publisher = lncs4041, year = 2006, pages = {255-266}} @techreport{BachooreB06a, author = {Emgad H. Bachoore and Hans L. Bodlaender}, title = {Weighted Treewidth. Algorithmic Techniques and Results}, number = {UU-CS-2006-012}, institution = {Department of Information and Computing Sciences, Utrecht University}, year = 2006, address = {Utrecht, The Netherlands}, note = {Available at http://www.cs.uu.nl/people/bachoore}} @techreport{BachooreB06b, author = {Emgad H. Bachoore and Hans L. Bodlaender}, title = {Convex recoloring of leaf-colored trees}, number = {UU-CS-2006-010}, institution = {Department of Information and Computing Sciences, Utrecht University}, year = 2006, address = {Utrecht, The Netherlands}} %Bad @inproceedings{BaderW97, author = {M. Bader and R. Weibel}, title = {Detecting and resolving size and proximity conflicts in the generalization of polygonal maps}, booktitle = {Proceedings of the 18th International Cartographic Conference}, address = {Stockholm}, year = 1997} %Baf @article{BafnaBF99, author = {V. Bafna and P. Berman and T. Fujito}, title = {A 2-approximation algorithm for the undirected feedback vertex set problem}, journal = sjdm, volume = 12, year = 1999, pages = {289-297}} %Bak @article{Baker94, author = {B. S. Baker}, title = {Approximation algorithms for {NP}-complete problems on planar graphs}, journal = jacm, volume = 41, year = 1994, pages = {153-180}} @techreport{BakkerLT90, author = {Erwin M. Bakker and Jan {van Leeuwen} and Richard B. Tan}, title = {Perfect Colorings}, number = {RUU-CS-90-35}, year = 1990, institution = {Department of Computer Science, Utrecht University}, address = {Utrecht}, type = {Technical Report}} @article{BakkerLT91, author = {Erwin M. Bakker and Jan {van Leeuwen} and Richard B. Tan}, title = {Linear Interval Routing Schemes}, journal = {Algorithms Review}, volume = 2, year = 1991, pages = {45-61}} @misc{BakkerLT94, author = {Erwin M. Bakker and Jan {van Leeuwen} and Richard B. Tan}, note = {Work in progress}} @article{BalakrishnanD03, author = {Hemant Balakrishnan and Narsingh Deo}, title = {Parallel algorithm for radiocoloring a graph}, journal = cn, volume = 160, year = 2003, pages = {193-204}} %Ban @article{BandeltM86, author = {Hans-J{\"{u}}rgen Bandelt and Henry Martijn Mulder}, title = {Distance-Hereditary Graphs}, journal = jctb, volume = 41, year = 1986, pages = {182-208}} @techreport{BandeltDMMS88, author = {Hans-J\"{u}rgen Bandelt and Allessandro D'Atri and Marina Moscarini and Henry Martijn Mulder and Anselm Schultze}, title = {Operations on Distance-Hereditary Graphs}, year = 1988, number = {R.226}, institution = {Istitutio di Analisi dei Sistemi ed Informatica}, address = {Rome}} %Bar @article{BarYehudaE85, author = {Reuven Bar-Yehuda and Simon Even}, title = {A local-ratio theorem for approximating the weighted vertex cover problem}, journal = adm, volume = 25, year = 1985, pages = {27-46}} @inproceedings{BarYehudaFR05, author = {Reuven Bar-Yehuda and Ido Feldman and Dror Rawitz}, title = {Improved approximation algorithm for convex recoloring of trees}, editor = {Thomas Erlebach and Giuseppe Persiano}, booktitle = waoa05, publisher = lncs3879, pages = {55-68}, year = 2006} @article{BarYehudaFR08, author = {Reuven Bar-Yehuda and Ido Feldman and Dror Rawitz}, title = {Improved approximation algorithm for convex recoloring of trees}, journal = tocs, volume = 43, year = 2008, pages = {3-18}} @inproceedings{BarYehudaGNR94, author = {Reuven Bar-Yehuda and D. Geiger and J. Naor and R. M. Roth}, title = {Approximation algorithms for the vertex feedback set problem with applications to constraint satisfaction and {B}ayesian inference}, booktitle = soda94, year = 1994, pages = {344-354}} @article{BarrettJM00, author = {Christopher L. Barrett and Riko Jacob and Madhav V. Marathe}, title = {Formal-language-constrained path problems}, journal = siamjc, volume = 30, year = 2000, pages = {809-837}} @article{BarrettHMRRS06, author = {Christopher L. Barrett and Harry B. {Hunt III} and Madhav V. Marathe and S. S. Ravi and Daniel J. Rosenkrantz and Richard E. Stearns}, title = {Complexity of reachability problems for finite discrete dynamical systems}, journal = jcss, year = 2006, volume = 72, pages = {1317-1345}} @article{BarthFH02, author = {D. Barth and P. Fragopoulou and M.-C. Heydemann}, title = {Uniform emulations of {C}artesian-product and {C}ayley graphs}, journal = dam, volume = 116, year = 2002, pages = {37-54}} %Bat @inproceedings{BattistaN86, author = {Di Battista, G. and E. Nardelli}, title = {An Algorithm for Testing Planarity of Hierarchical Graphs}, booktitle = wg86, publisher = lncs246, year = 1986, pages = {277-289}} @techreport{BattistaT89, author = {Di Battista, Giuseppe and Roberto Tamassia}, title = {On-Line Planarity Testing}, number = {CS-89-31}, institution = {???}, year = 1989} @book{BattistaETT99, author = {Di Battista, Giuseppe and Peter Eades and Roberto Tamassia and Ioannis G. Tollis}, title = {Graph Drawing. Algorithms for the Visualization of Graphs}, publisher = {Prentice Hall}, address = {Upper Saddle River, New Jersey, USA}, year = 1999} %Bau @article{BauderonC87, author = {M. Bauderon and Bruno Courcelle}, title = {Graph expressions and graph rewritings}, journal = mst, volume = 20, year = 1987, pages = {83-127}} %Bax @article{Bax93, author = {E. T. Bax}, title = {Inclusion and exclusion algorithm for the {H}amiltonian path problem}, journal = ipl, volume = 47, year = 1993, pages = {203-207}} %Baz @article{BazganTV06, author = {Christina Bazgan and Zsolt Tuza and Daniel Vanderpooten}, title = {Degree-constrained decompositions of graphs: Bounded treewidth and planarity}, journal = tcs, volume = 355, year = 2006, pages = {389-395}} %Be %Bec @inproceedings{BeckerG96, author = {A. Becker and D. Geiger}, title = {A sufficiently fast algorithm for finding close to optimal junction trees}, editor = {Dan Geiger and Prakash P. Shenoy}, booktitle = uai96, publisher = {Morgan Kaufmann}, year = 1996, pages = {81-96}} @article{BeckerG96a, author = {A. Becker and D. Geiger}, title = {Optimization of {P}earl's method of conditioning and greedy-like approximation algorithms for the vertex feedback set problem}, journal = artint, volume = 83, year = 1996, pages = {167-188}} @article{BeckerBG00, author = {Ann Becker and Reuven Bar-Yehuda and Dan Geiger}, title = {Randomized algorithms for the loop cutset problem}, journal = jair, volume = 12, year = 2000, pages = {219-234}} @article{BeckerG01, author = {Ann Becker and Dan Geiger}, title = {A sufficiently fast algorithm for finding close to optimal clique trees}, journal = artint, volume = 125, year = 2001, pages = {3-17}} %Beh @book{BehzadCL79, author = {M. Behzad and G. Chartrand and L. Lesniak-Foster}, title = {Graphs and Digraphs}, year = 1979, publisher = {Pindle, Weber \& Schmidt}, address = {Boston}} %Bei @article{BeigelE05, author = {R. Beigel and D. Eppstein}, title = {3-coloring in {$O(1.3289^n)$} time}, journal = ja, volume = 54, year = 2005, pages = {168-204}} @article{BeinBT85, author = {W. W. Bein and P. Bruckner and A. Tamir}, title = {Minimum cost flow algorithms for series-parallel networks}, journal = dam, volume = 10, year = 1985, pages = {117-124}} @article{BeinekeP71, author = {L. W. Beineke and R. E. Pippert}, title = {Properties and characterizations of $k$-trees}, journal = math, volume = 18, year = 1971, pages = {141-151}} @inproceedings{BeinlichSCC89, author = {I. Beinlich and G. Suermondt and R. Chavez and G. Cooper}, title = {The {ALARM} monitoring system: A case study with two probabilistic inference techniques for belief networks}, booktitle = {Proceedings of the 2nd European Conference on AI and Medicine}, publisher = {Springer-Verlag}, year = 1989, pages = {247-256}} %Bel @article{BellenbaumD02, author = {P. Bellenbaum and R. Diestel}, title = {Two short proofs concerning tree-decompositions}, journal = cpc, volume = 11, year = 2002, pages = {541-547}} @book{BellmanD62, author = {R. E. Bellman and S. E. Dreyfus}, title = {Applied Dynamic Programming}, publisher = {Princeton University Press}, address = {Princeton, N.J., USA}, year = 1962} %Ben @article{Bentz08, author = {C\'{e}dric Bentz}, title = {On the complexity of the multicut problem in bounded tree-width graphs and digraphs}, journal = dam, volume = 156, year = 2008, pages = {1908-1917}} %Ber %Berg @techreport{BergOK89, author = {Mark de Berg and Mark Overmars and Marc van Kreveld}, title = {Finding Complete Bipartite Subgraphs in Bipartite Graphs}, institution = {Department of Computer Science, Utrecht University}, number = {RUU-CS-89-30}, year = 1989, address = {Utrecht, The Netherlands}} @book{Berge73, author = {C. Berge}, title = {Graphs and Hypergraphs}, publisher = {North-Holland}, address = {Amsterdam}, year = 1973 } @book{Berge85, author = {C. Berge}, title = {Graphs}, publisher = {North-Holland}, address = {Amsterdam}, year = 1985 } @article{BergerFNP07, author = {A. Berger and Takuro Fukunaga and Hiroshi Nagamochi and Ojas Parekh}, title = {Approximability of the capacitated $b$-edge dominating set problem}, journal = tcs, volume = 385, year = 2007, pages = {202-213}} %Berl @book{BerlekampCG82a, author = {E. R. Berlekamp and J. H. Conway and R. K. Guy}, title = {Winning Ways for your mathematical plays, Volume 1: Games in General}, publisher = {Academic Press}, address = {New York}, year = 1982 } @book{BerlekampCG82b, author = {E. R. Berlekamp and J. H. Conway and R. K. Guy}, title = {Winning Ways for your mathematical plays, Volume 2: Games in Particular}, publisher = {Academic Press}, address = {New York}, year = 1982 } %Berm @article{BermanJLSS90, author = {Fran Berman and David Johnson and Tom Leighton and Peter W. Shor and Larry Snyder}, title = {Generalized planar matching}, journal = ja, volume = 11, year = 1990, pages = {153-185}} %Bern @article{BernLW87, author = {M. W. Bern and Eugene L. Lawler and A. L. Wong}, title = {Linear time computation of optimal subgraphs of decomposable graphs}, journal = ja, volume = 8, year = 1987, pages = {216-235}} @article{BernP90, author = {Marshall Bern and Paul Plassmann}, title = {The {S}teiner problem with edge lengths 1 and 2}, journal = ipl, volume = 32, year = 1989, pages = {171-176}} @inproceedings{BernH96, author = {Marshall W. Bern and Barry Hayes}, title = {The Complexity of Flat Origami}, year = 1996, pages = {175-183}, booktitle = soda96} @article{BernhartK79, author = {F. Bernhart and B. Kainen}, title = {The book thickness of a graph}, journal = jctb, volume = 27, year = 1979, pages = {320-331}} %Berr %Berry 1997 @techreport{BerryB97, author = {A. Bery and J.-P. Bordat}, title = {Decomposition by clique minimal separators}, type = {Research Report}, institution = {LIM}, address = {Marseille}, year = 1997} %Berry 1998 @phdthesis{Berry98, author = {A. Berry}, title = {D\'{e}sarticulation d'un graphe}, school = {Universit\'{e} Montpellier II}, year = 1998} @article{BerryB98, author = {A. Berry and J.-P. Bordat}, title = {Separability generalizes {D}irac's theorem}, journal = dam, volume = 84, year = 1998, pages = {43-53}} %Berry 1999 @inproceedings{Berry99, author = {A. Berry}, title = {A Wide-Range Efficient Algorithm for Minimal Triangulation}, booktitle = "{SODA}'99: {ACM}-{SIAM} Symposium on Discrete Algorithms", year = "1999", pages ={860-861}} @inproceedings{BerryBC99, author = {A. Berry and J.-P. Bordat and O. Cogis}, title = {Generating all the minimal separators of a graph}, editor = {Peter Widmayer and Gabriele Neyer and Sephan Eidenbenz}, booktitle = wg99, publsiher = lncs1665, year = 1999, pages = {167-172}} %Berry 2000 @article{BerryBC00, author = {Anne Berry and Jean-Paul Bordat and Olivier Cogis}, title = {Generating all the minimal separators of a graph}, journal = ijfcs, volume = 11, year = 2000, pages = {397-404}} @article{BerryBH00, author = {Anne Berry and Jean-Paul Bordat and Pinar Heggernes}, title = {Recognizing weakly triangulated graphs by edge separability}, journal = nordicjc, volume = 7, year = 2000, pages = {164-177}} %Berry 2001 @inproceedings{BerryB01, author = {Anne Berry and Jean-Paul Bordat}, title = {Moplex elimination orderings}, editor = {Johann Hurink and Stefan Pickl and Hajo Broersma and Ulrich Faigle}, booktitle = {Proceedings of the 1st Cologne-Twente Workshop on Graphs and Combinatorial Optimization, Electronic Notes in Discrete Mathematics 8}, year = 2001, pages = {6 -- 9}} %Berry 2002 @inproceedings{BerryBH02, author = {Anne Berry and Jean R. S. Blair and Pinar Heggernes}, title = {Maximum cardinality search for computing minimal triangulations}, editor = {Lud\u{e}k Ku\u{c}era}, booktitle = wg02, publisher = lncs2573, year = 2002, pages = {1-12}} %Berry 2003 @inproceedings{BerryHS03, author = {Anne Berry and Pinar Heggernes and Genevi\`{e}ve Simonet}, title = {The minimum degree heuristic and the minimal triangulation process}, editor = {Hans L. Bodlaender}, booktitle = wg03, publisher = lncs2880, year = 2003, pages = {58-70}} @inproceedings{BerryJV03, author = {Anne Berry and Pinar Heggernes and Yngve Villanger}, title = {A vertex incremental approach for dynamically maintaining chordal graphs}, editor = {Toshihide Ibaraki and Naoki Katoh and Hirotaka Ono}, booktitle = isaac03, publisher = lncs2906, pages = {47-57}, year = 2003} %Berry 2004 @article{BerryBHP04, author = {Anne Berry and Jean Blair and Pinar Heggernes and Barry Peyton}, title = {Maximum cardinality search for computing minimal triangulations of graphs}, journal = alg, volume = 39, year = 2004, pages = {287-298}} %Berry 2005 @inproceedings{BerryKS05, author = {Anne Berry and Richard Krueger and Genevi\`{e}ve Simonet}, title = {Ultimate generalizations of {LexBFS} and {LEX M}}, editor = {Dieter Kratsch}, booktitle = wg05, year = 2005, publisher = lncs3787, pages = {199-213}} %Berry 2006 @article{BerryBHSV06, author = {Anne Berry and Jean-Paul Bordat and Pinar Heggernes and Genevi\`{e}ve Simonet and Yngve Villanger}, title = {A wide-range algorithm for minimal triangulation from an arbitrary ordering}, journal = ja, volume = 58, year = 2006, pages = {33-66}} @article{BerryHV06, author = {Anne Berry and Pinar Heggernes and Yngve Villanger}, title = {A vertex incremental approach for maintaining chordality}, journal = dm, volume = 306, year = 2006, pages = {318-336}} %Berry 2008 @article{BerryDHS08, author = {Anne Berry and Elias Dahlhaus and Pinar Heggernes and Genevi\`{e}ve Simonet}, title ={Sequential and parallel triangulating algorithms for {E}limination {G}ame and new insights on {M}inimum {D}egree}, journal = tcs, volume = 409, year = 2008, pages = {601-616}} %Bert @book{BerteleB72, author = {U. Bertele and F. Brioschi}, title = {Nonserial Dynamic Programming}, publisher = {Academic Press}, address = {New York}, year = 1972 } @inproceedings{BertolazziCDTT92, author = {P. Bertolazzi and Robert F. Cohen and G. {Di Battista} and Roberto Tamassia and I. G. Tollis}, title = {How to draw a series-parallel digraph}, editor = {O. Nurmi and E. Ukkonen}, booktitle = swat92, publisher = lncs621, year = 1992, pages = {272-283}} %Bertossi 1981 @article{Bertossi81, author = {Alan A. Bertossi}, title = {The edge {H}amiltonian path problem is {NP}-complete}, journal = ipl, volume = 13, year = 1981, pages = {157-159}} %Bertossi 1983 @article{Bertossi83, author = {Alan A. Bertossi}, title = {Finding {H}amiltonian Circuits in Proper Interval Graphs}, journal = ipl, volume = 17, year = 1983, pages = {97-102}} %Bertossi 1984 @article{Bertossi84, author = {Alan A. Bertossi}, title = {Dominating set for split and bipartite graphs}, journal = ipl, volume = 19, year = 1984, pages = {37-40}} %Bertossi 1986 @article{Bertossi86, author = {Alan A. Bertossi}, title = {Total domination in interval graphs}, journal = ipl, volume = 23, year = 1986, pages = {131-134}} @article{BertossiB86, author = {Alan A. Bertossi and M. A. Bonucelli}, title = {Hamiltonian circuits in interval graph generalizations}, journal = ipl, volume = 23, year = 1986, pages = {195-200}} %Bertossi 1987 @article{BertossiB87, author = {Alan A. Bertossi and M. A. Bonuccelli}, title = {Some parallel algorithms on interval graphs}, journal = dam, volume = 16, year = 1987, pages = {101-111}} %Bertossi 1988 @article{Bertossi88, author = {Alan A. Bertossi}, title = {On the domatic number of interval graphs}, journal = ipl, volume = 28, year = 1988, pages = {275-280}} %Bes @unpublished{BessyFGPST09, author = {St{\'e}phane Bessy and Fedor V. Fomin and Serge Gaspers and Christophe Paul and Anthony Perez and Saket Saurabh and St{\'e}phan Thomass{\'e}}, title = {Kernels for feedback arc set in tournaments}, year = 2009, note = {The Computing Research Repository, abs/0907.2165. To appear in proceedings FSTTCS 2009.}} %Bet %Betzler 2006 @article{BetzlerNU06, author = {Nadja Betzler and Rolf Niedermeier and Johannes Uhlmann}, title = {Tree decompositions of graphs: Saving memory in dynamic programming}, journal = do, volume = 3, year = 2006, pages = {220-229}} %Betzler 2009 @article{BetzlerFGNR09, author = {Nadja Betzler and Michael R. Fellows and Jiong Guo and Rolf Niedermeier and Frances A. Rosamond}, title = {Fixed-parameter algorithms for {K}emeny rankings}, journal = tcs, volume = 410, year = 2009, pages = {4554-4570}} @article{BetzlerU09, author = {Nadja Betzler and Johannes Uhlmann}, title = {Parameterized complexity of candidate control in elections and related digraph problems}, journal = tcs, volume = 410, year = 2009, pages = {5425-5442}} %Betzler 2010 @article{BetzlerGN10, author = {Nadja Betzler and Jiong Guo and Rolf Niedermeier}, title = {Parameterized computational complexity of {D}odgson and {Y}oung elections}, journal = ic2, volume = 208, year = 2010, pages = {165-177}} %Bey @inproceedings{BeyerPHM77, author = {T. Beyer and Andrzej Proskurowski and S. Hedetniemi and S. Mitchell}, title = {Independent domination in trees}, booktitle = {Proceedings of the 8th S. E. Conf. on Combinatorics, Graph Theory, and Computing}, pages = {321-328}, publisher = {Utilitas Mathematica}, address = {Winnipeg}, year = 1977 } @article{BeyerJM79, author = {T. Beyer and W. Jones and S. Mitchell}, title = {Linear algorithms for isomorphism of maximal outerplanar graphs}, journal = jacm, volume = 26, year = 1979, pages = {603-610}} %Bi %Bia @inproceedings{BianG08, author = {Zhengbing Bian and Qian-Ping Gu}, title = {Computing branch decompositions of large planar graphs}, editor = {Catherine C. McGeoch}, booktitle = wea08, publisher = lncs5038, pages = {87-100}, year = 2008} %Bie @article{BiedlK98, author = {Therese C. Biedl and Goos Kant}, title = {A better heuristic for orthogonal graph drawings}, journal = cg, volume = 9, year = 1998, pages = {159-180}} @article{BiedlCGHW05, author = {Therese Biedl and Timothy Chan and Yashar Ganjali and Mohammad Taghi Hajiaghayi and David R. Wood}, title = {Balanced vertex-orderings of graphs}, journal = dam, volume = 148, year = 2005, pages = {27-48}} %Bienstock 1988 @article{BienstockM88, author = {Daniel Bienstock and Clyde L. Monma}, title = {On the complexity of covering vertices by faces in a planar graph}, journal = siamjc, volume = 17, year = 1988, pages = {53-76}} %Bienstock 1989 @article{BienstockM89, author = {Daniel Bienstock and Clyde L. Monma}, title = {Optimal enclosing regions in planar graphs}, journal = netw, volume = 19, year = 1989, pages = {79-94}} %Bienstock 1990 @article{Bienstock90, author = {Daniel Bienstock}, title = {Embedding graphs in trees}, journal = jctb, volume = 49, year = 1990, pages = {103-136}} @article{BienstockM90, author = {Daniel Bienstock and Clyde L. Monma}, title = {On the complexity of embedding planar graphs to minimize certain distance measures}, journal = alg, volume = 5, year = 1990, pages = {93-109}} %Bienstock 1991 @article{Bienstock91, author = {Daniel Bienstock}, title = {Graph searching, Path-width, Tree-width and Related Problems (A Survey)}, journal = {DIMACS Series in Discrete Mathematics and Theoretical Computer Science}, volume = 5, year = 1991, pages = {33-49}} @article{BienstockRST91, author = {Daniel Bienstock and Neil Robertson and Paul D. Seymour and Robin Thomas}, title = {Quickly excluding a forest}, journal = jctb, volume = 52, year = 1991, pages = {274-283}} @article{BienstockS91, author = {Daniel Bienstock and Paul Seymour}, title = {Monotonicity in Graph Searching}, journal = ja, volume = 12, year = 1991, pages = {239 - 245}} %Bienstock 1992 @article{BienstockD92, author = {Daniel Bienstock and N. Dean}, title = {On obstructions to small face covers in planar graphs}, journal = jctb, volume = 55, year = 1992, pages = {163-189}} %Bienstock 1995 @incollection{BienstockL95, author = {Daniel Bienstock and Michael A. Langston}, title = {Algorithmic implications of the graph minor theorem}, booktitle = {Handbook of Operations Research and Management Science: Network Models}, editor = {M. O. Ball and T. L. Magnanti and C. L. Monma and G. L. Nemhauser}, year = 1995, pages = {481-502}, publisher = {North-Holland}, address = {Amsterdam, the Netherlands}} %Bienstock 2006 @article{BienstockO06, author = {Daniel Bienstock and Nuri \"{O}zbay}, title = {Tree-width and the {S}herali-{A}dams operator}, journal = do, volume = 1, year = 2004, pages = {13-21}} %Bir @article{Birmele03, author = {Etienne Birmele}, title = {Tree-width and circumference of graphs}, journal = jgt, volume = 43, year = 2003, pages = {24-25}} @article{BirmeleBR09, author = {E. Birmel\'{e} and J. A. Bondy and B. A. Reed}, title = {Tree-width of graphs without a 3$\times$3 grid minor}, journal = dam, volume = 157, year = 2009, pages = {2577-2596}} %Bj @inproceedings{BjorklundHKK07, author = {Andreas Bj\"orklund and Thore Husfeldt and Petteri Kaski and Mikko Koivisto}, title = {Fourier meets {M}\"obius: {F}ast subset convolution}, booktitle = stoc07, pages = {67-74}, year = 2007, punlisher = {ACM}} @article{BjorklundHK09, author = {Andreas Bj{\"o}rklund and Thore Husfeldt and Mikko Koivisto}, title = {Set Partitioning via Inclusion-Exclusion}, journal = siamjc, volume = 39, year = 2009, pages = {546-563}} %Bl %Bla %Blair 1993 @inproceedings{BlairP93, author = {Jean R. S. Blair and B. Peyton}, title = {An introduction to chordal graphs and clique trees}, booktitle = {Graph Theory and Sparse Matrix Computations}, editor = {A. George and J. R. Gilbert and J. H. U. Liu}, publisher = {Springer-Verlag}, address = {New York}, year = 1993, pages = {1-29}} %Blair 1994 @article{BlairP94, author = {J. R. S. Blair and B. W. Peyton}, title = {On finding minimum-diameter clique trees}, journal = nordicjc, volume = 1, year = 1994, pages = {173-201}} %Blair 2001 @article{BlairHT01, author = {Jean R. S. Blair and Pinar Heggernes and {Jan Arne} Telle}, title = {A practical algorithm for making filled graphs minimal}, journal = tcs, volume = 250, year = 2001, pages = {125-141}} %Blair 2008 @article{BlairGHHJK08, author = {Jean R. S. Blair and Wayne Goddard and Stephen T. Hedetniemi and Steve Horton and Patrick Jones and Grzegorz Kubicki}, title = {On domination and reinforcement numbers in trees}, journal = dm, volume = 308, year = 2008, pages = {1165-1175}} %Bli @article{BlinFHV08, author = {G. Blin and G. Fertin and D. Hermelin and S. Vialette}, title = {Fixed-parameter algorithms for protein similarity search under {mRNA} structure constraints}, journal = jda, volume = 6, year = 2008, pages = {618-626}} %Blo @article{BlokhuisK95, author = {A. Blokhuis and T. Kloks}, title = {On the equivalence covering number of splitgraphs}, journal = ipl, volume = 54, year = 1995, pages = {301-304}} %Bo %Boc @article{BockerBBT09, author = {S. B\"{o}cker and S. Briesemeister and Q. B. A. Bui and A. Truss}, title = {Going weighted: parameterized algorithms for cluster editing}, journal = tcs, volume = 410, year = 2009, pages = {5467-5480}} @unpublished{BockerBK09, author = {Sebastian B\"{o}cker and Sebastian Briesemeister and Gunnar W. Klau}, title = {Exact algorithms for cluster editing: Evaluation and experiments}, note = {To appear in Algorithmica. Online publication: doi 10.1007/s00453-009-9339-7}, year = 2009} %Bod %Bodlaender 1985 @article{Bodlaender85, author = {Hans L. Bodlaender}, title = {The complexity of finding uniform emulations on paths and ring networks}, journal = ic2, volume = 86, year = 1990, pages = {87 - 106}} %Bodlaender 1986 @techreport{Bodlaender86, author = {Hans L. Bodlaender}, title = {Classes of Graphs with Bounded Treewidth}, institution = {Dept. of Computer Science, Utrecht University}, year = 1986, number = {RUU-CS-86-22}, address = {Utrecht, The Netherlands}} %Bodlaender 1987 @techreport{Bodlaender87-, author = {Hans L. Bodlaender}, title = {Dynamic Programming Algorithms on Graphs with Bounded Tree-width}, institution = {Lab. for Computer Science, M.I.T.}, type = {Tech. Rep.}, year = 1987} @inproceedings{Bodlaender87, author = {Hans L. Bodlaender}, title = {Dynamic programming algorithms on graphs with bounded tree-width}, editor = {Timo Lepist\"{o} and Arto Salomaa}, booktitle = icalp88, publisher = lncs317, year = 1988, pages = {105-119}} @techreport{Bodlaender87b, author = {Hans L. Bodlaender}, title = {The Maximum Cut and Minimum Cut Into Bounded Sets Problems on Cographs}, institution = {Dept. of Computer Science, Utrecht University}, year = 1987, address = {Utrecht, The Netherlands}, number = {RUU-CS-87-12}} %Bodlaender 1988 @inproceedings{Bodlaender88, author = {Hans L. Bodlaender}, title = {{NC}-algorithms for graphs with small treewidth}, editor = {J. van Leeuwen}, booktitle = wg88, publisher = lncs344, year = 1988, pages = {1-10}} @techreport{Bodlaender88a, author = {Hans L. Bodlaender}, title = {Planar Graphs with Bounded Treewidth}, type = {Technical Report}, number = {RUU-CS-88-14}, institution = {Dept. of Computer Science, Utrecht University}, address = {Utrecht, The Netherlands}, year = 1988 } @article{Bodlaender88c, author = {Hans L. Bodlaender}, title = {Some classes of graphs with bounded treewidth}, journal = beatcs, volume = 36, year = 1988, pages = {116-126}} @article{Bodlaender88d, author = {Hans L. Bodlaender}, title = {Improved self-reduction algorithms for graphs with bounded treewidth}, journal = dam, volume = 54, year = 1994, pages = {101-115}} %Bodlaender 1989 @article{Bodlaender89, author = {Hans L. Bodlaender}, title = {On linear time minor tests with depth first search}, journal = ja, volume = 14, year = 1993, pages = {1-23}} @article{Bodlaender89z, author = {Hans L. Bodlaender}, title = {On the complexity of some coloring games}, journal = ijfcs, volume = 2, number = 2, year = 1991, pages = {133-147}} %Bodlaender 1990 @article{Bodlaender90b, author = {Hans L. Bodlaender}, title = {Polynomial algorithms for Graph Isomorphism and Chromatic Index on partial $k$-trees}, journal = ja, volume = 11, year = 1990, pages = {631-643}} @techreport{BodlaenderK90, author = {Hans L. Bodlaender and Ton Kloks}, title = {Fast Algorithms for the {\sc Tron} Game on Trees}, type = {Technical Report}, institution = {Department of Computer Science, University of Utrecht}, number = {RUU-CS-90-11}, year = 1990 } %Bodlaender 1991 @inproceedings{BodlaenderK91, author = {Hans L. Bodlaender and Ton Kloks}, title = {Better algorithms for the pathwidth and treewidth of graphs}, editor = {Javier Leach Albert and Burkhard Monien and Mario Rodr\'{\i}guez-Artalejo}, booktitle = icalp91, publisher = lncs510, year = 1991, pages = {544-555}} %Bodlaender 1992 @inproceedings{Bodlaender92b, author = {Hans L. Bodlaender}, title = {Dynamic algorithms for graphs with treewidth 2}, editor = {Jan van Leeuwen}, booktitle = wg93, publisher = lncs790, year = 1994, pages = {112-124}} @article{Bodlaender92c, author = {Hans L. Bodlaender}, title = {A Tourist Guide through Treewidth}, journal = actacybernetica, volume = 11, pages = {1-23}, year = 1993} @inproceedings{BodlaenderFW92, author ={Hans L. Bodlaender and Michael R. Fellows and Tandy J. Warnow}, title = {Two Strikes Against Perfect Phylogeny}, editor = {W. Kuich}, booktitle = icalp92, year = 1992, pages = {273-283}, publisher = lncs623} @misc{BodlaenderKKM92, author = {Hans L. Bodlaender and Ton Kloks and Dieter Kratsch and Haiko M{\"u}ller}, year = 1993, note = {Unpublished results}} %Bodlaender 1993 @article{Bodlaender93, author = {Hans L. Bodlaender}, title = {Complexity of path-forming games}, journal = tcs, volume = 110, year = 1993, pages = {215-245}} @inproceedings{Bodlaender93b, author = {Hans L. Bodlaender}, title = {On reduction algorithms for graphs with small treewidth}, editor = {Jan van Leeuwen}, booktitle = wg93, publisher = lncs790, year = 1994, pages = {45-56}} @inproceedings{Bodlaender93c, author = {Hans L. Bodlaender}, title = {Kayles on special classes of graphs --- {An} application of {S}prague-{G}rundy theory}, editor = {Ernst W. Mayr}, booktitle = wg92, publisher = lncs657, year = 1993, pages = {90-102}} @article{BodlaenderDFW93, author = {Hans L. Bodlaender and Rodney G. Downey and Michael R. Fellows and Harold T. Wareham}, title = {The parameterized complexity of sequence alignment and consensus }, journal = tcs, volume = 147, year = 1995, pages = {31-54}} @inproceedings{BodlaenderG93, author = {Hans L. Bodlaender and Jens Gustedt}, title = {A Conjecture on the Pathwidth of $k$-Trees}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147. In section ``Open Problems'', editor N. Dean}, pages = {678-679}, year = 1993} @article{BodlaenderK93, author = {Hans L. Bodlaender and Ton Kloks}, title = {A simple linear time algorithm for triangulating three-colored graphs}, journal = ja, volume = 15, year = 1993, pages = {160-172}} @article{BodlaenderM93, author = {Hans L. Bodlaender and Rolf H. M{\"{o}}hring}, title = {The pathwidth and treewidth of cographs}, journal = sjdm, volume = 6, year = 1993, pages = {181-188}} %Bodlaender 1994 @article{Bodlaender94, author = {Hans L. Bodlaender}, title = {Improved self-reduction algorithms for graphs with bounded treewidth}, journal = dam, volume = 54, year = 1994, pages = {101-115}} @article{Bodlaender94c, author = {Hans L. Bodlaender}, title = {On disjoint cycles}, journal = ijfcs, volume = 5, number = 1, year = 1994, pages = {59-68}} @inproceedings{BodlaenderFH94, author = {Hans L. Bodlaender and Michael R. Fellows and Michael Hallett}, title = {Beyond {{\it NP}}-Completeness for Problems of Bounded Width: Hardness for the {$W$} Hierarchy}, year = 1994, booktitle = stoc94, address = {New York}, pages = {449-458}, publisher = {ACM Press}} @article{BodlaenderJW94, author = {Hans L. Bodlaender and Klaus Jansen and Gerhard J. Woeginger}, title = {Scheduling with incompatible jobs}, journal = dam, volume = 55, year = 1994, pages = {219-232}} %Bodlaender 1995 @article{BodlaenderDFHW95, author = {Hans L. Bodlaender and Rodney G. Downey and Michael R. Fellows and Michael T. Hallett and H. Todd Wareham}, title = {Parameterized complexity analysis in computational biology}, journal = {Computer Applications in the Biosciences}, volume = 11, year = 1995, pages = {49-57}} @article{BodlaenderDFW95, author = {Hans L. Bodlaender and Rodney G. Downey and Michael R. Fellows and Harold T. Wareham}, title = {The parameterized complexity of sequence alignment and consensus}, journal = tcs, volume = 147, year = 1995, pages = {31-54}} @article{BodlaenderGHK95, author = {Hans L. Bodlaender and John R. Gilbert and H. Hafsteinsson and Ton Kloks}, title = {Approximating Treewidth, Pathwidth, Frontsize, and Minimum Elimination Tree Height}, journal = ja, volume = 18, year = 1995, pages = {238-255}} @inproceedings{BodlaenderF95, author = {Hans L. Bodlaender and Babette de Fluiter}, title = {Intervalizing $k$-Colored Graphs}, editor = {Zolt\'{a}n F\"{u}l\"{o}p and Ferenc G\'{e}cseg}, booktitle = icalp95, publisher = lncs944, year = 1995, pages = {87-98}} @techreport{BodlaenderF95a, author = {Hans L. Bodlaender and Babette de Fluiter}, title = {Reduction Algorithms for Graphs with Small Treewidth}, number = {UU-CS-1995-37}, year = 1995, institution = {Department of Computer Science, Utrecht University}, address = {Utrecht}, type = {Technical Report}} @article{BodlaenderF95b, author = {Hans L. Bodlaender and Michael R. Fellows}, title = {{$W[2]$}-hardness of precedence constrained {$K$}-processor scheduling}, journal = orl, volume = 18, year = 1995, pages = {93-97}} @techreport{BodlaenderFHWW95, author = {Hans L. Bodlaender and Michael R. Fellows and Michael T. Hallett and H. Todd Wareham and Tandy J. Warnow}, title = {The hardness of problems on thin colored graphs}, institution = vi, address = {Utrecht}, type = tr, number = {UU-CS-1995-36}, year = 1995 } @article{BodlaenderKK95, author = {Hans L. Bodlaender and Ton Kloks and Dieter Kratsch}, title = {Treewidth and pathwidth of permutation graphs}, journal = sjdm, volume = 8, number = 4, year = 1995, pages = {606-616}} %Bodlaender 1996 @article{Bodlaender96, author = {Hans L. Bodlaender}, title = {A linear time algorithm for finding tree-decompositions of small treewidth}, journal = siamjc, year = 1996, volume = 25, pages = {1305-1317}} @inproceedings{BodlaenderF96, author = {Hans L. Bodlaender and Babette de Fluiter}, title = {Parallel Algorithms for Series Parallel Graphs}, editor = {Joseph Diaz and Maria Serna}, booktitle = esa96, year = 1996, publisher = lncs1136, pages = {277-289}} @inproceedings{BodlaenderF96a, author = {Hans L. Bodlaender and Babette de Fluiter}, title = {Reduction algorithms for constructing solutions in graphs with small treewidth}, editor = {Jin-Yi Cai and Chak Kuen Wong}, booktitle = cocoon96, publisher = lncs1090, year = 1996, pages = {199-208}} @article{BodlaenderF96b, author = {Hans L. Bodlaender and Babette de Fluiter}, title = {On intervalizing $k$-colored graphs for {DNA} physical mapping}, journal = dam, volume = 71, year = 1996, pages = {55-77}} @inproceedings{BodlaenderFE96, author = {Hans L. Bodlaender and Michael R. Fellows and Patricia A. Evans}, title = {Finite-State Computability of Annotations of Strings and Trees}, editor = {Daniel S. Hirshberg and Eugene W. Myers}, booktitle = {Proceedings of the 7th Annual Symposium on Combinatorial Pattern Matching, CPM'96}, publisher = lncs1075, year = 1996, pages = {384-391}} @article{BodlaenderK96, author = {Hans L. Bodlaender and Ton Kloks}, title = {Efficient and constructive algorithms for the pathwidth and treewidth of graphs}, journal = ja, volume = 21, year = 1996, pages = {358-402}} %Bodlaender 1997 @inproceedings{Bodlaender97, author = {Hans L. Bodlaender}, title = {Treewidth: Algorithmic Techniques and Results}, editor = {Igor Privara and Peter Ruzicka}, booktitle = mfcs97, publisher = lncs1295, year = 1997, pages = {19-36}} @article{BodlaenderE97, author = {Hans L. Bodlaender and Joost Engelfriet}, title = {Domino treewidth}, journal = ja, volume = 24, pages = {94-123}, year = 1997} @techreport{BodlaenderF97, author = {Hans L. Bodlaender and Babette de Fluiter}, title = {Parallel Algorithms for Series Parallel Graphs}, institution = {Dept. of Computer Science, Utrecht University}, year = 1997, number = {UU-CS-1997-21}, address = {Utrecht, The Netherlands}} @techreport{BodlaenderF97a, author = {Babette de Fluiter and Hans L. Bodlaender}, title = {Parallel algorithms for graphs of treewidth two}, institution = {Dept. of Computer Science, Utrecht University}, year = 1997, number = {UU-CS-1997-23}, address = {Utrecht, The Netherlands}} @inproceedings{BodlaenderT97, author = {Hans L. Bodlaender and Dimitrios M. Thilikos}, title = {Constructive Linear Time Algorithms for Branchwidth}, editor = {Pierpaolo Degano and Roberto Gorrieri and Alberto Marchetti-Spaccamela}, booktitle = icalp97, publisher = lncs1256, year = 1997, pages = {627-637}} @article{BodlaenderT97a, author = {Hans L. Bodlaender and Dimitrios M. Thilikos}, title = {Treewidth for graphs with small chordality}, journal = dam, volume = 79, year = 1997, pages = {45-61}} @article{BodlaenderTTL97, author = {Hans L. Bodlaender and Jan van Leeuwen and Richard Tan and Dimitrios Thilikos}, title = {On interval routing schemes and treewidth}, journal = ic2, volume = 139, number = 1, year = 1997, pages={92-109}} %Bodlaender 1998 @article{Bodlaender98, author = {Hans L. Bodlaender}, title = {A partial $k$-arboretum of graphs with bounded treewidth}, journal = tcs, volume = 209, year = 1998, pages = {1-45}} @article{BodlaenderDJKKMT98, author = {Hans L. Bodlaender and J. S. Deogun and K. Kansen and Ton Kloks and Dieter Kratsch and Haiko M{\"u}ller and Z. Tuza}, title = {Rankings of graphs}, journal = sjdm, volume = 11, year = 1998, pages = {168-181}} @inproceedings{BodlaenderGT98, author = {Hans Bodlaender and Jens Gustedt and Telle, Jan Arne}, title = {Linear-time register allocation for a fixed number of registers}, booktitle = soda98, pages = {574--583}, publisher = {ACM}, year = {1998}} @article{BodlaenderH98, author = {Hans L. Bodlaender and Torben Hagerup}, title = {Parallel algorithms with optimal speedup for bounded treewidth}, journal = comp, volume = 27, year = 1998, pages = {1725-1746}} @article{BodlaenderKKM98, author = {Hans L. Bodlaender and Ton Kloks and Dieter Kratsch and Haiko Mueller}, title = {Treewidth and minimum fill-in on $d$-trapezoid graphs}, journal = jgaa, volume = 2, number = 5, year = 1998, pages = {1-23}} %Bodlaender 1999 @article{BodlaenderT99, author = {Hans L. Bodlaender and Dimitrios M. Thilikos}, title = {Graphs with branchwidth at most three}, journal = ja, volume = 32, year = 1999, pages = {167-194}} %Bodlaender 2000 @article{BodlaenderFHWW00, author = {Hans L. Bodlaender and Michael R. Fellows and Michael T. Hallett and H. Todd Wareham and Tandy J. Warnow}, title = {The hardness of perfect phylogeny, feasible register assignment and other problems on thin colored graphs}, journal = tcs, volume = 244, year = 2000, pages = {167-188}} %Bodlaender 2001 @article{BodlaendervA01, author = {Hans L. Bodlaender and Babette van Antwerpen-de Fluiter}, title = {Parallel algorithms for series parallel graphs and graphs with treewidth two}, journal = alg, volume = 29, year = 2001, pages = {543-559}} @article{BodlaendervA01a, author = {Hans L. Bodlaender and Babette van Antwerpen-de Fluiter}, title = {Reduction algorithms for graphs of small treewidth}, journal = ic2, volume = 167, year = 2001, pages = {86-119}} @inproceedings{BodlaenderEG01, author = {Hans L. Bodlaender and Eijkhof, Frank {v}an {d}en and Linda C. van der Gaag}, title = {On the complexity of the {MPA} problem in probabilistic networks}, editor = {Frank van Harmelen}, booktitle = {Proceedings of the 15th European Conference on Artificial Intelligence, ECAI 2001}, publisher = {IOS Press}, address = {Amsterdam}, pages = {675-679}, year = 2002} @inproceedings{BodlaenderKEG01, author = {Hans L. Bodlaender and Arie M. C. A. Koster and Eijkhof, Frank {v}an {d}en and Linda C. van der Gaag}, title = {Pre-processing for triangulation of probabilistic networks}, editor = {Jack S. Breese and Daphne Koller}, booktitle = uai01, publisher = {Morgan Kaufmann}, year = 2001, pages = {32-39}} %Bodlaender 2002 @inproceedings{BodlaenderEG02, author = {Hans L. Bodlaender and Frank van den Eijkhof and Linda C. van der Gaag}, title = {On the complexity of the {MPA} problem in probabilistic networks}, editor = {Frank van Harmelen}, booktitle = ecai2002, publisher = {IOS Press}, year = 2002, pages = {675-679}} @techreport{BodlaenderFT02, author = {Hans L. Bodlaender and Michael R. Fellows and Dimitrios M. Thilikos}, title = {Derivation of algorithms for cutwidth and related graph layout problems}, type= {Technical Report}, year = 2002, number = {UU-CS-2002-032}, institution = {Institute of Information and Computing Sciences, Utrecht University}, address = {Utrecht, The Netherlands}} @article{BodlaenderF02, author = {Hans L. Bodlaender and Fedor V. Fomin}, title = {Approximation of pathwidth of outerplanar graphs}, journal = ja, volume = 43, year = 2002, pages = {190-200}} %Bodlaender 2003 @article{Bodlaender2003, author = {Hans L. Bodlaender}, title = {Necessary edges in $k$-chordalizations of graphs}, journal = jco, volume = 7, year = 2003, pages = {283-290}} @article{BodlaenderR03, author = {Hans L. Bodlaender and Udi Rotics}, title = {Computing the treewidth and the minimum fill-in with the modular decomposition}, journal = alg, volume = 36, year = 2003, pages = {375-408}} %Bodlaender 2004 @inproceedings{BodlaenderK04, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {On the {M}aximum {C}ardinality {S}earch lower bound for treewidth}, editor = {J. Hromkovi\u{c} and M. Nagl and B. Westfechtel}, booktitle = wg04, year = 2004, pages = {81-92}, publisher = lncs3353} @misc{BodlaenderK04a, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, note = {Work in progress}, year = 2004} @inproceedings{BodlaenderKW04, author = {Hans L. Bodlaender and Arie M. C. A. Koster and Thomas Wolle}, title = {Contraction and treewidth lower bounds}, editor = {Susanne Albers and Tomasz Radzik}, booktitle = esa04, year = 2004, pages = {628-639}, publisher = lncs3221} @article{BodlaenderKTvL04, author = {Hans L. Bodlaender and Ton Kloks and Richard Tan and Jan {van Leeuwen}}, title = {Approximations for $\lambda$-colorings of graphs}, journal = tcj, volume = 47, year = 2004, pages = {193-204}} @techreport{BodlaenderKW2004vol, author = {Hans L. Bodlaender and Arie M. C. A. Koster and Thomas Wolle}, title = {Contraction and Treewidth Lower Bounds}, institution = {Dept. of Computer Science, Utrecht University}, year = 2004, address = {Utrecht, The Netherlands}, number = {UU-CS-2004-34} } @techreport{BodlaenderW04, author = {Hans L. Bodlaender and Thomas Wolle}, title = {Contraction Degeneracy on Cographs}, institution = {Institute for Information and Computing Sciences, Utrecht University}, address = {Utrecht, The Netherlands}, year = 2004, number = {UU-CS-2004-031}} %Bodlaender 2005 @inproceedings{Bodlaender05, author = {Hans L. Bodlaender}, title = {Discovering treewidth}, editor = {Peter Vojt\'{a}\u{s} and M\'{a}ria Bielikov\'{a} and Bernadette Charron-Bost}, booktitle = sofsem05, year = 2005, publisher = lncs3381, pages = {1-16}} @misc{Bodlaender05a, author = {Hans L. Bodlaender}, year = 2005, note = {Work in progress}} @article{BodlaenderF05, author = {Hans L. Bodlaender and Fedor V. Fomin}, title = {Tree decompositions with small cost}, journal = dam, volume = 145, year = 2004, pages = {143-154}} @article{BodlaenderF05a, author = {Hans L. Bodlaender and Fedor V. Fomin}, title = {Equitable colorings of bounded treewidth graphs}, journal = tcs, volume = 349, year = 2005, pages = {22-30}} @inproceedings{BodlaenderGK05, author = {Hans L. Bodlaender and Alexander Grigoriev and Arie M. C. A. Koster}, title = {Treewidth Lower Bounds with Brambles}, editor = {G. S. Brodal and S. Leonardi}, booktitle = esa05, year = 2005, pages = {391--402}, publisher = lncs3669} @article{BodlaenderKE05, author = {Hans L. Bodlaender and Arie M. C. A. Koster and Eijkhof, Frank {v}an {d}en}, title = {Pre-processing rules for triangulation of probabilistic networks}, journal = {Computational Intelligence}, year = 2005, volume = 21, number = 3, pages = {286-305}} @unpublished{BodlaenderW05, author = {Hans L. Bodlaender and Mark Weyer}, title = {Convex and connected recolourings of trees and graphs of small treewidth}, note = {Unpublished manuscript}, year = 2005} @article{BodlaenderKW05, author = {Hans L. Bodlaender and Arie M. C. A. Koster and Thomas Wolle}, title = {Contraction and treewidth lower bounds}, journal = jgaa, volume = 10, year = 2006, pages = {5-49}} %Bodlaender 2006 @techreport{Bodlaender06, author = {Hans L. Bodlaender}, title = {A cubic kernel for Feedback Vertex Set}, institution = {Department of Information and Computing Sciences, Utrecht University}, address = {Utrecht, The Netherlands}, year = 2006, number = {UU-CS-2006-042}} @inproceedings{Bodlaender06a, author = {Hans L. Bodlaender}, title = {Treewidth: Characterizations, Applications, and Computations}, editor = {Fedor V. Fomin}, booktitle = wg06, year = 2006, pages = {1 - 14}, publisher = lncs4271} @techreport{BodlaenderCCFTM06, author = {Hans L. Bodlaender and Leizhen Cai and Jianer Chen and Michael R. Fellows and Jan Arne Telle and D\'{a}niel Marx}, title = {Open Problems in Parameterized and Exact Computation - {IWPEC} 2006}, institution = {Department of Information and Computing Sciences, Utrecht University}, address = {Utrecht, The Netherlands}, year = 2006, number = {UU-CS-2006-052}} @inproceedings{BodlaenderFKKT06, author = {Hans L. Bodlaender and Fedor V. Fomin and Arie M. C. A. Koster and Dieter Kratsch and Dimitrios M. Thilikos}, title = {On exact algorithms for treewidth}, editor = {Y. Azar and T. Erlebach}, booktitle = esa06, publisher = lncs4168, year = 2006, pages = {672-683}} @techreport{BodlaenderFKKT06a, author = {Hans L. Bodlaender and Fedor V. Fomin and Arie M. C. A. Koster and Dieter Kratsch and Dimitrios M. Thilikos}, title = {On exact algorithms for treewidth}, type = {Technical Report}, institution = {Department of Information and Computing Sciences, Utrecht University}, address = {Utrecht, the Netherlands}, year = 2006, number = {UU-CS-2006-032}} @unpublished{BodlaenderK06, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Treewidth Computations {I}. {U}pper Bounds}, year = 2008, note = {http://www.cs.uu.nl/research/techreps/UU-CS-2008-032.html. To appear in Information and Computation}} @unpublished{BodlaenderK06a, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Treewidth Computations {II}. {L}ower Bounds}, year = 2009, note = {Paper in preparation}} @unpublished{BodlaenderK06b, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Treewidth Computations {III}. {E}xact Algorithms and Preprocessing}, note = {Paper in preparation}, year = 2010} @article{BodlaenderK06c, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Safe separators for treewidth}, journal = dm, volume = 306, year = 2006, pages = {337-350}} @article{BodlaenderWK06, author = {Hans L. Bodlaender and Thomas Wolle and Arie M. C. A. Koster}, title = {Contraction and treewidth lower bounds}, journal = jgaa, volume = 10, year = 2006, pages = {5-49}} %Bodlaender 2007 @inproceedings{Bodlaender07, author = {Hans L. Bodlaender}, title = {A cubic kernel for feedback vertex set}, editor = {W. Thomas and P. Well}, booktitle = stacs07, publisher = lncs4393, year = 2007, pages = {320-331}} @inproceedings{Bodlaender07a, author = {Hans L. Bodlaender}, title = {Treewidth: {S}tructure and Algorithms}, editor = {Giuseppe Prencipe and Shmuel Zaks}, booktitle = {Proceedings of the 14th International Colloquium on Structural Information and Communication Complexity, SIROCCO 2007}, publisher = lncs4474, year = 2007, pages = {11-25}} @inproceedings{BodlaenderFLRRW07, author = {Hans L. Bodlaender and Michael R. Fellows and Michael Langston and Mark Ragan and Frances Rosamond and Mark Weyer}, title = {Quadratic kernelization for convex recoloring of trees}, editor = {G. Lin}, booktitle = cocoon07, publisher = lncs4598, year = 2007, pages = {86-96}} @article{BodlaenderK07, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {On the {M}aximum {C}ardinality {S}earch lower bound for treewidth}, journal = dam, volume = 155, year = 2007, number = 11, pages = {1348-1372}} %Bodlaender 2008 @inproceedings{BodlaenderDFH08, author = {Hans L. Bodlaender and Rodney G. Downey and Michael R. Fellows and Danny Hermelin}, editor = {Luca Aceto and Ivan Damg{\aa}rd and Leslie Ann Goldberg and Magn\'{u}s M. Halld\'{o}rsson and Anna Ing\'{o}lfsd\'{o}ttir and Igor Walukuewics}, title = {On Problems Without Polynomial Kernels (Extended Abstract)}, booktitle = icalp08-1, pages = {563-574}, year = 2008, publisher = lncs5125} @inproceedings{BodlaenderFHMPR08, author = {Hans L. Bodlaender and Michael R. Fellows and Pinar Heggernes and Federico Mancini and Charis Papadopoulos and Frances A. Rosamond}, title = {Clustering with partial information}, editor = {Edward Ochmanski and Jerzy Tyszkiewicz}, booktitle = mfcs08, publisher = lncs5162, pages = {144-155}, year = 2008} @inproceedings{BodlaenderGGH08, author = {Hans L. Bodlaender and Alexander Grigoriev and Nadejda V. Grigorieva and Albert Hendriks}, title = {The Valve Location Problem in Simple Network Topologies}, editor = {Hajo Broersma and Thomas Erlebach and Tom Friedetzky and Dani\"{e}l Paulusma}, booktitle = wg08, publisher = lncs5344, year = 2008, pages = {55-65}} @article{BodlaenderGK08, author = {Hans L. Bodlaender and Alexander Grigoriev and Arie M. C. A. Koster}, title = {Treewidth lower bounds with brambles}, journal = alg, volume = 51, year = 2008, pages = {81-98}} @inproceedings{BodlaenderHV08, author = {Hans L. Bodlaender and Pinar Heggernes and Yngve Villanger}, title = {Faster parameterized algorithms for minimum fill-in}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {282-293}} @article{BodlaenderK08, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Combinatorial optimization on graphs of bounded treewidth}, journal = tcj, volume = 51, number = 3, year = 2008, pages = {255-269}} @inproceedings{BodlaenderP08, author = {Hans L. Bodlaender and Eelko Penninkx}, title = {A linear kernel for planar feedback vertex set}, editor = {Martin Grohe and Rolf Niedermeier}, booktitle = iwpec08, year = 2008, pages = {160-171}, publisher = lncs5018} @inproceedings{BodlaenderPT08, author = {Hans L. Bodlaender and Eelko Penninkx and Richard B. Tan}, title = {A linear kernel for the $k$-disjoint cycle problem on planar graphs}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {294-305}} @techreport{BodlaenderTDL08, author = {Hans L. Bodlaender and Richard B. Tan and Thomas C. van Dijk and Jan van Leeuwen}, title = {Integer Maximum Flow in Wireless Networks with Energy Constraint}, number = {UU-CS-2008-005}, institution = {Department of Information and Computing Sciences, Utrecht University}, year = 2008, address = {Utrecht, The Netherlands}} @techreport{BodlaenderTY08, author = {Hans L. Bodlaender and St\'{e}phan Thomass\'{e} and Anders Yeo}, title = {Analysis of Data Reduction: Transformations give evidence for non-existence of polynomial kernels}, institution = {Department of Information and Computer Sciences, Utrecht University}, address = {Utrecht, the Netherlands}, year = 2008, number = {UU-CS-2008-030}} %Bodlaender 2009 @unpublished{Bodlaender09, author = {Hans L. Bodlaender}, title = {Kernelization: New upper and lower bound techniques}, year = 2009, note = {To appear in Proceedings IWPEC 2009}} @article{BodlaenderDFH09, author = {Hans L. Bodlaender and Rodney G. Downey and Michael R. Fellows and Danny Hermelin}, title = {On problems without polynomial kernels}, journal = jcss, volume = 75, year = 2009, pages = {423-434}} @unpublished{BodlaenderFLPST09, author = {Hans L. Bodlaender and Fedor V. Fomin and Daniel Lokshtanov and Eelko Penninkx and Saket Saurabh and Dimitrios M. Thilikos}, title = {({M}eta) Kernelization}, year = 2009, note = {To appear in Proceedings FOCS 2009}} @techreport{BodlaenderFLPST09a, author = {Hans L. Bodlaender and Fedor V. Fomin and Daniel Lokshtanov and Eelko Penninkx and Saket Saurabh and Dimitrios M. Thilikos}, title = {({M}eta) Kernelization}, institution = {Department of Information and Computer Sciences, Utrecht University}, address = {Utrecht, the Netherlands}, year = 2009, number = {UU-CS-2009-012}} @techreport{BodlaenderKKTV09, author = {Hans L. Bodlaender and Fedor V. Fomin and Arie M. C. A. Koster and Dieter Kratsch and Dimitrios M. Thilikos}, title = {A note on exact algorithms for vertex ordering problems on graphs}, institution = {Department of Information and Computer Sciences, Utrecht University}, address = {Utrecht, the Netherlands}, year = 2009, number = {UU-CS-2009-???}} @unpublished{BodlaenderLP09, author = {Hans L. Bodlaender and Daniel Lokshtanov and Eelko Penninkx}, title = {Planar Capacitated Dominating Set is {$W[1]$}-hard}, year = 2009, note = {In Proceedings IWPEC 2009}} @inproceedings{BodlaenderTY09, author = {Hans L. Bodlaender and St\'{e}phan Thomass\'{e} and Anders Yeo}, title = {Kernel bounds for Disjoint Cycles and Disjoint Paths}, editor = {Amos Fiat and Peter Sanders}, booktitle = esa09, publisher = lncs5757, year = 2009, pages = {635-646}} %Bodlaender 2010 @article{BodlaendervD10, author = {Hans L. Bodlaender and Thomas C. van Dijk}, title = {A cubic kernel for feedback vertex set and loop cutset}, journal = tocs, volume = 46, year = 2010, pages = {566-597}} @article{BodlaenderK10, author = {Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Treewidth Computations {I}. {U}pper Bounds}, journal = ic2, volume = 208, year = 2010, pages = {259-275}} @article{BodlaenderFHMPR10, author = {Hans L. Bodlaender and Michael R. Fellows and Pinar Heggernes and Federico Mancini and Charis Papadopoulos and Frances Rosamond}, title = {Clustering with partial information}, journal = tcs, volume = 411, year = 2010, pages = {1202-1211}} %Boh @article{BohmeKMM09, author = {Thomas B\"{o}hme and Ken-ichi Kawarabayashi and John Maharry and Bojan Mohar}, title = {Linear connectivity forces large complete bipartite minors}, journal = jctb, volume = 99, year = 2009, pages = {557-582}} @article{BohraCR06, author = {Ankur Bohra and L. Sunil Chandran and J. Krishnam Raju}, title = {Boxicity of series-parallel graphs}, journal = dm, volume = 306, year = 2006, pages = {2219-2221}} %Bol @book{Bollobas78, author = {B. Bollob\'{a}s}, title = {Extremal Graph Theory}, publisher = {Academic Press}, address = {London}, year = 1978 } @book{Bollobas85, author = {B. Bollob\'{a}s}, title = {Random Graphs}, address = {London}, publisher = {Academic Press}, year = 1985 } @book{Bollobas98, author = {B\'{e}la Bollob\'{a}s}, title = {Modern Graph Theory}, publisher = {Graduate Texts in Mathematics, Springer}, address = {New York}, year = 1998} %Bon %Bond @book{BondyM76, author = {J. A. Bondy and U. S. R. Murty}, title = {Graph Theory with Applications}, publisher = {American Elsevier, MacMillan}, address = {New York, London}, year = 1976 } %Bone @unpublished{BonetB93, author = {Maria Luisa Bonet and Samuel R. Buss}, title = {The Serial Transitive Closure Problem for Trees}, note = {Manuscript}, year = 1993} %Bons @inproceedings{BonsmaBW03, author = {P. Bonsma and T. Brueggemann and G. Woeginger}, title = {A faster {FPT} algorithm for finding spanning trees with many leaves}, booktitle = mfcs03, publisher = lncs2747, year = 2003, pages = {259-268}} @inproceedings{BonsmaZ08, author = {Paul S. Bonsma and Florian Zickfeld}, title = {Spanning trees with many leaves in graphs without diamonds and blossoms}, editor = {Eduardo Sany Laber and Claudson F. Bornstein and Loana Tito Nogueira and Luerbio Faria}, booktitle = latin08, year = 2008, publisher = lncs4957, pages = {531-543}} %Bonu @article{BonucelliB79, author = {M. A. Bonucelli and D. P. Bovet}, title = {Minimum node disjoint path covering for circular-arc graphs}, journal = ipl, volume = 8, year = 1979, pages = {159-161}} @article{Bonuccelli85, author = {M. A. Bonuccelli}, title = {Dominating sets and domatic number of circular-arc graphs}, journal = dam, volume = 12, year = 1985, pages = {203-213}} %Boo %Booth 1976 @article{BoothL76, author = {Kellogg S. Booth and George S. Lueker}, title = {Testing for the consecutive ones property, interval graphs, and graph planarity using {PQ}-tree algorithms}, journal = jcss, volume = 13, year = 1976, pages = {335-379}} %Booth 1982 @article{BoothJ82, author = {Kellogg S. Booth and J. H. Johnson}, title = {Dominating sets in chordal graphs}, journal = siamjc, volume = 11, year = 1982, pages = {191-199}} %Booth 1993 @article{BoothT93, author = {H. Booth and R. E. Tarjan}, title = {Finding the minimum-cost maximum flow in a series parallel network}, journal = ja, volume = 15, year = 1993, pages = {416-446}} %Booth 1994 @techreport{BoothGLR94, author = {H. Booth and R. Govindran and M. Langston and S. Ramachandramurthi}, title = {Sequential and Parallel Algorithms for {$K_4$} Immersion Testing}, institution = {Department of Computer Science, University of Tennessee}, address = {Knoxville, Tennessee, USA}, month = {2}, year = 1994} %Booth 1999 @article{BoothGLR99, author = {Heather Booth and Rajeev Govindran and Michael A. Langston and Siddharthan Ramachandramurthi}, title = {Fast algorithms for {$K_4$} immersion testing}, journal = ja, volume = 30, year = 1999, pages = {344-378}} %Bor %Borg @book{Borger85, author = {E. B\"{o}rger}, title = {Berechenbarkeit, Komplexit\"{a}t, Logik}, publisher = {Vieweg-Verlag}, address = {Wiesbaden}, year = 1985} %Bori %Borie 1988 @phdthesis{Borie88, author = {Richard B. Borie}, title = {Recursively Constructed Graph Families}, school = {School of Information and Computer Science, Georgia Institute of Technology}, year = 1988 } @unpublished{BoriePT88, author = {Richard B. Borie and R. Gary Parker and Craig A. Tovey}, title = {Unambiguous Factorization of Recursive Graph Classes}, year = 1988, note = {Manuscript}} %Borie 1991 @article{BoriePT91, author = {Richard B. Borie and R. Gary Parker and Craig A. Tovey}, title = {Deterministic decomposition of recursive graph classes}, journal = sjdm, volume = 4, year = 1991, pages = {481 - 501}} %Borie 1992 @article{BoriePT92, author = {Richard B. Borie and R. Gary Parker and Craig A. Tovey}, title = {Automatic generation of linear-time algorithms from predicate calculus descriptions of problems on recursively constructed graph families}, journal = alg, volume = 7, year = 1992, pages = {555-581}} %Borie 1993 @article{BorieG93, author = {Richard Borie and Arobinda Gupta}, title = {Balanced decompositions for partial $k$-trees}, journal = cn, volume = 98, year = 1993, pages = {33-38}} @unpublished{BorieG93a, author = {Richard Borie and Arobinda Gupta}, title = {Balanced $2k$-Terminal Tree Decompositions for $k$-Terminal Recursive Graph Classes}, year = 1993, note = {Manuscript}} %Borie 1995 @article{Borie95, author = {Richard B. Borie}, title = {Generation of polynomial-time algorithms for some optimization problems on tree-decomposable graphs}, journal = alg, volume = 14, year = 1995, pages = {123-137}} @article{BoriePT08, author = {R. B. Borie and R. G. Parker and C. A. Tovey}, title = {Solving problems on recursively constructed graphs}, journal = acmcs, volume = 41, year = 2008, number = 4} %Born @article{BornsteinV04, author = {Claudson F. Bornstein and Santosh Vempala}, title = {Flow metrics}, journal = tcs, volume = 321, year = 2004, pages = {13-24}} %Boro @article{BorowieckiS07, author = {M. Borowiecki and E. Sidorowicz}, title = {Generalised game colouring of graphs}, journal = dm, volume = 307, year = 2007, pages = {1225-1231}} %Bou %Bouchitte 1998 @inproceedings{BouchitteT98, author = {Vincent Bouchitt{\'{e}} and Ioan Todinca}, title = {Minimal triangulations for graphs with ``few'' minimal separators}, booktitle = esa98, publisher = lncs1461, pages = {344-355}, year = 1998} %Bouchitte 1999 @inproceedings{BouchitteT99, author = {Vincent Bouchitt{\'{e}} and Ioan Todinca}, title = {Treewidth and minimum fill-in of weakly triangulated graphs}, booktitle = stacs99, publisher = lncs1563, pages = {197-208}, year = 1999} %Bouchitte 2000 @inproceedings{BouchitteT00, author = {Vincent Bouchitt{\'{e}} and Ioan Todinca}, title = {Listing all potential maximal cliques of a graph}, editor = {H. Reidel and S. Tison}, booktitle = stacs00, publisher = lncs1770, pages = {503-515}, year = 2000} %Bouchitte 2001 @article{BouchitteT01a, author = {Vincent Bouchitt{\'{e}} and Ioan Todinca}, title = {Treewidth and minimum fill-in: {G}rouping the minimal separators}, journal = siamjc, volume = 31, year = 2001, pages = {212-232}} %Bouchitte 2002 @article{BouchitteT02, author = {Vincent Bouchitt{\'{e}} and Ioan Todinca}, title = {Listing all potential maximal cliques of a graph}, journal = tcs, volume = 276, year = 2002, pages = {17-32}} %Bouchitte 2003 @article{BouchitteT03, author = {Vincent Bouchitt{\'{e}} and Ioan Todinca}, title = {Approximating the treewidth of {AT}-free graphs}, journal = dam, volume = 131, pages = {11-37}, year = 2003} @article{BouchitteMT03, author = {V. Bouchitt{\'{e}} and F. Mazoit and I. Todinca}, title = {Chordal embeddings of planar graphs}, journal = dm, volume = 273, year = 2003, pages = {85-102}} %Bouchitte 2004 @article{BouchitteKMT04, author = {V. Bouchitt{\'{e}} and Dieter Kratsch and Haiko M\"{u}ller and Ioan Todinca}, title = {On treewidth approximations}, journal = dam, volume = 136, year = 2004, pages = {183-196}} %Bous @inproceedings{BousquetDTY09, author = {Nicolas Bousquet and Jean Daligault and St\'{e}phan Thomass\'{e} and Anders Yeo}, title = {A polynomial kernel for multicut in trees}, editor = {Susanne Albers and Jean-Yves Marion}, series = {Dagstuhl Seminar Proceedings}, publisher = {Leibniz-Zentrum f\"{u}r Informatik}, address = {Schloss Dagstuhl, Germany}, volume = {09001}, booktitle = stacs09, pages = {183-194}, year = 2009} %Boy @article{BoyarK87, author = {J. Boyar and H. Karloff}, title = {Coloring planar graphs in parallel}, journal = ja, year = 1987, volume = 8, pages = {470-479}} %Br %Bra @techreport{Brandenburg88, author = {Franz J. Brandenburg}, title = {Nice Drawings of Graphs and of Trees are Computationally hard}, number = {MIP 8820}, institution = {University Passau}, year = 1988 } %Brandstadt 1987 @article{Brandstadt87, author = {Andreas Brandst\"{a}dt}, title = {The computational complexity of feedback vertex set, {H}amiltonian circuit, dominating set, {S}teiner tree, and bandwidth on special perfect graphs}, journal = {J. Inf. Process. Cybern. EIK}, year = 1987, pages = {471-477}, volume = 23 } @article{BrandstadtK87, author = {Andreas Brandst\"{a}dt and Dieter Kratsch}, title = {On domination problems for permutation and other graphs}, journal = tcs, volume = 54, year = 1987, pages = {181-198}} %Brandstadt 1991 @article{Brandstadt91, author = {Andreas Brandst\"{a}dt}, title = {Classes of bipartite graphs related to chordal graphs}, journal = dam, volume = 32, year = 1991, pages = {51-60}} @techreport{Brandstadt91a, author = {Andreas Brandst\"{a}dt}, title = {Special Graph Classes --- A Survey (preliminary version)}, institution = {University of Duisburg}, year = 1991} %Brandstadt 1993 @inproceedings{Brandstadt93, author = {Andreas Brandst\"{a}dt}, title = {On improved time bounds for permutation graph classes}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {1-10}} @techreport{BrandstadtDCV93, author = {Andreas Brandst\"{a}dt and Feodor F. Dragan and Victor D. Chepoi and Vitaly I. Voloshin}, title = {Dually chordal graphs}, institution = {University of Duisburg}, number = {SM-DU-225}, year = 1993} %Brandstadt 1999 @book{BrandstadtLS99, author = {Andreas Brandst\"{a}dt and {Van Bang} Le and Jeremy P. Spinrad}, title = {Graph Classes. {A} Survey}, year = 1999, series = {SIAM Monographs on Discrete Mathematics and Applications}, publisher = {SIAM}, address = {Philadelphia, USA}} %Brandstadt 2002 @inproceedings{BrandstadtDL02, author = {Andreas Brands\"{a}dt and Feodor F. Dragan and Ho\`{a}ng-Oanh Le and Raffaele Mosca}, title = {New graph classes of bounded clique-width}, editor = {Lud\u{e}k Ku\u{c}era}, booktitle = wg02, publisher = lncs2573, year = 2002, pages = {57-67}} %Brandstadt 2003 @article{BrandstadtL03, author = {Andreas Brands\"{a}dt and Vadim Lozin}, title = {On the linear structure and clique-width of bipartite permutation graphs}, journal = arscomb, year = 2003, volume = 67, pages = {273-281}} %Brandstadt 2004 @article{BrandstadtLM04, author = {Andreas Brandst\"{a}dt and Ho\`{a}ng-Oanh Le and Raffaele Mosca}, title = {Chordal co-gem-free and (${P_5}$,gem)-free graphs have bounded clique-width}, journal = dam, volume = 145, year = 2004, pages = {232-241}} @article{BrandstadtDLL04, author = {Andreas Brandst\"{a}dt and F. F. Dragan and Ho\`{a}ng-Oanh Le and V. B. Le}, title = {Tree spanners on chordal graphs: complexity and algorithms}, journal = tcs, volume = 310, year = 2004, pages = {329-354}} %Brandstadt 2006 @article{BrandstadtB06, author = {Andreas Brandst\"{a}dt and Van Bang Le}, title = {Structure and linear time recognition of 3-leaf powers}, journal = ipl, volume = 98, year = 2006, pages = {133-138}} %Brandstadt 2008, @article{BrandstadtH08, author = {Andreas Brandst\"{a}dt and Ch{\'{\i}}nh T. Ho\'{a}ng}, title = {On clique separators, nearly chordal graphs, and the Maximum Weight Stable Set Problem}, journal = tcs, volume = 389, year = 2008, pages = {295-306}} @article{BrandstadtH08a, author = {Andreas Brandst\"{a}dt and Ch{\'{\i}}nh T. Ho\'{a}ng}, title = {Maximum induced matchings for chordal graphs in linear time}, journal = alg, volume = 52, year = 2008, pages = {440-447}} %Brandstadt 2009 @article{BrandstadtB09, author = {Andreas Brandst\"{a}dt and Van {Bang Le}}, title = {Simplicial powers of graphs}, journal = tcs, volume = 410, year = 2009, pages = {5443-5454}} %Bre @inproceedings{BretscherCHP2003, author = {Anna Bretscher and Derek Corneil and Michel Habib and Christophe Paul}, title = {A simple linear time {LexBFS} cograph recognition algorithm}, editor = {Hans L. Bodlaender}, booktitle = wg03, publisher = lncs2880, year = 2003, pages = {119-130}} %Bri @article{BrinkmannKM01, author = {Gunnar Brinkmann and Jack H. Koolen and V. Moulton}, title = {On the hyperbolicity of chordal graphs}, journal = {Annals of Combinatorics}, volume = 5, year = 2001, pages = {61-69}} %Bro %Broersma 1997 @inproceedings{BroersmaDK97a, author = {H. Broersma and Elias Dahlhaus and Ton Kloks}, title = {Algorithms for the treewidth and minimum fill-in of {HHD}-free graphs}, editor = {Rolf H. M\"{o}hring}, booktitle = wg97, publisher = lncs1335, pages = {109-117}, year = 1997} %Broersma 1998 @inproceedings{BroersmaKKM98, author = {Hajo Broersma and Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {A generalization of {AT}-free graphs and a generic algorithm for solving treewidth, minimum fill-in, and vertex ranking}, editor = {Juraj Hromkovic and Ondrej S\'{y}kora}, booktitle = wg98, publisher = lncs1517, year = 1998, pages = {88-99}} %Broersma 1999 @article{BroersmaKKM99, author = {Hajo Broersma and Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {Independent sets in asteroidal triple-free graphs}, journal = sjdm, volume = 12, year = 1999, pages = {276-287}} %Broersma 2000 @article{BroersmaDK00, author = {H. Broersma and Elias Dahlhaus and Ton Kloks}, title = {A linear time algorithm for minimum fill in and tree width for distance hereditary graphs}, journal = dam, volume = 99, year = 2000, pages = {367-400}} %Broersma 2002 @article{BroersmaKKM02, author = {Hajo Broersma and Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {A generalization of {AT}-free graphs and a generic algorithm for solving triangulation problems}, journal = alg, volume = 32, year = 2002, pages = {594-610}} %Broersma 2007 @article{BroersmaL07, author = {Hajo Broersma and Xueliang Li}, title = {On the complexity of dominating set problems related to the minimum all-ones problem}, journal = tcs, volume = 385, year = 2007, pages = {60-70}} %Broersma 2009 @article{BroersmaJP09, author = {Hajo Broersma and Matthew Johnson and Dani\"{e}l Paulusma}, title = {Upper bounds and algorithms for parallel knock-out numbers}, journal = tcs, volume = 410, year = 2009, pages = {1319-1327}} %Brown @article{BrownFL89, author = {D. J. Brown and Michael R. Fellows and Michael A. Langston}, title = {Polynomial-time self-reducibility: Theoretical motivations and practical results}, journal = ijcm, volume = 31, year = 1989, pages = {1-9}} %Bru @article{BruglieriME04, author = {Maurizio Bruglieri and Francesco Maffioli and Matthias Ehrgott}, title = {Cardinality constrained minimum cut problems: complexity and algorithms}, journal = dam, volume = 137, year = 2004, pages = {311-341}} @article{BruglieriEHM06, author = {Maurizio Bruglieri and Matthias Ehrgott and Horst W. Hamacher and Francesco Maffioli}, title = {An annotated bibliography of combinatorial optimization problems with fixed cardinality constraints}, journal = dam, volume = 154, year = 2006, pages = {1344-1357}} @article{BrunoW70, author = {John Bruno and Louis Weinberg}, title = {A Constructive Graph-Theoretic Solution of the {S}hannon Switching Game}, journal = ieeetct, volume = {CT-17}, year = 1970, pages = {74-81}} %Bry @inproceedings{BryantFKL87, author = {R. L. Bryant and Michael R. Fellows and N. G. Kinnersley and Michael A. Langston}, title = {On finding obstruction sets and polynomial-time algorithms for gate matrix layout}, booktitle = {Proceedings of the 25th Allerton Conference on Communication, Control and Computing}, year = 1987, pages = {397-398}} @article{BryantL06, author = {David Bryant and Jens Lagergren}, title = {Compatibility of unrooted phylogenetic trees is {FPT}}, journal = tcs, volume = 351, year = 2006, pages = {296-302}} %Bu %Bub @article{BubeckB09, author = {Uwe Bubeck and Hans {Kleine B\"{u}ning}}, title = {A new {3-CNF} transformation by parallel-serial graphs}, journal = ipl, volume = 109, year = 2009, pages = {376-379}} %Buc @article{Buchi60, author = {J. R. B\"{u}chi}, title = {Weak second order logic and finite automata}, journal = {S. Math. Grundlagen Math.}, volume = 5, year = 1960, pages = {66-92}} %Bue @article{BuerM83, author = {Hermann Buer and Rolf H. M{\"{o}}hring}, title = {A fast algorithm for the decomposition of graphs and posets}, journal = mor, volume = 8, number = 2, year = 1983, pages = {170-184}} %Bui @article{BuiXuanHLM09, author = {B.-M. Bui-Xuan and M. Habib and V. Limouzy and F. {de Montgolfier}}, title = {Algorithmic aspects of a general modular decomposition theory}, journal = dam, volume = 157, year = 2009, pages = {1993-2009}} @article{BuiXuanTV10, author = {Binh-Minh Bui-Xuan and Jan Arne Telle and Martin Vatshelle}, title = {$H$-join decomposable graphs and algorithms with runtime single exponential in rankwidth}, journal = dam, volume = 158, year = 2010, pages = {809-819}} %Bul @article{BultW08, author = {Fokko J. {van de Bult} and Gerhard J. Woeginger}, title = {The problem of the moody chess players}, journal = ipl, volume = 108, pages = {336-337}, year = 2008} %Bun @article{Buneman74, author = {P. Buneman}, title = {A characterization of rigid circuit graphs}, journal = dm, volume = 9, year = 1974, pages = {205-212}} %Bur @inproceedings{BurgstallerBS04, author = {Bernd Burgstaller and Johann Blieberger and Bernhard Scholz}, title = {On the Tree Width of {A}da Programs}, booktitle = {Ada-Europe 2004}, year = 2004, pages = {78-90}} @article{Burke10, author = {Edmund K. Burke and Jakub Mare\u{c}ek and Andrew J. Parkes and Hana Rudov\'{a}}, title = {Decomposition, reformulation, and diving in university course timetabling}, journal = cor, volume = 37, year = 2010, pages = {582-597}} @inproceedings{BurrageEFLMR06, author = {Kevin Burrage and Vladimir Estivill-Castro and Michael R. Fellows and Michael A. Langston and Shev Mac and Frances A. Rosamond}, title = {The undirected feedback vertex set problem has a poly($k$) kernel}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {192-202}} %Bus @book{BusackerS65, author = {R. G. Busacker and U. S. R. Murty}, title = {Finite Graphs and Networks: an Introduction with Applications}, publisher = {McGraw-Hill}, address = {New York}, year = 1965 } @unpublished{BussFM89, author = {S. R. Buss and Michael R. Fellows and Burkhard Monien}, title = {Linear-Time Algorithms for Some Well-Known Fixed Parameter Problems}, note = {Manuscript, Department of Computer Science, University of Idaho}, year = 1989 } @article{BussG93, author = {Jonathan F. Buss and Judy Goldsmith}, title = {Nondeterminism within {P}}, journal = siamjc, volume = 22, year = 1993, pages = {560-572}} %By %Byl @article{BylanderATJ91, author = {T. Bylander and D. Allemang and M.C. Tanner and J.R. Josephson}, title = {The computational complexity of abduction}, journal = artint, volume = 49, pages = {25-60}, year = 1991} %Bys @article{Byskov04, author = {Jesper Makholm Byskov}, title = {Enumerating maximal independent sets with applications to graph coloring}, journal = orl, year = 2004, pages = {547-556}, volume = 32} @phdthesis{Byskov04a, author = {Jesper Makholm Byskov}, title = {Exact Algorithms for Graph Colouring and Exact Satisfiability}, type = {PhD thesis}, school = {University of Aarhus}, address = {Aarhus, Denmark}, year = {August, 2005}} %C %Ca %Cai %Cai 1989 @unpublished{CaiC89, author = {Leizhen Cai and Derek G. Corneil}, title = {Cycle Double Covers of Line Graphs}, year = 1989, note = {Manuscript}} @unpublished{CaiE89, author = {Leizhen Cai and John A. Ellis}, title = {Linear time algorithms for edge colouring line graphs of trees and of unicyclic graphs}, year = 1989, note = {Manuscript}} @unpublished{CaiE89a, author = {Leizhen Cai and John A. Ellis}, title = {{NP}-completeness of edge coloring some restricted graphs}, year = 1989, note = {Manuscript}} %Cai 1993 @techreport{CaiCDF93, author = {L. Cai and J. Chen and Rodney G. Downey and Michael R. Fellows}, title = {The parameterized complexity of short computations and factorizations}, institution = {Department of Computer Science, University of Victoria}, type = {Technical Report}, year = 1993, month = {7}} %Cai 1996 @article{Cai96, author = {Leizhen Cai}, title = {Fixed-parameter tractability of graph modification problems for heriditary properties}, journal = ipl, volume = 58, year = 1996, pages = {171-176}} %Cai 1997 @article{CaiC97, author = {Liming Cai and Jianer Chen}, title = {On Fixed-Parameter Tractability and Approximability of {NP} Optimization Problems}, journal = jcss, volume = 54, year = 1997, pages = {465-474}} @article{CaiCDF97, author = {L. Cai and J. Chen and R. G. Downey and M. R. Fellows}, title = {Advice classes of parameterized tractability}, journal = apal, volume = 84, year = 1997, pages = {119-138}} %Cai 2000 @unpublished{Cai00, author = {Leizhen Cai}, title = {The complexity of colouring parameterized graphs}, year = 2000, note = {Manuscript}} %Cai 2001 @article{CaiZ01, author = {Leizhen Cai and Xuding Zhu}, title = {Game chromatic index of $k$-degenerate graphs}, journal = jgt, volume = 36, pages = {144-155}, year = 2001} @article{CaiJ03, author = {Leitzhen Cai and D. Juedes}, title = {On the existence of subexponential parameterized algorithms}, journal = jcss, volume = 67, year = 2003, pages = {789-807}} %Cai 2006 @unpublished{Cai06, author = {Leizhen Cai}, title = {Parameterized complexity of cardinality constrained optimization problems}, note = {Manuscript}, year = {2006}} @inproceedings{CaiCC06, author = {Leizhen Cai and S. M. Chan and S. O. Chan}, title = {Random separation: a new method for solving fixed-cardinality optimization problems}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {239-250}} %Cai 2009 @article{Cai09, author = {Xuan Cai}, title = {Linear kernelizations for restricted {3-Hitting Set} problems}, journal = ipl, volume = 109, year = 2009, pages = {730-738}} %Cai 2010 @article{CaiH10, author = {Liming Cai and Xiuzhen Huang}, title = {Fixed-parameter approximation: Conceptual framework and approximability results}, journal = alg, volume = 57, year = 2010, pages = {398-412}} %Cal @article{CalamoneriPP06, author = {Tiziana Calamoneri and Andrzej Pelc and Rossella Petreschi}, title = {Labeling trees with a condition at distance two}, journal = dm, volume = 306, pages = {1534-1539}, year = 2006} %Can @inproceedings{CanoM94, author = {A. Cano and S. Moral}, title = {Heuristic algorithms for the triangulation of graphs}, editor = {B. Bouchon-Meunier and R. R. Yager and I. A. Zadeh}, booktitle = {Advances in Intelligent Computing, Selected Papers from the 5th International Conference on Precessing and Management of Uncertainty in Knowledge-Based Systems IPMU94}, year = 1994, pages = {98-107}, publisher = lncs945} %Car @article{CaragiannisFKP06, author = {Ioannis Caragiannis and Aleksei V. Fishkin and Christos Kaklamanis and Evi Papaioannou}, title = {Randomized on-line algorithms and lower bounds for computing large independent sets in disk graphs}, journal = dam, volume = 155, pages = {119-136}, year = 2007} %Cas @article{CastelinoHS96, author = {D. Castelino and S. Hurley and N. M. Stephens}, title = {A tabu search algorithm for frequency assignment}, journal = aor, volume = 63, pages = {301-319}, year = 1996} %Cat @inproceedings{CattellD94, author = {Kevin Cattell and Michael J. Dinneen}, title = {A characterization of graphs with vertex cover up to five}, booktitle = {Proceedings International Workshop on Orders, Algorithms, and Applications, ORDAL'94}, publisher = lncs831, year = 1994, pages = {86-99}} @article{CattellDF96, author = {Kevin Cattell and Michael J. Dinneen and Michael R. Fellows}, title = {A simple linear-time algorithm for finding path-decompositions of small width}, journal = ipl, volume = 57, year = 1996, pages = {197-204}} @inproceedings{CattellDF95, author = {Kevin Cattell and Michael J. Dinneen and Michael R. Fellows}, title = {Obstructions to Within a Few Vertices or Edges of Acyclic}, editor = {Selim G. Akl and Frank K. H. A. Dehne and J\"{o}rg-R\"{u}diger Sack and Nicola Santoro}, booktitle = wads95, pages = {415-427}, publisher = lncs955, year = 1995} @article{CattellDDFL00, author = {Kevin Cattell and Michael J. Dinneen and Rodney G. Downey and Michael R. Fellows and Michael A. Langston}, title = {On computing graph minor obstruction sets}, journal = tcs, volume = 233, year = 2000, pages = {107-127}} %Ce %Cer @article{CeraDGV07, author = {M. Cera and A. Dianez and P. Garcia-Vazquez and J.C. Valenzuela}, title = {Graphs without minor complete subgraphs}, journal = dm, volume = 307, year = 2007, pages = {1276-1284}} %Ces @article{Cesati02, author = {M. Cesati}, title = {Perfect code is {$W[1]$}-complete}, journal = ipl, volume = 81, year = 2002, pages = {163-168}} %Ch %Cha %Chan @inproceedings{ChanD06, author = {Hei Chan and Adnan Darwiche}, title = {On the robustness of most probable explanations}, booktitle = uai06, year = 2006, pages = {63-71}, publisher = {AUAI Press}} @article{ChandraKS81, author = {A. K. Chandra and D. C. Kozen and L. J. Stockmeyer}, title = {Alternation}, journal = jacm, volume = 28, pages = {114-133}, year = 1981 } @article{ChandranS03, author = {L. {Sunil Chandran} and C. R. Subramanian}, title = {A spectral lower bound for the treewidth of a graph and its consequences}, journal = ipl, volume = 87, year = 2003, pages = {195-200}} @article{ChandranS05, author = {L. {Sunil Chandran} and C. R. Subramanian}, title = {Girth and treewidth}, journal = jctb, volume = 93, year = 2005, pages = {23-32}} @article{ChandraG06, author = {L. {Sunil Chandran} and Fabrizio Grandoni}, title = {A linear time algorithm to list the minimal separators of chordal graphs}, journal = dm, volume = 306, pages = {351-358}, year = 2006} @article{ChandranK06, author = {L. {Sunil Chandran} and T. Kavitha}, title = {The treewidth and pathwidth of hypercubes}, journal = dm, volume = 306, pages = {359-365}, year = 2006} @article{ChandranS07, author = {L. {Sunil Chandran} and Naveen Sivadasan}, title = {Boxicity and treewidth}, journal = jctb, volume = 97, pages = {733-744}, year = 2007} %Chandrasekharan 1980 @article{ChandrasekharanT80, author = {R. Chandrasekharan and A. Tamir}, title = {An {$O((n \log p)^2 )$ } Algorithm for the Continuous $p$-Center Problem on a Tree}, journal = sjadm, volume = 1, pages = {370-375}, year = 1980 } %Chandrasekharan 1982 @article{ChandrasekharanT82, author = {R. Chandrasekharan and A. Tamir}, title = {Polynomially Bounded Algorithms for Locating $p$-Centers on a Tree}, journal = mp, volume = 22, year = 1982, pages = {304-315}} %Chandrasekharan 1988 @article{ChandrasekharanI88, author = {Narayanan Chandrasekharan and S. Sitharama Iyengar}, title = {{NC} algorithms for recognizing chordal graphs and $k$-Trees}, journal = ietc, volume = 37, year = 1988, pages = {1178-1183}} @article{ChandrasekhasanLI88, author = {Narayanan Chandrasekharan and R. Laskar and S. S. Iyengar}, title = {Maximal clique separators of chordal graphs}, journal = cn, volume = 62, year = 1988, pages = {203-215}} @inproceedings{ChandrasekharanH88, author = {Narayanan Chandrasekharan and S. T. Hedetniemi}, title = {Fast parallel algorithms for tree decomposing and parsing partial $k$-Trees}, booktitle = {Proceedings of the 26th Annual Allerton Conference on Communication, Control, and Computing}, year = 1988, pages={283-292}, address = {Urbana-Champaign, Illinois}} %Chandrasekharan 1989 @phdthesis{Chandrasekharan89, author = {Narayanan Chandrasekharan}, title = {Fast Parallel Algorithms and Enumeration Techniques for Partial $k$-Trees}, school = {Clemson University}, year = 1989} %Chandrasekharan 1990 @article{Chandrasekharan90a, author = {Narayanan Chandrasekharan}, title = {Isomorphism testing of $k$-trees is in {NC}, for fixed $k$}, journal = ipl, volume = 34, year = 1990, pages = {283-287}} %Chang @article{ChangD87, author = {K. Chang and D. Du}, title = {Efficient algorithms for the layer assignment problem}, journal = {IEEE Trans CAD}, volume = 6, year = 1987, pages = {67-78}} @article{ChangK96, author = {G. J. Chang and D. Kuo}, title = {The {$L(2,1)$}-labelling problem on graphs}, journal = sjdm, volume = 9, year = 1996, pages = {309-316}} @article{Chang98, author = {M.-S. Chang}, title = {Efficient algorithms for the domination problems on interval and circular arc-graphs}, journal = siamjc, volume = 27, year = 1998, pages = {1671-1694}} @article{ChangKKLY00, author = {G. J. Chang and W.-T. Ke and D. Kuo and D.D.-F. Liu and R. K. Yeh}, title = {On {$L(d,1)$}-labelings of graphs}, journal = dm, volume = 220, pages = {57-66}, year = 2000} @inproceedings{ChangT00, author = {J. Chang and L. Tassiulas}, title = {Fast Approximate Algorithms for Maximum Lifetime Routing in Wireless Ad-hoc Networks}, booktitle = {Proceedings Networking 2000}, year = 2000, pages = {702-713}} @article{ChangL03, author = {G. J. Chang and C. Lu}, title = {Distance-two labelings of graphs}, journal = ejcom, year = 2003, volume = 24, pages = {53-58}} @article{ChangT04, author = {J. Chang and L. Tassiulas}, title = {Maximum lifetime routing in wireless sensor networks}, journal = {IEEE/ACM Transaction on Networking}, volume = 12, number = 4, year = 2004, pages = {609-619}} %Chap @inproceedings{ChapelleMT09, author = {Mathieu Chapelle and Fr{\'e}d{\'e}ric Mazoit and Ioan Todinca}, title = {Constructing brambles}, editor = {Rastislav Kr{\'a}lovic and Damian Niwinski}, booktitle = mfcs09, year = 2009, publisher = lncs5734, pages = {223-234}} %Char @article{CharniakS94, author = {Eugene Charniak and Solomon Eyal Shimony}, title = {Cost-based abduction and {MAP} explanation}, journal = ai, volume = 66, year = 1994, pages = {345-374}} %Chau @inproceedings{ChaudhuriZ95, author = {Shiva Chaudhuri and Christos D. Zaroliagis}, title = {Optimal parallel shortest paths in small treewidth digraphs}, booktitle = esa95, editor = {Paul Spirakis}, publisher = lncs979, year = 1995, pages = {31-45}} @article{ChaudhuriZ98, author = {Shiva Chaudhuri and Christos D. Zaroliagis}, title = {Shortest paths in digraphs of small treewidth. {P}art {II}: {O}ptimal parallel algorithms}, journal = tcs, volume = 203, year = 1998, pages = {205-223}} @article{ChaudhuriZ00, author = {Shiva Chaudhuri and Christos D. Zaroliagis}, title = {Shortest paths in digraphs of small treewidth. {P}art {I}: {S}equential Algorithms}, journal = alg, volume = 27, year = 2000, pages = {212-226}} @article{ChavezT98, author = {J. D. Chavez and R. Trapp}, title = {The cyclic cutwidth of trees}, journal = dam, volume = 87, year = 1998, pages = {25-32}} %Che %Chek @article{ChekuriK05, author = {C. Chekuri and S. Khanna}, title = {A Polynomial Time Approximation Scheme for the Multiple Knapsack Problem}, journal = siamjc, volume = 35, number = 3, year = 2005, pages = {713-728}} %Chen 1988 @article{ChenKS88, author = {G. H. Chen and M. T. Kuo and J. P. Sheu}, title = {An optimal time algorithm for finding a maximum weight independent set in a tree}, journal = bit, year = 1988 } %Chen 1992 @inproceedings{ChenL92, author = {Maw-Hwa Chen and Sing-Ling Lee}, title = {Linear time algorithms for $k$-cutwidth problem}, editor = {Toshihide Ibaraki and Yasuyoshi Inagaki and Kazuo Iwama and Takao Nishizeki and Masafumi Yamashita}, booktitle = isaac92, year = 1992, publisher = lncs650, pages = {21-30}} %Chen 1993 @inproceedings{Chen93, author = {J. Chen}, title = {A linear time algorithm for isomorphism of graphs of bounded average genus}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {103-113}} %Chen 1995 @article{ChenMS95, author = {Guantao Chen and Lisa R. Markus and R. H. Schelp}, title = {Vertex Disjoint Cycles for Star Free Graphs}, journal = {Australasian Journal of Combinatorics}, volume = 11, year = 1995, pages = {157-167}} %Chen 1998 @article{Chen98, author = {Z.-Z. Chen}, title = {Efficient approximation schemes for maximization problems on {$K_{3,3}$}-free or {$K_5$}-free graphs}, journal = ja, volume = 26, year = 1998, pages = {166-187}} %Chen 2001 @article{Chen01, author = {Z.-Z. Chen}, title = {Approximation algorithms for independent sets in map graphs}, journal = ja, volume = 41, pages = {20-40}, year = 2001} @inproceedings{ChenFJK01, author = {Jianer Chen and Donald K. Friesen and Weijia Jia and Iyad Kanj}, title = {Using nondeterminism to design deterministic algorithms}, booktitle = fsttcs01, year = 2001, pages = {120-131}, publisher = lncs2245} @article{ChenKJ01, author = {J. Chen and I. A. Kanj and W. Jia}, title = {Vertex cover: Further observations and further improvements}, journal = ja, volume = 41, year = 2001, pages = {280-301}} %Chen 2003 @inproceedings{ChenKPSX03, author = {Jianer Chen and Iyad A. Kanj and Ljubomir Perkovic and Eric Sedgwick and Ge Xia}, title = {Genus characterizes the complexity of graph problems: Some tight results}, editor = {Jos Baeten and Jan Karel Lenstra and Joachim Parrow and Gerhard J. Woeginger}, booktitle = icalp03, publisher = lncs2719, year = 2003, pages = {845-856}} %Chen 2004 @inproceedings{Chen04, author = {Hubie Chen}, editor = {Ramon L\'{o}pez {de M\'{a}ntaras} and Lorenza Saitta}, title = {Quantified Constraint Satisfaction and Bounded Treewidth}, booktitle = ecai2004, pages = {161-165}, year = 2004} @inproceedings{ChenCFHJKX04, author = {J. Chen and B. Chor and M. Fellows and X. Huang and D. Juedes and I. Kanj and G. Xia}, title= {Tight Lower Bounds for Certain Parameterized {N}{P}-hard Problems}, booktitle={Proceedings of 19th Annual IEEE Conference on Computational Complexity}, year = {2004}, pages = {150--160}, location = {Amherst, Massachusetts, United States}} %Chen 2005 @article{Chen05, author = {J.-E. Chen}, title = {Parameterized computation and complexity: A new approach dealing with {NP}-hardness}, journal = jcss, volume = 20, pages = {18-37}, year = 2005} @article{ChenCMXJKX05, author = {Jianer Chen and Benny Chor and Mike Fellows and Xiuzhen Huang and David W. Juedes and Iyad A. Kanj and Ge Xia}, title = {Tight lower bounds for certain parameterized {NP}-hard problems}, journal = ic2, volume = {201}, year = {2005}, pages = {216-231}} %Chen 2006 @article{ChenHS06, author = {Xujin Chen and Xiaodong Hu and Tianping Shuai}, title = {Inapproximability and approximability of maximal tree routing and coloring}, journal = jco, volume = 11, year = 2006, pages = {219-229}} @article{ChenHKX06, author = {Jianer Chen and X. Huang and I. A. Kanj and G. Xia}, title = {On the computational hardness based on linear {FPT}-reductions}, journal = jco, volume = 11, year = 2006, pages = {231-247}} @article{ChenHKX06a, author = {Jianer Chen and X. Huang and I. A. Kanj and G. Xia}, title = {Strong computational lower bounds via parameterized complexity}, journal = jcss, volume = 72, year = 2006, pages = {1346-1367}} %Chen 2007 @article{ChenFKX07, author = {Jianer Chen and Henning Fernau and Iyad A. Kanj and Ge Xia}, title = {Parametric duality and kernelization: Lower bounds and upper bounds on kernel size}, journal = siamjc, volume = 37, year = 2007, pages = {1077-1106}} @article{ChenHKX07, author = {Jianer Chen and Xiuzhen Huang and Iyad A. Kanj and Ge Xia}, title = {Polynomial time approximation schemes and parameterized complexity}, journal = dam, volume = 155, year = 2007, pages = {180-193}} @article{ChenLLLW07, author = {Mingxia Chen and Jianbo Li and Jianping Li and Weidong Li and Lusheng Wang}, title = {Some approximation algorithms for the clique partition problem in weighted interval graphs}, journal = tcs, volume = 381, year = 2007, pages = {124-133}} @inproceedings{ChenLSZ07, author = {Jianer Chen and Songjian Lu and Sing-Hoi Sze and Fenghui Zhang}, title = {Improved algorithms for path, matching, and packing problems}, booktitle = soda07, editor = {Nikhil Bansal and Kirk Pruhs and Clifford Stein}, pages = {298-307}, year = 2007} %Chen 2008 @article{ChenFLLV08, author = {Jianer Chen and Fedor V. Fomin and Yang Liu and Songjian Lu and Yngve Villanger}, title = {Improved algorithms for feedback vertex set problems}, journal = jcss, volume = 74, year = 2008, pages = {1188-1198}} @inproceedings{ChenLLSR08, author = {Jianer Chen and Yang Liu and Songjian Lu and Barry {O'Sullivan} and Igor Razgon}, title = {A fixed-parameter algorithm for the directed feedback vertex set problem}, editor = {Richard E. Ladner and Cynthia Dwork}, booktitle = stoc08, pages = {177-186}, year = 2008} %Chen 2009 @article{ChenKX09, author = {Jianer Chen and Iyad A. Kanj and Ge Xia}, title = {On parameterized exponential time complexity}, journal = tcs, year = 2009, volume = 410, pages = {2641-2648}} @article{ChenLL09, author = {Jianer Chen and Yang Liu and Songjian Lu}, title = {An improved parameterized algorithm for the minimum node multiway cut problem}, journal = alg, year = 2009, volume = 55, pages = {1-13}} @article{ChenL09, author = {Jianer Chen and Songjian Lu}, title = {Improved parameterized set splitting algorithms: A probabilistic approach}, journal = alg, volume = 54, year = 2009, pages = {472-489}} %Cher @article{CheritonT76, author = {D. Cheriton and R. E. Tarjan}, title = {Finding minimum spanning trees}, journal = siamjc, year = 1976, pages = {724-742}} @article{CheriyanM88, author = {J. Cheriyan and S. N. Maheshwari}, title = {Finding nonseparating induced cycles and independent spanning trees in 3-connected graphs}, journal = ja, volume = 9, pages = {507-537}, year = 1988 } %Chi @article{ChibaNS81, author = {N. Chiba and Takao Nishizeki and N. Saito}, title = {A linear algorithm for five-coloring a planar graph}, journal = ja, year = 1981, volume = 2, pages = {317-327}} @article{ChibaN85, author = {N. Chiba and Takao Nishizeki}, title = {Arboricity and Subgraph Listing Algorithms}, journal = siamjc, volume = 14, pages = {210-223}, year = 1985} @article{ChibaN89, author = {N. Chiba and Takao Nishizeki}, title = {The {H}amiltonian Cycle problem is linear-time solvable for 4-connected planar graphs}, journal = ja, volume = 10, pages = {187-211}, year = 1989} @article{ChinnCDG82, author = {P. Z. Chinn and J. Chv\'{a}talov\'{a} and A. K. Dewdney and N. E. Gibbs}, title = {The bandwidth problem for graphs and matrices --- A survey}, journal = jgt, volume = 6, year = 1982, pages = {223-254}} %Chl @article{Chlebik08, author = {Miroslav Chleb{\'\i}k and Janka Chleb{\'\i}kov{\'{a}}}, title = {Crown reductions for the {M}inimum {W}eighted {V}ertex {C}over problem}, journal = dam, volume = 156, year = 2008, pages = {292-312}} @article{Chlebikova92, author = {J. Chleb{\'\i}kov{\'{a}}}, title = {On the tree width of a graph}, journal = {Acta Mathematica Universitatis Comenianae}, volume = {LXI}, number = 2, pages = {225-236}, year = 1992} @article{Chlebikova02, author = {J. Chleb{\'\i}kov{\'{a}}}, title = {The structure of obstructions to treewidth and pathwidth}, journal = dam, volume = 120, pages = {61-71}, year = 2002} @article{ChlebikovaJ07, author = {Janka Chleb{\'\i}kov{\'{a}} and Klaus Jansen}, title = {The $d$-precoloring problem for $k$-degenerate graphs}, journal = dm, volume = 307, year = 2007, pages = {2082-2093}} %Cho @inproceedings{ChorFRRRS07, author = {B. Chor and M. Fellows and M. Ragan and F. Rosamond and I. Razgon and S. Snir}, title = {Connected coloring completion for general graphs: algorithms and complexity}, editor = {Guohui Lin}, booktitle = cocoon07, publisher = lncs4598, pages = {75-85}, year = 2007} @article{ChouWZ03, author = {C. Chou and W. Wang and X. Zhu}, title = {Relaxed game chromatic number of graphs}, journal = dm, year = 2007, volume = 262, pages = {89-98}} @article{ChouKHC07, author = {Hsin-Hung Chou and Ming-Tat Ko and Chin-Wen Ho and Gen-Huey Chen}, title = {Node-searching problem on block graphs}, journal = dam, volume = 156, year = 2007, pages = {55-75}} %Chr @book{Christofides75, author = {N. Christofides}, title = {Graph Theory: An Algorithmic Approach}, publisher = {Academic Press}, address = {New York}, year = 1975 } @article{ChrobakN90, author = {Marek Chrobak and Takao Nishizeki}, title = {Improved Edge-Coloring Algorithms for Planar Graphs}, journal = ja, volume = 102, year = 1990, pages = {102 - 116}} @techreport{ChrobakK93, author = {M. Chrobak and G. Kant}, title = {Convex Grid Drawings of 3-Connected Planar Graphs}, type = tr, institution = vi, number = {RUU-CS-93-45}, year = 1993} %Chu %Chud @article{ChudakGHW98, author = {F. A. Chudak and M. X. Goemans and D. S. Hochbaum and D. P. Williamson}, title = {A primal--dual interpretation of two 2-approximation algorithms for the feedback vertex set problem in undirected graphs}, journal = orl, volume = 22, year = 1998, pages = {111-118}} @article{ChudnovskyRST06, author = {Maria Chudnovsky and Neil Robertson and Paul D. Seymour and Robin Thomas}, title = {The strong perfect graph theorem}, journal = {Annals of Mathematics}, volume = 164, pages = {51-229}, year = 2006} @article{ChudnovskyRST10, author = {Maria Chudnovsky and Neil Robertson and Paul D. Seymour and Robin Thomas}, title = {$K_4$-free graphs with no odd holes}, journal = jctb, volume = 100, year = 2010, pages = {313-331}} %Chung 1984 @article{Chung84, author = {F. R. K. Chung}, title = {On Optimal Linear Arrangement of Trees}, journal = {Computers \& Mathematics with Applications}, volume = 10, year = 1984, pages = {43-60}} %Chung 1985 @article{Chung85, author = {F. R. K. Chung}, title = {On the Cutwidth and Topological Bandwidth of a Tree}, journal = sjadm, volume = 6, year = 1985, pages = {268-277}} @article{ChungMST85, author = {M.-J. Chung and F. S. Makedon and Ivan Hal Sudborough and J. Turner}, title = {Polynomial Time Algorithms for the Min Cut Problem on Degree Restricted Trees}, journal = siamjc, year = 1985, volume = 14, pages = {158-177}} %Chung 1986 @article{ChungLR86, author = {F. R. K. Chung and F. T. Leighton and A. L. Rosenberg}, title = {Embedding graphs in books: {A} graph layout problem with applications to {VLSI} design}, year = 1986, journal = sjadm } %Chung 1989 @article{ChungS89, author = {F. R. K. Chung and Paul D. Seymour}, title = {Graphs with small bandwidth and cutwidth}, journal = dm, volume = 75, pages = {113-119}, year = 1989} %Chung 1994 @article{ChungM94, author = {F. R. K. Chung and David Mumford}, title = {Chordal Completions of Planar Graphs}, journal = jctb, volume = {62}, pages = {96-106}, year = 1994} %Cl %Cla @inproceedings{ClautiauxCMN03, author = {F. Clautiaux and J. Carlier and A. Moukrim and S. N\'{e}gre}, title = {New lower and upper bounds for graph treewidth}, editor = {J. D. P. Rolim}, booktitle = wea03, publisher = lncs2647, year = 2003, pages = {70-80}} @article{ClautiauxMNC04, author = {F. Clautiaux and A. Moukrim and S. N{\'e}gre and J. Carlier}, title = {Heuristic and Meta-Heuristic Methods for Computing Graph Treewidth}, journal = {RAIRO Operations Research}, volume = 38, year = 2004, pages = {13-26}} %Cle @article{ClearyJ09, author = {Sean Cleary and Katherine {St. John}}, title = {Rotation distance is fixed-parameter tractable}, journal = ipl, volume = 109, year = 2009, pages = {918-922}} %Co %Coc %Cockayne 1975 @article{CockayneGH75, author = {E. J. Cockayne and S. E. Goodman and S. T. Hedetniemi}, title = {A Linear Algorithm for the Domination Number of a Tree}, journal = ipl, volume = 4, year = 1975, pages = {41-44}} %Cockayne 1981 @article{CockayneFPT81, author = {E. J. Cockayne and O. Favaron and C. Payan and A. Thomason}, title = {Contributions to the Theory of Domination, Independence, and Irredundance in Graphs}, journal = dm, vol = 33, year = 1981, pages = {249-258}} %Cockayne 1986 @article{CockayneH86, author = {E. J. Cockayne and D. E. Hewgill}, title = {Exact computation of {S}teiner minimal trees in the plane}, journal = ipl, volume = 2, year = 1986, pages = {151-156}} %Cockayne 2004 @article{CockayneDHH04, author = {E. J. Cockayne and P. A. Dreyer and S. M. Hedetniemi and S. T. Hedetniemi}, title = {Roman domination in graphs}, journal = dm, volume = 278, year = 2004, pages = {11-22}} %Cockayne 2007 @article{Cockayne07, author = {E. J. Cockayne}, title = {Irredundance, secure domination and maximum degree in trees}, journal = dm, volume = 307, year = 2007, pages = {12-17}} %Coh @techreport{CohenSTV92, author = {Robert F. Cohen and S. Sairam and Roberto Tamassia and J. S. Vitter}, title = {Dynamic Algorithms for Bounded Tree-Width Graphs}, type = {Technical Report}, number = {CS-92-19}, institution = {Department of Computer Science, Brown University}, year = 1992} @inproceedings{CohenSTV93, author = {Robert F. Cohen and S. Sairam and Roberto Tamassia and J. S. Vitter}, title = {Dynamic Algorithms for Optimization Problems in Bounded Tree-Width Graphs}, editor = {Giovanni Rinaldi and Laurence A. Wolsey}, booktitle = {Proceedings of the 3rd Conference on Integer Programming and Combinatorial Optimization, IPCO'93}, pages = {99-112}, year = 1993} @inproceedings{CohenT93, author = {Robert F. Cohen and Roberto Tamassia}, title = {Combine and Conquer}, booktitle = esa93, editor = {Thomas Lengauer}, year = 1993, pages = {97-108}, publisher = lncs726, } %Col %Colb @article{ColbournB81, author = {Charles J. Colbourn and K. S. Booth}, title = {Linear time automorphism algorithms for trees, interval graphs, and planar graphs}, journal = siamjc, volume = 10, pages = {203-225}, year = 1981} @inproceedings{ColbournP84, author = {Charles J. Colbourn and Andrzej Proskurowski}, title = {Concurrent transmissions in broadcast networks}, editor = {Jan Paredaens}, booktitle = icalp84, publisher = lncs172, pages = {128-136}, year = 1984} @article{ColbournS85, author = {Charles J. Colbourn and L. K. Stewart}, title = {Dominating cycles in series-parallel graphs}, journal = arscomb, volume = {19A}, year = 1985, pages = {107-112}} @article{ColbournDN89, author = {Charles J. Colbourn and Robert P. J. Day and Louis D. Nel}, title = {Unranking and ranking spanning trees of a graph}, journal = ja, volume = 10, year = 1989, pages = {271-286}} %Cole @article{ColeV88, author = {Richard Cole and Uzi Vishkin}, title = {The Accelerated Centroid Decomposition Technique for Optimal Parallel Tree Evaluation in Logarithmic Time}, journal = alg, year = 1988, volume = 3, pages = {329-346}} @article{ColeV91, author = {Richard Cole and Uzi Vishkin}, title = {Approximate Parallel Scheduling {II}. {A}pplications to Logarithmic-Time Optimal Parallel Graph Algorithms}, journal = ic2, volume = 92, pages = {1-47}, year = 1991} @article{ColeZ95, author = {Richard Cole and Ofer Zajicek}, title = {An asynchronous parallel algorithm for undirected graph connectivity}, journal = ja, volume = 18, pages = {50-97}, year = 1995} @article{ColeK08, author = {Richard Cole and {\L}ukasz Kowalik}, title = {New linear-time algorithms for edge-coloring planar graphs}, journal = alg, volume = 50, year = 2008, pages = {351-368}} %Coli @article{Colin98, author = {Y. {Colin de Verdi\`{e}re}}, title = {Multiplicities of eigenvalues and tree-width of graphs}, journal = jctb, volume = 74, pages = {121-146}, year = 1998} %Com @unpublished{ComptonH83, author = {K. Compton and C. W. Henson}, title = {A simple method for proving lower bounds on the complexity of logical theories}, note = {Extended abstract, preprint}, year = 1983} @techreport{ComptonH87, author = {K. Compton and C. W. Henson}, title = {A Uniform Method for Proving Lower Bounds on the Computational Complexity of Logical Theories}, number = {CRL-TR-04-87}, institution = {The University of Michigan, Computing Research Laboratory}, pages = 53, year = 1987, month = {4}, type = {Report}} %Con @techreport{CondonFLS93, author = {Anne Condon and Joan Feigenbaum and Casten Lund and Peter Shor}, title = {Probabilistic Checkable Debate Systems and Approximation Algorithms for {PSPACE}-hard Functions}, institution = {DIMACS}, year = 1993} @unpublished{CondonFLS93a, author = {Anne Condon and Joan Feigenbaum and Casten Lund and Peter Shor}, title = {Random Debaters and the Hardness of Approximating Stochastic Functions (Extended Abstract)}, note = {Manuscript}, year = 1993} @book{Conway76, author = {J. H. Conway}, title = {On Numbers and Games}, publisher = {Academic Press}, address = {London}, year = 1976 } %Coo @inproceedings{Cook71, author = {S. A. Cook}, title = {The complexity of theorem-proving procedures}, booktitle = stoc71, publisher = {ACM}, address = {New York}, year = 1971, pages = {151-158}} @techreport{CookS93, author = {William Cook and Paul D. Seymour}, title = {An Algorithm for the Ring-Routing Problem}, institution = {Bellcore}, year = 1993, type = {Bellcore Technical Memorandum}} @misc{Cook96, author = {William Cook}, year = 1996, note = {Personal communication}} @article{CookS03, author = {William Cook and Paul D. Seymour}, title = {Tour merging via branch-decomposition}, year = 2003, number = 3, volume = 15, pages = {233-248}, journal = informsjc} @article{Cooper90, author = {Gregory F. Cooper}, title = {The computational complexity of probabilistic inference using {B}ayesian belief networks}, journal = artint, volume = 42, pages = {393--405}, year = 1990} @techreport{Cooper93, author = {Gregory F. Cooper}, title = {Bayesian Belief-Network Inference Using Recursive Decomposition}, number = {KSL 90-05}, year = 1990, institution = {Knowledge Systems Laboratory, Medical Computer Science, Stanford}} @techreport{Cooper93a, author = {Gregory F. Cooper}, title = {A Recursive-Decomposition Method for Solving {AI} Graph Problems}, number = {SMI-91-2}, institution = {Section of Medical Informatics, University of Pittsburgh}, year = 1993} %Cop @article{CoppersmithV85, author = {D. Coppersmith and Uzi Vishkin}, title = {Solving {NP}-Hard Problems in 'Almost Trees': Vertex Cover}, journal = dam, year = 1985, volume = 10, pages = {27-45}} @article{CoppersmithW90, author = {D. Coppersmith and S. Winograd}, title = {Matrix multiplication via arithmetic progression}, journal = {Journal of Symbolic Computation}, volume = 9, year = 1990, pages = {251-280}} %Cor @book{CormenLR89, author = {Thomas H. Cormen and Charles E. Leiserson and Ronald L. Rivest}, title = {Introduction to Algorithms}, publisher = {MIT Press}, address = {Cambridge, Mass., USA}, year = 1989} @book{CormenLRS01, author = {Thomas H. Cormen and Charles E. Leiserson and Ronald L. Rivest and Clifford Stein}, title = {Introduction to Algorithms, Second Edition}, publisher = {MIT Press}, address = {Cambridge, Mass., USA}, year = 2001} %Corneil 1981 @article{CorneilLS81, author = {Derek G. Corneil and H. Lerchs and L. {Stewart Burlingham}}, title = {Complement reducible graphs}, journal = adm, volume = 1, year = 1981, pages = {145-162}} %Corneil 1983 @article{CorneilK83, author = {Derek G. Corneil and D. G. Kirkpatrick}, title = {Families of recursively defined perfect graphs}, journal = cn, volume = 39, year = 1983, pages = {237-246}} %Corneil 1984 @article{CorneilP84, author = {Derek G. Corneil and Y. Perl}, title = {Clustering and domination in perfect graphs}, journal = dam, volume = 9, year = 1984, pages = {27-39}} @article{CorneilPS84, author = {Derek G. Corneil and Y. Perl and L. K. Stewart}, title = {Cographs: recognition, applications and algorithms}, journal = cn, volume = 43, year = 1984, pages = {249-258}} %Corneil 1985 @article{CorneilPS85, author = {Derek G. Corneil and Y. Perl and L. K. Stewart}, title = {A linear recognition algorithm for cographs}, journal = siamjc, year = 1985, pages = {926-934}, volume = 14 } %Corneil 1987 @article{CorneilK87, author = {Derek G. Corneil and J. Mark Keil}, title = {A Dynamic Programming Approach to the Dominating Set Problem on $k$-trees}, journal = sjadm, pages = {535-543}, volume = 8, year = 1987 } %Corneil 1992 @techreport{CorneilOS92, author = {Derek G. Corneil and Stephan Olariu and Lorna Stewart}, title = {Asteroidal Triple-Free Graphs}, number = {262/92}, year = 1992, type = {Technical Report}, institution = {Dept. of Computer Science, University of Toronto}} @unpublished{CorneilOS??, author = {Derek G. Corneil and Stephan Olariu and Lorna Stewart}, title = {The linear structure of graphs: asteroidal triple-free graphs}, note = {Manuscript}} %Corneil 1995 @article{CorneilKNOS95, author = {Derek G. Corneil and Hiryoung Kim and Sridhar Natarajan and Stephan Olariu and Alan P. Sprague}, title = {Simple Linear Time Recognition of Unit Interval Graphs}, year = 1995, journal = ipl, volume = 55, pages = {99-104}} %Corneil 1997 @article{CorneilOS97, author = {Derek G. Corneil and S. Olariu and L. Stewart}, title = {Asteroidal triple-free graphs}, journal = sjdm, volume = 10, year = 1997, pages = {399-430}} @unpublished{CorneilS??, author = {Derek G. Corneil and L. K. Stewart}, title = {Dominating Sets in Perfect Graphs}, note = {preprint}} %Corneil 2000 @inproceedings{CorneilHLRR00, author = {Derek G. Corneil and M. Habib and J. M. Lanlignel and Bruce Reed and Udi Rotics}, title = {Polynomial time recognition of clique-width $\leq 3$ graphs (Extended Abstract)}, editor = {Gaston H. Gonnet and Daniel Panario and Alfredo Viola}, booktitle = latin00, publisher = lncs1776, year = 2000, pages = {126-134}} @article{CorneilOS00, author = {Derek G. Corneil and Stephan Olariu and Lorna Stewart}, title = {Linear time algorithms for dominating pairs in asteroidal triple-free graphs}, journal = siamjc, volume = 28, year = 2000, pages = {1284-1297}} %Corneil 2004 @article{Corneil04, author = {Derek G. Corneil}, title = {A simple 3-sweep LBFS algorithm for the recognition of unit interval graphs}, journal = dam, volume = 138, pages = {371-379}, year = 2004} %Corneil 2010 @article{CorneilKL10, author = {Derek G. Corneil and Ekkehard K\"{o}hler and Jean-Marc Lanlignel}, title = {On end-vertices of {L}exicographic {B}readth {F}irst {S}earches}, journal = dam, volume = 158, year = 2010, pages = {434-443}} %Cornuejols @article{CornuejolsNP83, author = {G. Cornu\'{e}jols and D. Naddef and W. R. Pulleyblank}, title = {{H}alin graphs and the Traveling Salesman problem}, journal = mp, volume = 26, year = 1983, pages = {287-294}} %Cos @article{CosmadakisP84, author = {Stavros S. Cosmadakis and Christos H. Papadimitriou}, title = {The Travelling Salesman Problem with Many Visits to Few Cities}, journal = siamjc, volume = 13, pages = {99-108}, year = 1984 } %Cou %Courcelle 1983 @article{Courcelle83, author = {Bruno Courcelle}, title = {Fundamental properties of infinite trees}, journal = tcs, volume = 25, year = 1983, pages = {375-393}} %Courcelle 1986 @article{Courcelle86, author = {Bruno Courcelle}, title = {Equivalence and transformation of regular systems. {A}pplications to recursive program schemes and grammars}, journal = tcs, volume = 42, pages = {1-22}, year=1986} %Courcelle 1987 @inproceedings{Courcelle87, author = {Bruno Courcelle}, title = {A representation of graphs by algebraic expressions and its use for graph rewriting systems}, editor = {Hartmut Ehrig and Manfred Nagl and Grzegorz Rozenberg and Azriel Rosenfeld}, booktitle = gragra86, publisher = lncs291, pages = {112-132}, year = 1987} @inproceedings{Courcelle87a, author = {Bruno Courcelle}, title = {On context-free sets of graphs and their monadic second-order theory}, editor = {Hartmut Ehrig and Manfred Nagl and Grzegorz Rozenberg and Azriel Rosenfeld}, booktitle = gragra86, publisher = lncs291, pages = {133-146}, year = 1987} @article{Courcelle87b, author = {Bruno Courcelle}, title = {An axiomatic definition of context-free rewriting and its application to {NLC} graph grammars}, journal = tcs, volume = 55, pages = {141-181}, year = 1987 } %Courcelle 1988 @inproceedings{Courcelle88a, author = {Bruno Courcelle}, title = {On using context-free graph grammars for analysing recursive definitions}, booktitle = {Proceedings of the 2nd French-Japanese seminal on Artificial Intelligence}, publisher = {North-Holland Pub. Co.}, year = 1988} @article{Courcelle88c, author = {Bruno Courcelle}, title = {The Monadic Second-order Logic of Graphs {III}: {T}reewidth, Forbidden Minors and Complexity Issues}, journal = {Informatique Th\'{e}orique}, volume = 26, pages = {257-286}, year = 1992} @article{Courcelle88d, author = {Bruno Courcelle}, title = {Some applications of logic of universal algebra, and of category theory to the theory of graph transformations}, journal = beatcs, volume = 36, year = 1988, pages = {161-218}} @article{Courcelle88e, author = {Bruno Courcelle}, title = {Corrections and Additions to ``Some applications of logic of universal algebra, and of category theory to the theory of graph transformations''}, journal = beatcs, volume = 37, year = {1988??}, pages = {194-195}} %Courcelle 1989 @article{Courcelle89, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {II}: Infinite graphs of bounded width}, journal = mst, volume = 21, pages = {187-221}, year = 1989} %Courcelle 1990 @article{Courcelle90, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {I}: {R}ecognizable sets of finite graphs}, journal = ic2, volume = 85, year = 1990, pages = {12-75}} @inproceedings{Courcelle90a, author = {Bruno Courcelle}, title = {Graph rewriting: an algebraic and logical approach}, booktitle = {Handbook of Theoretical Computer Science, volume {B}}, editor = {Jan van Leeuwen}, address = {Amsterdam}, year = 1990, publisher = {North Holland Publ. Comp.}, pages = {192-242} } @article{Courcelle90b, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {IV}: {D}efinable properties of equational graphs}, journal = apal, volume = 49, year = 1990, pages = {193-255}} %Courcelle 1991 @article{Courcelle91, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {V}: {O}n closing the gap between definability and recognizability}, journal = tcs, volume = 80, year = 1991, pages = {153-202}} %Courcelle 1992 @article{Courcelle92, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {VII}: Tree-decompositions, minor and complexity issues}, journal = ita, volume = 101, year = 1992, pages = {257-286}} @techreport{CourcelleL92, author = {Bruno Courcelle and Jens Lagergren}, title = {Recognizable sets of graphs with bounded treewidth}, number = {92-68}, institution = {LaBRI, Bordeaux}, year = 1992} @article{CourcelleM93, author = {Bruno Courcelle and M. Mosbah}, title = {Monadic second-order evaluations on tree-decomposable graphs}, journal = tcs, volume = {109}, year = 1993, pages = {49-82}} %Courcelle 1993 @inproceedings{Courcelle93, author = {Bruno Courcelle}, title = {Graph Grammars, Monadic Second-Order Logic and the Theory of Graph Minors}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {565 - 590}, year = 1993} %Courcelle 1994 @article{Courcelle94, author = {Bruno Courcelle}, title = {The Monadic Second-Order Logic of Graphs {VI}: On several representations of graphs by relational structures}, journal = dam, volume = 54, year = 1994, pages = {117-149}} %Courcelle 1995 @article{Courcelle95, author = {Bruno Courcelle}, title = {The Monadic Second-Order Logic of Graphs {VIII}: {O}rientations}, journal = apal, volume = 72, year = 1995, pages = {103-143}} @article{Courcelle95a, author = {Bruno Courcelle}, title = {The Monadic Second-Order Logic of Graphs {VI}: {O}n several representations of graphs by relational structures, Erratum}, journal = dam, volume = 63, year = 1995, pages = {199-200}} @misc{CourcelleS95, author = {Bruno Courcelle and G. S{\'{e}}nizergues}, title = {The obstructions of a minor-closed set of graphs defined by hyperedge replacement can be constructed}, year = 1995} %Courcelle 1996 @article{CourcelleL96, author = {Bruno Courcelle and Jens Lagergren}, title = {Equivalent definitions of recognizability for sets of graphs of bounded tree-width}, journal = {Mathematical Structures in Computer Science}, volume = 6, year = {1996}, pages = {141-166}} %Courcelle 1998 @inproceedings{CourcelleMR98, author = {Bruno Courcelle and J. A. Makowsky and U. Rotics}, title = {Linear time solvable optimization problems on graphs of bounded clique width}, editor = {Juraj Hromkovic and Ondrej S\'{y}kora}, booktitle = wg98, publisher = lncs1517, year = 1998, pages = {1-16}} %Courcelle 2000 @article{CourcelleO00, author = {Bruno Courcelle and S. Olariu}, title = {Upper bounds to the clique-width of graphs}, journal = dam, volume = 101, year = 2000, pages = {77-114}} @article{CourcelleMR00, author = {Bruno Courcelle and J. A. Makowsky and U. Rotics}, title = {Linear time solvable optimization problems on graphs of bounded clique width}, journal = tcs, volume = 33, year = 2000, pages = {125-150}} %Courcelle 2001, @article{CourcelleMR01, author = {Bruno Courcelle and J. A. Makowsky and U. Rotics}, title = {On the fixed parameter complexity of graph enumeration problems definable in monadic second order logic}, journal = dam, volume = 108, year = 2001, pages = {23-52}} %Courcelle 2003 @article{Courcelle03, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {XIV}: Uniformly sparse graphs and edge set quantifications}, journal = tcs, volume = 299, pages = {1-36}, year = 2003} %Courcelle 2005 @article{CourcelleW05, author = {Bruno Courcelle and Pascal Weil}, title = {The recognizability of sets of graphs is a robust property}, journal = tcs, volume = 342, pages = {173-228}, year = 2005} %Courcelle 2006 @article{Courcelle06, author = {Bruno Courcelle}, title = {The monadic second-order logic of graphs {XV}: On a conjecture by {D.} {S}eese}, journal = {Journal of Applied Logic}, volume = 4, year = 2006, pages = {79-114}} %Courcelle 2007 @article{CourcelleO07, author = {Bruno Courcelle and Sang-il Oum}, title = {Vertex-minors, monadic second-order logic, and a conjecture by {S}eese}, journal = jctb, volume = 97, year = 2007, pages = {91-126}} %Courcelle 2009 @article{CourcelleK09, author = {Bruno Courcelle and Mamadou Moustapha Kant\'{e}}, title = {Graph operations characterizing rank-width}, journal = dam, volume = 157, year = 2009, pages = {627-640}} %Cournier @inproceedings{CournierH93, author = {A. Cournier and M. Habib}, title = {An efficient algorithm to recognize prime undirected graphs}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {212-224}} @inproceedings{CournierH94, author = {A. Cournier and M. Habib}, title = {A new linear algorithm for modular decomposition}, booktitle = {Trees in algebra and programming, CAAP'94}, editor = {Tison Sophie}, year = 1994, pages = {68-84}, publisher = lncs787} %Cu %Cur @article{CurtisIJLM10, author = {Andrew R. Curtis and Clemente Izurieta and Benson Joeris and Scott Lundberg and Ross M. McConnell}, title = {An implicit representation of chordal comparability graphs in linear time}, journal = dam, volume = 158, year = 2010, pages = {869-875}} %Cy %Cyg @article{CyganKW09, author = {Marek Cygan and {\L}ukasz Kowalik and Mateusz Wykurz}, title = {Exponential-time approximation of weighted set cover}, journal = ipl, volume = 109, year = 2009, pages = {957-961}} %Cz @article{CzumajHLN05, author = {Artur Czumaj and Magn\'{u}s M. Halld\'{o}rsson and Andrzej Lingas and Johan Nilsson}, title = {Approximation algorithms for optimization problems in graphs with superlogarithmic treewidth}, journal = ipl, volume = 94, year = 2005, pages = {49-53}} %D %Da %Dah %Dahlhaus 1986 @techreport{DahlhausK86, author = {Elias Dahlhaus and Marek Karpinski}, title = {The Matching Problem for Strongly Chordal Graphs is in {NC}}, type = {Research Report}, number = {855-CS}, institution = {University of Bonn}, address = {Bonn}, year = 1986 } %Dahlhaus 1988 @article{DahlhausK88, author = {Elias Dahlhaus and Marek Karpinski}, title = {Parallel Construction of Perfect Matchings and {H}amiltonian Cycles on Dense Graphs}, year = 1988, journal = tcs, volume = 61, pages = {112-136}} %Dahlhaus 1993 @inproceedings{Dahlhaus93, author = {Elias Dahlhaus}, title = {Optimal (parallel) algorithms for the all-to-all vertices distance problem for certain graph classes}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {60-69}} %Dahlhaus 1995 @article{Dahlhaus95, author = {Elias Dahlhaus}, title = {Efficient parallel recognition algorithms of cographs and distance hereditary graphs}, journal = dam, volume = 57, year = 1995, pages = {29-44}} %Dahlhaus 1997 @inproceedings{Dahlhaus97, author = {Elias Dahlhaus}, title = {Minimal elimination ordering inside a given chordal graph}, editor = {Rolf H. M\"{o}hring}, booktitle = wg97, pages = {132-143}, year = 1997, publisher = lncs1335} %Dahlhaus 1998 @inproceedings{Dahlhaus98, author = {Elias Dahlhaus}, title = {Minimum fill-in and treewidth for graphs modularly decomposable into chordal graphs}, editor = {Juraj Hromkovic and Ondrej S\'{y}kora}, booktitle = wg98, pages = {351-358}, year = 1998, publisher = lncs1517} %Dahlhaus 2001 @article{DahlhausGM01, author = {E. Dahlhaus and J. Gustedt and R. M. Mc{C}onnell}, title = {Efficient and practical modular decomposition}, journal = ja, volume = 41, pages = {360-387}, year = 2001} %Dahlof @article{DahlofJB04, author = {V. Dahl\"{o}f and P. Johnsson and R. Beigel}, title = {Algorithms for four variants of the exact satisfiability problem}, journal = tcs, volume = 320, year = 2004, pages = {373-394}} %Dag @article{DagnumL93, author = {Paul Dagnum and Michael Luby}, title = {Approximating probabilistic inference in {B}ayesian belief networks is {NP}-hard}, journal = artint, volume = 60, year = 1993, pages = {141-153}} %Dai @inproceedings{DaiS90, author = {W. W. Dai and M. Sato}, title = {Minimal forbidden minor characterization of planar partial 3-trees and application to circuit layout}, booktitle = {Proceedings IEEE International Symposium on Circuits and Systems}, year = 1990, pages = {2677-2681}} @article{DaiY09, author = {Decheng Dai and Changyuan Yu}, title = {A $5+\epsilon$-approximation algorithm for minimum weighted dominating set in unit disk graphs}, journal = tcs, volume = 410, year = 2009, pages = {756-765}} %Dal @unpublished{DaligaultT09, author = {Jean Daligault and St\'{e}phan Thomass\'{e}}, title = {On finding directed trees with many leaves}, year = 2009, note = {In proceedings IWPEC 2009}} @inproceedings{DalmauKV02, author = {Victor Dalmau and Phokion G. Kolaitis and Moshe Y. Vardi}, title = {Constraint satisfaction, bounded treewidth, and finite-variable logics}, booktitle = {Proceedings of the 8th International Conference on Principles and Practice of Constraint Programming}, pages = {310-326}, publisher = lncs2470, year = 2002} %Dam %Damaschke 1989 @techreport{Damaschke89, author = {Peter Damaschke}, title = {Paths in Interval Graphs and Circular Arc Graphs}, number = {N/89/4}, institution = {Friedrich-Schiller-University Jena, GDR}, year = 1989 } @article{Damaschke89a, author = {Peter Damaschke}, title = {The Hamiltonian circuit problem for circle graphs is {NP}-complete}, journal = ipl, volume = 32, year = 1989, pages = {1-2}} %Damaschke 1990 @unpublished{Damaschke90, author = {Peter Damaschke}, title = {Subgraph Isomorphism for Cographs is {NP}-Complete}, year = 1990, note = {Manuscript}} @unpublished{Damaschke90a, author = {Peter Damaschke}, title = {Hamilton-hereditary Graphs}, year = 1990, note = {Manuscript}} @unpublished{DamaschkeK90, author = {Peter Damaschke and Dieter Kratsch}, title = {Finding {H}amiltonian Paths in Cocomparability Graphs Using the Bump Number Algorithm}, year = 1990, note = {Manuscript}} @article{Damaschke90b, author = {Peter Damaschke}, title = {Induced subgraphs and well-quasi-ordering}, journal = jgt, volume = 14, number = 4, year = 1990, pages = {427-435}} @article{DamaschkeMK90, author = {Peter Damaschke and Haiko M\"{u}ller and Dieter Kratsch}, title = {Domination in convex and chordal bipartite graphs}, journal = ipl, volume = 36, year = 1990, pages = {231-236}} %Damaschke 1991 @unpublished{DamaschkeDKS91, author = {Peter Damaschke and Jitender S. Deogun and Dieter Kratsch and George Steiner}, title = {Finding {H}amiltonian Paths in Cocomparability Graphs Using The Bump Number Algorithm}, note = {Manuscript. Submitted to Order}, year = 1991} %Damaschke 2006 @article{Damaschke06, author = {Peter Damaschke}, title = {Parameterized enumeration, transversals, and imperfect phylogeny reconstruction}, journal = tcs, volume = 351, year = 2006, pages = {337-350}} %Damaschke 2010 @article{Damaschke10, author = {Peter Damaschke}, title = {Fixed-parameter enumerability of cluster editing and related problems}, journal = tocs, volume = 46, year = 2010, pages = {261-283}} %Dan @article{DankelmannGK09, author = {Peter Dankelmann and Gregory Gutin and Eun Jung Kim}, title = {On complexity of minimum leaf out-branching problem}, journal = dam, volume = 157, year = 2009, pages = {3000-3004}} %Dar @article{Darwiche01, author = {A. Darwiche}, title = {Decomposable negation normal form}, journal = jacm, volume = 48, pages = {608-647}, year = 2001} @article{Darwiche03, author = {A. Darwiche}, title = {A differential approach to inference in {B}ayesian networks}, journal = jacm, volume = 50, year = 2003, pages = {280-305}} %Dav @article{DavisP60, author = {Martin David and Hillary Putnam}, title = {A computing procedure for quantification theory}, journal = jacm, volume = 7, year = 1960, pages = {201-215}} %Daw @article{Dawid92, author = {A. P. Dawid}, title = {Applications of a general propagation algorithm for probabilistic expert systems}, journal = {Statistics and Computing}, volume = 2, year = 1992, pages = {25-36}} %Day @article{DaykinN66, author = {D. E. Daykin and C. P. Ng}, title = {Algorithms for generalized stability numbers of tree graphs}, journal = {Journal of the Australian Mathematical Society}, volume = 6, year = 1966, pages = {89-100}} %De @article{DeSimoneG08, author = {Caterina {De Simone} and Anna Galluccio}, title = {Edge-colouring of regular graphs of large degree}, journal = tcs, volume = 389, year = 2008, pages = {91-99}} %Dec @article{DechterP89, author = {R. Dechter and J. Pearl}, title = {Tree clustering for constraint networks}, journal = ai, volume = 38, year = 1989, pages = {353-366}} @article{Dechter99, author = {R. Dechter}, title = {Bucket elimination: a unifying framework for reasoning}, journal = ai, volume = 113, year = 1999, pages = {41-85}} %DeF @article{deFraysseixPP90, author = {H. de Fraysseix and J. Pach and R. Pollack}, title = {How to draw a planar graph on a grid}, journal = combinatorica, volume = 10, year = 1990, pages = {41-51}} %Deh @inproceedings{DehneFLRS05, author = {Frank Dehne and Michael Fellows and Michael Langston and Frances Rosamond and Kim Stevens}, title = {An {$O(2^{O(k)}n^3)$} {FPT} algorithm for the undirected feedback vertex set problem}, editor = {Lusheng Wang}, booktitle = cocoon05, pages = {859-869}, year = 2005, publisher = lncs3595} @inproceedings{DehneFFPR06, author = {Frank Dehne and Michael Fellows and Henning Fernau and Elena Prieto and Frances Rosamond}, title = {NONBLOCKER: Parameterized algorithms for minimum dominating set}, editor = {Jir\'{\i} Wiedermann and Gerard Tel and Jaroslav Pokorn{\'y} and M{\'a}ria Bielikov{\'a} and Julius Stuller}, booktitle = sofsem06, year = 2006, publisher = lncs3831, pages = {237-245}} @inproceedings{DehneLLPSZ06, author = {Frank Dehne and Michael A. Langston and Xuemei Luo and Syvain Pitre and Peter Shaw and Yun Zhang}, title = {The {C}luster {E}diting problem: Implementations and experiments}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {13-24}} %Dei @article{DeinekoKW06, author = {Vladimir G. Deineko and Bettina Klintz and Gerhard J. Woeginger}, title = {Exact algorithms for the {H}amiltonian cycle problem in planar graphs}, journal = orl, volume = 34, year = 2006, pages = {269-274}} %Del @unpublished{DellM09, author = {Holger Dell and Dieter van Melkebeek}, title = {Satisfiability Allows No Nontrivial Sparsification Unless The Polynomial-Time Hierarchy Collapses}, year = 2009, note = {To appear in: Electronic Colloquium on Computational Complexity (ECCC), volume 16}} %Dem %Demaine 2001 @inproceedings{DemaineO01, author = {Erik D. Demaine and Joseph {O'Rourke}}, title = {Open problems from {CCCG} 2000}, booktitle = {Proceedings of the 13th Canadian Conference on Computational Geometry, CCCG 2001}, address = {Waterloo, Ontario, Canada}, year = 2001, pages = {185-187}} %Demaine 2002 @inproceedings{DemaineHT02, author = {E. D. Demaine and M. Hajiaghayi and Dimitrios M. Thilikos}, title = {Exponential speedup of fixed parameter algorithms on {$K_{3,3}$}-minor-free or {$K_5$}-minor-free graphs}, booktitle = soda02, pages = {262-273}, year = 2002} %Demaine 2003 %Demaine 2004 @article{DemaineFHT04, author = {Erik D. Demaine and Fedor V. Fomin and M. Hajiaghayi and Dimitrios M. Thilikos}, title = {Bidimensional parameters and local treewidth}, journal = sjdm, volume = 18, year = 2004, pages = {501-511}} @article{DemaineH04, author = {Erik D. Demaine and M. Hajiaghayi}, title = {Diameter and treewidth in minor-closed graph families, revisited}, journal = alg, volume = 40, year = 2004, pages = {211-215}} @article{DemaineHNRT04, author = {Erik Demaine and Mohammadtaghi Hajiaghayi and Naomi Nishimura and Prabhakar Ragde and Dimitrios M. Thilikos}, title = {Approximation algorithms for classes of graphs excluding single-crossing graphs as minors}, journal = jcss, volume = 69, year = 2004, pages = {166-195}} %Demaine 2005 @article{DemaineFHT05, author = {Erik D. Demaine and Fedor V. Fomin and MohammadTaghi Hajiaghayi and Dimitrios M. Thilikos}, title = {Fixed-Parameter Algorithms for ($k$,$r$)-center in Planar Graphs and Map Graphs}, journal = acmtalg, volume = 1, year = 2005, pages = {33-47}} @article{DemaineFHT05a, author = {Erik D. Demaine and Fedor V. Fomin and Mohammadtaghi Hajiaghayi and Dimitrios M. Thilikos}, title = {Subexponential Parameterized Algorithms on Graphs of Bounded Genus and {$H$}-minor-free Graphs}, journal = jacm, volume = 52, year = 2005, pages = {866--893}} @inproceedings{DemaineH05, author = {Erik D. Demaine and Mohammadtaghi Hajiaghayi}, title = {Graphs excluding a fixed minor have grids as large as treewidth, with combinatorial and algorithmic applications through bidimensionality}, booktitle = soda05, year = 2005, pages = {682-689}} @inproceedings{DemaineH05a, author = {Erik D. Demaine and Mohammadtaghi Hajiaghayi}, title = {Bidimensionality: {N}ew connections between {FPT} algorithms and {PTASs}}, booktitle = soda05, year = 2005, pages = {590-601}} @article{DemaineHT05, author = {Erik D. Demaine and Mohammadtaghi Hajiaghayi and Dimitrios M. Thilikos}, title = {Exponential speedup of fixed-parameter algorithms for classes of graphs excluding single-crossing graphs as minors}, journal = alg, volume = 41, year = 2005, pages = {245-267}} %Demaine 2006 @article{DemaineHT06, author = {Erik D. Demaine and MohammadTaghi Hajiaghayi and Dimitrios M. Thilikos}, title = {The bidimensional theory of bounded-genus graphs}, journal = sjdm, volume = 20, year = 2006, pages = {357-371}} %Demaine 2008 @article{DemaineH08, author = {Erik D. Demaine and MohammadTaghi Hajiaghayi}, title = {The bidimensionality theory and its algorithmic applications}, journal = tcj, volume = 51, year = 2008, pages = {292-302}} @article{DemaineH08a, author = {Erik D. Demaine and MohammadTaghi Hajiaghayi}, title = {Linearity of grid minors in treewidth with applications through bidimensionality}, journal = comb, volume = 28, year = 2008, pages = {19-36}} %Demaine 2009 @article{DemaineHK09, author = {Erik D. Demaine and MohammadTaghi Hajiaghayi and Ken-ichi Kawarabayashi}, title = {Algorithmic graph minor theory: Improved grid minor bounds and {W}agner's contraction}, journal = alg, volume = 54, year = 2009, pages = {142-180}} %Den @article{DendrisKT97, author = {Nick D. Dendris and Lefteris M. Kirousis and Dimitrios M. Thilikos}, title = {Fugitive-search games on graphs and related parameters}, journal = tcs, volume = 172, year = 1997, pages = {233-254}} %Deo @book{Deo74, author = {N. Deo}, title = {Graph Theory with Applications to Engineering and Computer Science}, publisher = {Prentice Hall}, address = {Englewood Cliffs, NJ}, year = 1974} @article{DeoKL87, author = {N. Deo and M. S. Krishnamoorty and Michael A. Langston}, title = {Exact and approximate solutions for the gate matrix layout problem}, journal = {IEEE Transactions on Computer Aided Design}, volume = 6, year = 1987, pages = {79-84}} @article{DeogunP90, author = {Jitender S. Deogun and Y. Peng}, title = {Edge ranking of trees}, journal = cn, volume = 79, year = 1990, pages = {19-28}} @unpublished{DeogunKT93, author = {Jitender S. Deogon and Dieter Kratsch and Zsolt Tuza}, title = {Some new results on rankings of graphs}, year = 1993, note = {Manuscript}} @techreport{DeogunKKM93, author = {Jitender S. Deogun and Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {On Vertex Ranking for Permutation and other Graphs}, type = {Computing Science Notes}, number = {93-30}, institution = {Eindhoven University of Technology}, address = {Eindhoven, The Netherlands}, year = 1993} @article{DeogunKKM99, author = {Jitender S. Deogun and Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {On the vertex ranking problem for trapezoid, circular-arc and other graphs}, journal = dam, volume = 98, year = 1999, pages = {39-63}} %Der @article{DereniowskiK056, author = {Dariusz Dereniowski and M. Kubale}, title = {Efficient parallel query processing by graph ranking}, journal = {Fundamenta Informormaticae}, volume = 69, pages = {273-285}, year = {2005/06}} @article{Dereniowski06, author = {Dariusz Dereniowski}, title = {Edge ranking of weighted trees}, journal = dam, volume = 154, year = 2006, pages = {1198-1209}} @article{DereniowskiN06, author = {Dariusz Dereniowski and Adam Nadolski}, title = {Vertex rankings of chordal graphs and weighted trees}, journal = ipl, volume = 98, pages = {96-100}, year = 2006} %Des @article{DessmarkLP00, author = {A. Dessmark and A. Lingas and A. Proskurowski}, title = {Faster algorithms for subgraph isomorphism of $k$-connected partial $k$-trees}, journal = alg, volume = 27, pages = {337-347}, year = 2000} %Dev %DeV @article{DeVosDOSRSV04, author = {Matt DeVos and Guoli Ding and Bogdan Oporowski and Daniel P. Sanders and Bruce Reed and Paul Seymour and Dirk Vertigan}, title = {Excluding any graph as a minor allows a low tree-width 2-coloring}, journal = jctb, volume = 91, year = 2004, pages = {25-41}} %Di %Dia @inproceedings{DiazST93, author = {J. D\'{\i}az and M. J. Serna and J. T\'{o}ran}, title = {Parallel approximation schemes for problems on planar graphs}, booktitle = esa93, editor = {Thomas Lengauer}, year = 1993, pages = {145-156}, publisher = lncs726, } @article{DiazPS02, author = {Josep D\'{\i}az and J. Petit and Maria Serna}, title = {A survey of graph layout problems}, journal = acmcs, volume = 34, pages = {313-356}, year = 2002} @article{DiazST02, author = {Josep D\'{\i}az and Maria Serna and Dimitrios M. Thilikos}, title = {Counting {$H$}-colorings of partial $k$-trees}, journal = tcs, volume = 281, year = 2002, pages = {291-309}} %Die @book{Diestel90, author = {Reinhard Diestel}, title = {Graph Decompositions. A Study in Infinite Graph Theory}, publisher = {Oxford Science Publications, Clarendon Press}, address = {Oxford}, year = 1990} @article{DiestelJGT99, author = {Reinhard Diestel and Tommy R. Jensen and Konstantin Yu. Gorbunov and Carsten Thomassen}, title = {Highly connected sets and the excluded grid theorem}, year = 1999, pages = {61-73}, journal = jctb, volume = 75} @article{DiestelT99, author = {Reinhard Diestel and R. Thomas}, title = {Excluding a countable clique}, journal = jctb, volume = 76, year = 1999, pages = {41-67}} @book{Diestel00, author = {Reinhard Diestel}, title = {Graph theory}, publisher = {Springer-Verlag}, note = {2nd edition}, year = 2000} @article{DiestelK04, author = {Reinhard Diestel and Daniela K\"{u}hn}, title = {Graph minor hierarchies}, journal = dam, volume = 145, pages = {167-182}, year = 2004} @phdthesis{Dietz84, author = {P. F. Dietz}, title = {Intersection Graph Algorithms}, year = 1984, school = {Computer Science Dept., Cornell University}, address = {Ithaca, N.Y.}} @inproceedings{DietzfelbingerKMMRT88, author = {M. Dietzfelbinger and A. Karlin and K. Mehlhorn and F. {Meyer auf der Heide} and H. Rohnert and R. E. Tarjan}, title = {Dynamic Perfect Hashing: Upper and Lower Bounds}, year = 1988, pages = {524-531}, booktitle = focs88 } %Dij @misc{DijkHS06, author = {Thomas C. {van Dijk} and Jan-Pieter {van den Heuvel} and Wouter Slob}, title = {Treewidth.com}, year = 2006} @mastersthesis{Dijk07, author = {Thomas C. {van Dijk}}, title = {Fixed parameter complexity of feedback problems}, school = {Utrecht University}, year = 2007} @article{Dijkstra59, author = {E. Dijkstra}, title = {A note on two problems in connection with graphs}, journal = {Numerische Mathematik}, volume = 1, year = 1959, pages = {269-271}} %Din %Ding 1992 @article{DingSS92, author = {Guoli Ding and A. Schrijver and Paul D. Seymour}, title = {Disjoint paths in a planar graph --- {A} general theorem}, journal = sjdm, volume = 5, year = 1992, pages = {112-116}} %Ding 1995 @article{DingO95, author = {Guoli Ding and Bogdan Oporowski}, title = {Some results on tree decomposition of graphs}, journal = jgt, volume = 20, pages = {481-499}, year = 1995} %Ding 1998 @article{DingOSV98, author = {Guoli Ding and Bogdan Oporowski and Daniel P. Sanders and D. Vertigan}, title = {Partitioning graphs of bounded tree-width}, journal = combinatorica, volume = 18, year = 1998, pages = {1-12}} %Ding 2000 @article{DingOSV00, author = {Guoli Ding and Bogdan Oporowski and Daniel P. Sanders and D. Vertigan}, title = {Surfaces, tree-width, clique-minors, and partitions}, journal = jctb, volume = 79, year = 2000, pages = {221-246}} %Ding 2001 @article{DingJS01, author = {Guoli Ding and Thor Johnson and Paul Seymour}, title = {Spanning trees with many leaves}, journal = jgt, volume = 37, year = 2001, pages = {189-197}} %Dinitz 1993 @inproceedings{Dinitz93, author = {E. Dinitz}, title = {The 3-edge-components and a structural description of all 3-edge cuts in a graph}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {145-157}} %Dinitz 1994 @unpublished{Dinitz94, author = {E. Dinitz}, title = {The connectivity carcass of a vertex subset in a graph and its incremental maintenance}, year = 1994, note = {Manuscript}} @unpublished{Dinneen92, author = {Michael J. Dinneen}, title = {A Linear Feedback Vertex Set Algorithm for Bounded Pathwidth Graphs}, note = {Manuscript}, year = 1992} @phdthesis{Dinneen95, author = {Michael John Dinneen}, title = {Bounded Combinatorial Width and Forbidden Substructures}, school = {University of Victoria}, year = 1995 } @inproceedings{DinneenK00, author = {Michael J. Dinneen and Bakhadyr Khoussainov}, title = {Update networks and their routing strategies}, booktitle = {Preproceedings WG'2000}, pages = {65-74}, year = 2000} @article{DinneenCF01, author = {M. J. Dinneen and K. Cattell and M. R. Fellows}, title = {Forbidden minors to graphs with small feedback sets}, journal = dm, volume = 130, pages = {215-252}, year = 2001} @article{DinskiZ99, author = {Thomas Dinski and Xuding Zhu}, title = {A bound for the game chromatic number of graphs}, journal = dm, volume = 196, pages = {109-115}, year = 1999} %Dir @article{Dirac61, author = {G.A. Dirac}, title = {On rigid circuit graphs}, journal = amsuh, volume = 25, year = 1961, pages = {71-76}} %Diw @article{Diwan00, author = {A. Diwan}, title = {Decomposing graphs with girth at least five under degree constraints}, journal = jgt, volume = 33, pages = {237-239}, year = 2000} %Dj %Dje @article{Djelloul09, author = {Selma Djelloul}, title = {Treewidth and logical definability of graph products}, journal = tcs, volume = 410, pages = {696-710}, year = 2009} %Dji @article{Djidjev82, author = {Hristo N. Djidjev}, title = {On the problem of partititioning planar graphs}, journal = sjadm, volume = 3, year = 1982, pages = {229-240}} @inproceedings{Djidjev88, author = {Hristo N. Djidjev}, title = {Linear algorithms for graph separation problems}, editor = {Rolf G. Karlsson and Andzej Lingas}, booktitle = swat88, publisher = lncs318, year = 1988, pages = {216-222}} @techreport{DjidjevG90, author = {Hristo N. Djidjev and John R. Gilbert}, title = {Separators in Graphs with Negative or Multiple Vertex Weights}, number = {CSL-90-8}, institution = {Xerox Corporation, Palo Alto}, year = 1990 } @article{DjidjevV97, author = {Hristo N. Djidjev and S. M. Venkatesan}, title = {Reduced constants for simple cycle graph separation}, journal = ai, volume = 34, pages = {231-243}, year = 1997} %Do %Doh @article{DohmenPT03, author = {Klaus Dohmen and Andr\'{e} P\"{o}nitz and Peter Tittmann}, title = {A new two-variable generalization of the chromatic polynomial}, journal = dmtcs, year = 2004, pages = {69-90}, volume = 6} %Dol @article{DolamaS06, author = {Mohammad Hosseini Dolama and \'{E}ric Sopena}, title = {On the oriented chromatic number of {H}alin graphs}, journal = ipl, volume = 98, year = 2006, pages = {247-252}} @techreport{DolevT82, author = {D. Dolev and H. Trickey}, title = {Embedding a Tree on a Line}, institution = {IBM San Jose}, year = 1982, type = {IBM Techn. Report}, number = {RJ3368} } @article{DolevLT84, author = {D. Dolev and T. Leighton and H. Trickey}, title = {Planar embeddings of planar graphs}, journal = {Adv. in Comput. Res.}, volume = 2, pages = {53-76}, year = 1984 } %Dom @inproceedings{DomLS09, author = {Michael Dom and Daniel Lokshtanov and Saket Saurabh}, title = {Incompressibility through colors and {IDs}}, editor = {Susanne Albers and Alberto Marchetti-Spaccamela and Yossi Matias and Sotiris E. Nikoletseas and Wolfgang Thomas}, booktitle = icalp09-1, year = 2009, pages = {378-389}, publisher = lncs5555} @inproceedings{DomLSV08, author = {Michael Dom and Daniel Lokshtanov and Saket Saurabh and Yngve Villanger}, title = {Capacitated domination and covering: A parameterized perspective}, editor = {Martin Grohe and Rolf Niedermeier}, booktitle = iwpec08, publisher = lncs5018, year = 2008, pages = {78-91}} @article{DomFHN08, author = {Michael Dom and Jiong Guo and Falk H\"{u}ffner and Rolf Niedermeier}, title = {Closest 4-leaf power is fixed-parameter tractable}, journal = dam, volume = 156, year = 2008, pages = {3345-3361}} %Don @article{Doner70, author = {J. Doner}, title = {Tree acceptors and some of their applications}, journal = jcss, volume = 4, year = 1970, pages = {406-451}} %Dor %Dorn 2005 @inproceedings{DornPBF05, author = {Frederic Dorn and Eelko Penninkx and Hans L. Bodlaender and Fedor V. Fomin}, title = {Efficient exact algorithms on planar graphs: {E}xploiting sphere cut branch decompositions}, booktitle = esa05, publisher = lncs3669, pages = {95-106}, year = 2005} %Dorn 2006 @inproceedings{Dorn06, author = {Frederic Dorn}, title = {Dynamic Programming and Fast Matrix Multiplication}, booktitle = esa06, publisher = lncs4168, pages = {280-291}, year = 2006} @inproceedings{DornT06, author = {Frederic Dorn and Jan Arne Telle}, title = {Two birds with one stone: the best of branchwidth and treewidth with one algorithm}, editor = {Jos\'{e} R. Correa and Alejandro Hevia and Marcos A. Kiwi}, booktitle = latin06, publisher = lncs3887, year = 2006, pages = {386-397}} %Dorn 2007 @inproceedings{Dorn07, author = {Frederic Dorn}, title = {How to Use Planarity Efficiently: New Tree-Decomposition Based Algorithms}, editor = {Andreas Brandst\"{a}dt and Dieter Kratsch and Haiko M\"{u}ller}, booktitle = wg07, publisher = lncs4769, year = 2007, pages = {280-291}} %Dorn 2008 @inproceedings{DornFT08, author = {Frederic Dorn and Fedor V. Fomin and Dimitrios M. Thilikos}, title = {Catalan structures and dynamic programming in $H$-minor-free graphs}, booktitle = soda08, year = 2008, pages = {631-640}} %Dorn 2009 @article{DornT09, author = {Frederic Dorn and Jan Arne Telle}, title = {Semi-nice tree-decompositions: The best of branchwidth, treewidth and pathwidth with one algorithm}, journal = dam, volume = 157, year = 2009, pages = {2737-2746}} %Dorn 2010 @article{Dorn10, author = {Frederic Dorn}, title = {Dynamic programming and planarity: Improved tree-decomposition based algorithms}, journal = dam, volume = 158, year = 2010, pages = {800-808}} %Dou @article{DourisboureG07, author = {Yon Dourisboure and Cyril Gavoille}, title = {Tree-decompositions with bags of small diameter}, journal = dm, volume = 307, year = 2007, pages = {2008-2029}} %Dow @inproceedings{DowK07, author = {P. Alex Dow and Richard E. Korf}, title = {Best-First search for treewidth}, booktitle = aaai07, pages = {1146-1151}, publisher = {AAAI Press}, year = 2007} %Downey 1991 @article{DowneyF91b, author = {Rodney G. Downey and Michael R. Fellows}, title = {Fixed-Parameter Tractability and Completeness {II}: {O}n completeness for {$W[1]$}}, journal = tcs, volume = 141, pages = {109-131}, year = 1995} %Downey 1992 @incollection{DowneyF92, author = {Rodney G. Downey and Michael R. Fellows}, title = {Fixed-Parameter Tractability and Completeness {III}: Some Structural Aspects of the {$W$} Hierarchy}, booktitle = {Complexity Theory}, year = 1993, editor = {K. Ambos-Spies and S. Homer and U. Sch\"{o}ning}, publisher = {Cambridge University Press}, pages = {191-226}} @article{DowneyF92a, author = {Rodney G. Downey and Michael R. Fellows}, title = {Fixed-Parameter Tractability and Completeness}, year = 1992, journal = cn, volume = 87, pages = {161-178}} @inproceedings{DowneyF92b, author = {Rodney G. Downey and Michael R. Fellows}, title = {Fixed parameter intractability}, booktitle = {Proceedings of the 7th Annual IEEE Conference on Structure in Complexity Theory}, pages = {36-49}, year = 1992} %Downey 1993 @inproceedings{DowneyEF93, author = {Rodney G. Downey and P. A. Evans and Michael R. Fellows}, title = {Parameterized learning complexity}, booktitle = {Proceedings 6th ACM Workshop on Computational Learning Theory, COLT'93}, pages = {51-57}, year = 1993} @techreport{DowneyFKHW93, author = {Rodney G. Downey and Michael R. Fellows and B. M. Kapron and Michael T. Hallett and H. Todd Wareham}, title = {The parameterized complexity of some problems in logic and linguistics}, institution = {Department of Computer Science, University of Victoria}, address = {Victoria, B.C., Canada}, year = 1993, type = {Technical Report}} @unpublished{DowneyF-1, author = {Rodney G. Downey and Michael R. Fellows}, title = {Parameterized computational feasibility}, note = {To appear in Proc. Second Cornell Workshop on Feasible Mathematics (Birkhauser, Boston)}} %Downey 1995 @article{DowneyF95, author = {Rodney G. Downey and Michael R. Fellows}, title = {Fixed-Parameter Tractability and Completeness {I}: Basic Results}, journal= siamjc, volume = 24, pages = {873-921}, year = 1995} @article{DowneyF95a, author = {Rodney G. Downey and Michael R. Fellows}, title = {Fixed-Parameter Tractability and Completeness {II}: On completeness for {$W[1]$}}, journal = tcs, volume = 141, year = 1995, pages = {109-131}} %Downey 1997 @incollection{DowneyFS97, author = {Rodney G. Downey and Michael R. Fellows and Ulrike Stege}, title = {Parameterized Complexity: A Framework for Systematically Confronting Computational Intractability}, booktitle = {DIMACS Series in Discrete Mathematics and Theoretical Computer Science}, publisher = {American Mathematical Society}, year = {1997}, pages = {49--99}} %Downey 1998 @book{DowneyF98, author = {Rodney G. Downey and Michael R. Fellows}, title = {Parameterized Complexity}, publisher = {Springer}, year = 1999} %Remark: change year in 1999 @article{DowneyF98a, author = {Rodney G. Downey and Michael R. Fellows}, title = {Threshold dominating sets and an improved characterization of {$W[2]$}}, journal = tcs, volume = 209, pages = {123-140}, year = 1998} %Downey 1999 @article{DowneyFS99, author = {Rodney G. Downey and Michael R. Fellows and Ulrike Stege}, title = {Computational Tractability: The View From Mars}, journal = beatcs, volume = 69, year = 1999, pages = {73-97}} @book{DowneyF99, author = {Rodney G. Downey and Michael R. Fellows}, title = {Parameterized Complexity}, publisher = {Springer}, year = 1999} @article{DowneyFVW99, author = {Rodney G. Downey and Michael R. Fellows and A. Vardi and G. Whitte}, title = {The parameterized complexity of some fundamental problems in coding theory}, journal = siamjc, volume = 29, year = 1999, pages = {545-570}} %Downey 2007 @article{DowneyM07, author = {Rodney G. Downey and Catherine McCartin}, title = {Online promise problems with online width metrics}, journal = jcss, volume = 73, year = 2007, pages = {56-72}} %Downey 2008 @article{DowneyFMR08, author = {Rodney G. Downey and Michael R. Fellows and Catherine McCartin and Frances A. Rosamond}, title = {Paramterized approximation of dominating set problems}, journal = ipl, volume = 109, year = 2008, pages = {68-70}} %Dr %Dra @techreport{DraganB93, author = {Feodor F. Dragan and Andreas Brandst\"{a}dt}, title = {$r$-{D}ominating cliques in {H}elly graphs and chordal graphs}, institution = {Universit\"{a}t Duisburg GH}, number = {SM-DU-228}, year = 1993} @article{DraganT10, author = {Feodor F. Dragan and Chenyu Yan}, title = {Collective tree spanners in graphs with bounded parameters}, journal = alg, volume = 57, year = 2010, pages = {22-43}} %Dre @inproceedings{Dress??, author = {A. W. M. Dress}, title = {On the computational complexity of composite systems}, editor = {L. Garrido}, booktitle = {Fluctuations and stochastic phenomena in condensed matter, Springer Lecture Notes in Physics 268}, year = {???}} @inproceedings{DrewesK90, author = {F. Drewes and {H.-J.} Kreowski}, title = {A note on hyperedge replacement}, editor = {Hartmut Ehrig and Manfred Nagl and Grzegorz Rozenberg}, booktitle = gragra90, publisher = lncs532, pages = {1-12}, year = 1990} %Du %Duc @article{DuchonHLS06, author = {Philippe Duchon and Nicolas Hanusse and Emmanuelle Lebhar and Nicolas Schabanel}, title = {Can any graph be turned into a small-world}, journal = tcs, volume = 355, pages = {96-103}, year = 2006} %Duf @article{DuffR83, author = {Iain S. Duff and J. K. Reid}, title = {The multifrontal solution of indefinite sparse symmetric linear equations}, journal = {ACM Transactions on Mathematical Software}, volume = 9, year = 1983, pages = {302-325}} @article{Duffin65, author = {R. J. Duffin}, title = {Topology of series-parallel graphs}, journal = jmaa, volume = 10, year = 1965, pages = {303-318}} %Duj @article{DujmovicMW05, author = {V. Dujmovi\'{c} and P. Morin and D. R. Wood}, title = {Layout of graphs with bounded tree-width}, journal = siamjc, volume = 34, year = 2005, pages = {554-579}} @article{DujmovicW05, author = {V. Dujmovi\'{c} and D. R. Wood}, title = {Stacks, queues and tracks: Layouts of graph subdivisions}, journal = dmtcs, volume = 7, year = 2005, pages = {155-202}} @inproceedings{DujmovicW06, author = {Vida Dujmovi\'{c} and David R. Wood}, title = {Graph treewidth and geometric thickness parameters}, editor = {Patrick Healy and Nikola S. Nikolov}, booktitle = gd05, publisher = lncs3843, year = 2006, pages = {129 - 140}} %Dum @article{DumitrescuSZ08, author = {Adrian Dumitrescu and Ichiro Suzuki and Pawel Zylinski}, title = {Offline variants of the ''lion and man'' problem --- {S}ome problems and techniques for measuring crowdedness and for safe path planning ---}, journal = tcs, volume = 399, year = 2008, pages = {220-235}} %Dun @article{DunnK04, author = {Charles Dunn and H. A. Kierstead}, title = {A simple competitive graph coloring algorithm {II}}, journal = jctb, volume = 90, year = 2004, pages = {93-106}} @article{DunnK04a, author = {Charles Dunn and H. A. Kierstead}, title = {A simple competitive graph coloring algorithm {III}}, journal = jctb, volume = 90, year = 2004, pages = {137-150}} @article{DunnK04b, author = {Charles Dunn and H. A. Kierstead}, title = {The relaxed game chromatic number of outerplanar graphs}, journal = jgt, volume = 46, year = 2004, pages = {69-78}} @article{Dunn07, author = {Charles Dunn}, title = {The relaxed game chromatic index of $k$-degenerate graphs}, journal = dm, volume = 307, year = 2007, pages = {1767-1775}} %Dy @article{DyerF86, author = {M. E. Dyer and A. M. Frieze}, title = {Planar {3DM} is {NP}-complete}, journal = ja, volume = 7, year = 1986, pages = {174-184}} %E %Ea %Ead @article{EadesLS93, author = {P. Eades and X. Lin and W. F. Smyth}, title = {A fast and effective heuristic for the feedback arc set problem}, journal = ipl, volume = 47, year = 1993, pages = {319-323}} %Eas @article{EaswarakumarPC94, author = {K. S. Easwarakumar and C. {Pandu Rangan} and G. A. Cheston}, title = {A linear algorithm for centering a spanning tree of a biconnected graph}, journal = ipl, volume = 51, year = 1994, pages = {121-124}} %Eb @book{Ebert81, author = {J. Ebert}, title = {Efficiente Graphenalgorithmen}, publisher = {Akademische Verlagsgesellschaft}, address = {Wiesbaden}, year = 1981 } %Ed @article{Edenbrandt87, author = {A. Edenbrandt}, title = {Chordal graph recognition is in {NC}}, journal = ipl, volume = 24, year = 1987, pages = {239-241}} @article{Edmonds65, author = {J. Edmonds}, title = {Paths, trees, and flowers}, journal = canjm, volume = 17, pages = {445-467}, year = 1965} @article{Edwards86, author = {K. Edwards}, title = {The complexity of Coloring Problems on Dense Graphs}, journal = tcs, volume = 16, year = 1986, pages = {337-343}} %Eh @techreport{EhrenfeuchtER93, author = {Andrzej Ehrenfeucht and Joost Engelfriet and Grzegorz Rozenberg}, title = {Finite Languages for the Representation of Graphs}, year=1993, number = {93-03}, institution = {Department of Computer Science, Leiden University}, address = {Leiden, The Netherlands}} %Ei %Eij @article{EijkhofBK07, author = {Eijkhof, Frank {v}an {d}en and Hans L. Bodlaender and Arie M. C. A. Koster}, title = {Safe reduction rules for weighted treewidth}, journal = alg, volume = 47, year = 2007, pages = {138-158}} %Eil @article{EilamMZ02, author = {T. Eilam and S. Moran and S. Zaks}, title = {The complexity of the characterization of networks supporting shortest-path interval routing}, journal = tcs, volume = 289, year = 2002, pages = {85-104}} %El %Ellis 1987 @techreport{EllisST87a, author = {John A. Ellis and Ivan Hal Sudborough and J. Turner}, title = {Graph Separation and Search Number}, type = {Report}, number = {DCS-66-IR}, institution = {University of Victoria}, year = 1987 } %Ellis 1989 @article{EllisMM89, author = {John A. Ellis and Manrique Mata and Gary Mac{G}illivray}, title = {A linear time algorithm for longest $(s,t)$-paths in weighted outerplanar graphs}, journal = ipl, volume = 32, year = 1989, pages = {199-204}} %Ellis 1994 @article{EllisST94, author = {John A. Ellis and Ivan Hal Sudborough and J. Turner}, title = {The vertex separation and search number of a graph}, journal =ic2, volume = 113, year = 1994, pages = {50-79}} %Ellis 2002 @inproceedings{EllisFF02, author = {J. Ellis and H. Fan and M. R. Fellows}, title = {The dominating set problem is fixed parameter tractable for graphs of bounded genus}, booktitle = swat02, publisher = lncs2368, pages = {180-189}, year = 2002} %Ellis 2004 @article{EllisM04, author = {John Ellis and Minko Markov}, title = {Computing the vertex separation of unicyclic graphs}, journal = ic2, volume = 192, year = 2004, pages = {123-161}} @article{EllisFF04, author = {J. Ellis and H. Fan and M. R. Fellows}, title = {The dominating set problem is fixed parameter tractable for graphs of bounded genus}, journal = ja, year = 2004, volume = 52, pages = {152-168}} %Ellis 2008 @article{EllisW08, author = {John Ellis and Robert Warren}, title = {Lower bounds on the pathwidth of some grid-like graphs}, journal = dam, volume = 156, year = 2008, pages = {545-555}} %ElM %Elm @phdthesis{ElMallah87, author = {E. S. El-{M}allah}, title = {Decomposition and Embedding Problems for Restricted Networks}, school = {University of Waterloo}, year = 1987} @article{ElMallahC88, author = {E. S. El-{M}allah and Charles J. Colbourn}, title = {Partial $k$-tree algorithms}, journal = cn, volume = 64, year = 1988, pages = {105-119}} %Em @inproceedings{EmdeBoas75, author = {Peter {van Emde Boas}}, title = {Preserving order in a forest in less than logarithmic time}, booktitle = focs75, year = 1975, pages = {75-84}} @inproceedings{EmdeBoas82, author = {Peter {van Emde Boas}}, title = {Dominoes are forever}, editor = {L. Priese}, booktitle = {Proceedings of the 1st GTI Workshop, Paderborn Oct. 1982, Rheie Theoretische Informatik UGH}, year = 1982, pages = {75-95}} @inproceedings{EmdeBoas97, author = {Peter {van Emde Boas}}, title = {The convenience of tilings}, booktitle = {Complexity, Logic and Recursion Theory}, editor = {A. Sorbi}, publisher = {Lecture Notes in Pure and Applied Mathematics, vol. 187, Marcel Dekker Inc.}, year = 1997, pages = {331-363}} %En @article{EngelG03, author = {Konrad Engel and Sven Guttmann}, title = {Testing bandwidth for $k$-connected graphs}, journal = sjdm, volume = 16, year = 2003, pages = {301-312}} %Engelfriet 1987 @unpublished{EngelfrietLW87, author = {Joost Engelfriet and George Leih and Emo Welzl}, title = {Characterization and Complexity of Boundary Graph Languages}, year = 1987, note = {Manuscript}, remark = {Among many other results, it is shown that for given $k$ and $d$, the set of all (connected) graphs of tree-width $\leq k$ and degree $leq d$ is in LOG(CF)} } %Engelfriet 1991 @article{EngelfrietH91, author = {Joost Engelfriet and Linda Heyker}, title = {The String Generating Power of Context-Free Hypergraph Grammars}, journal = jcss, volume = 43, number = 2, year = 1991, pages = {328-360}} @article{EngelfrietHL91, author = {Joost Engelfriet and Linda M. Heyker and G. Leih}, title = {Context-free graph languages of bounded degree are generated by {A}pex graph grammars}, journal = ai, volume = 31, year = 1994, pages = {341-378}} %Engelfriet 1992 @inproceedings{Engelfriet92, author = {Joost Engelfriet}, title = {A {G}reibach normal form for context-free graph grammars}, editor = {W. Kuich}, booktitle = icalp92, publisher = lncs623, pages = {138-149}, year = 1992} @article{EngelfrietH92, author = {Joost Engelfriet and Linda Heyker}, title = {Context-free hypergraph grammars have the same term-generating power as attribute grammars}, journal = ai, volume = 29, pages = {161-210}, year = 1992} %Engelfriet 1993 @techreport{EngelfrietHPG93, author = {Joost Engelfriet and T. Harju and Andrzej Proskurowski and G. Rozenberg}, title = {Survey on Graphs as 2-structures and Parallel Complexity of Decomposition}, type = {Technical Report}, institution ={Department of Computer Science, Leiden University}, year = 1993, number = {93-06}} @techreport{EngelfrietV93, author = {Joost Engelfriet and Jan Joris Vereijken}, title = {Context-Free Graph Grammars and Concatenation of Graphs}, type = {Technical Report}, institution ={Department of Computer Science, Leiden University}, year = 1993, number = {93-06}} %Engelfriet 1996 @techreport{Engelfriet96, author = {Joost Engelfriet}, title = {Context-Free Graph Grammars}, type = {Technical Report}, institution ={Department of Computer Science, Leiden University}, year = 1996, number = {96-32}} %Enr @article{EnrightS07, author = {Jessica Enright and Lorna Stewart}, title = {Subtree filament graphs are subtree overlap graphs}, journal = ipl, volume = 104, year = 2007, pages = {228-232}} %Ep %Epp %Eppstein 1992 @article{Eppstein92, author = {David Eppstein}, title = {Parallel recognition of series parallel graphs}, journal = ic2, volume = 98, pages = {41-55}, year = 1992} %Eppstein 1999 @article{Eppstein99, author = {David Eppstein}, title = {Subgraph isomorphism in planar graphs and related problems}, journal = jgaa, volume = 3, pages = {1-27}, year = 1999} %Eppstein 2000 @article{Eppstein00, author = {David Eppstein}, title = {Diameter and treewidth in minor-closed graph families}, journal = alg, volume = 27, year = 2000, pages = {275-291}} %Eppstein 2001 @inproceedings{Eppstein01, author = {David Eppstein}, title = {Small maximal independent sets and faster exact graph coloring}, editor = {Frank K. H. A. Dehne and J\"{o}rg-R\"{u}diger Sack and Roberto Tamassia}, booktitle = wads01, publisher = lncs2125, year = 2001, pages = {462-470}} %Eppstein 2003 @article{Eppstein03, author = {David Eppstein}, title = {Small maximal independent sets and faster exact graph coloring}, xJOURNAL = {J. Graph Algorithms Appl.}, journal = jgaa, volume = 7, year = 2003, pages = {131-140}} %Eppstein 2003 @inproceedings{Eppstein04, author = {David Eppstein}, title = {Quasiconvex analysis of backtracking algorithms}, booktitle = soda04, year = 2004, pages = {781-790}} %Er %Erd @article{ErdosS35, author = {Paul Erd\"{o}s and G. Szekeres}, title = {A combinatorial problem in geometry}, journal = {Compos. Math.}, volume = 2, year = 1935, pages = {464-470}} @article{ErdosK63, author = {Paul Erd\"{o}s and Paul Kelly}, title = {The minimal regular graph containing a given graph}, journal = amm, volume = 70, pages = {1074-1075}, year = 1963} @article{ErdosP65, author = {Paul Erd\"{o}s and L. P\'{o}sa}, title = {On the independent circuits contained in a graph}, journal = canjm, volume = 17, pages = {347-352}, year = 1965} @article{ErdosGK91, author = {Paul Erd\"{o}s and John Gimbel and Dieter Kratsch}, title = {Some extremal results in cochromatic and dichromatic theory}, year = 1991, journal = jgt, volume = 15, number = 6, pages = {579-585}} %Erl @inproceedings{ErlebachL08, author = {Thomas Erlebach and Erik Jan van Leeuwen}, title = {Domination in geometric intersection graphs}, editor = {Eduardo Sany Laber and Claudson F. Bornstein and Loana Tito Nogueira and Luerbio Faria}, booktitle = latin08, year = 2008, publisher = lncs4957, pages = {747-758}} %Es %Esp @inproceedings{EspelageGW01, author = {Wolfgang Espelage and Frank Gurski and Egon Wanke}, title = {Deciding clique-width for graphs of bounded treewidth}, editor = {Frank K. H. A. Dehne and J\"{o}rg-R\"{u}diger Sack and Roberto Tamassia}, year = 2001, pages = {87-98}, booktitle = wads01, publisher = lncs2125} @article{EspelageGW03, author = {Wolfgang Espelage and Frank Gurski and Egon Wanke}, title = {Deciding clique-width for graphs of bounded treewidth}, journal = jgaa, volume = 7, year = 2003, pages = {141-180}} %Est @inproceedings{Estivill-CastroFLR05, author = {Vladimir Estivill-Castro and Michael R. Fellows and Michael A. Langston and Frances A. Rosamond}, title = {FPT is {P}-time extremal structure {I}}, editor = {Hajo Broersma and Matthew Johnson and Stefan Szeider}, booktitle = acid05, publisher = {King's College, London}, series = {Text in Algorithms}, volume = 4, year = 2005, pages = {1-41}} %Esw @article{EswaranT76, author = {Kapali P. Eswaran and R. Endre Tarjan}, title = {Augmentation Problems}, journal = siamjc, volume = 5, year = 1976, pages = {653-665}} %Ev @article{Evans91, author = {G. A. Evans}, title = {Combinatoric strategies for genome mapping}, journal = {Bioassays}, volume = 13, year = 1991, pages = {39-44}} @inproceedings{EvenK75, author = {Simon Even and O. Kariv}, title = {An {O}($n^{2.5}$) Algorithm for Maximum Matching in General Graphs}, booktitle = focs75, year = 1975, pages = {100-112}} @article{EvenT75, author = {Simon Even and Robert Endre Tarjan}, title = {Network flow and testing graph connectivity}, journal = siamjc, volume = 4, year = 1975, pages = {507-518}} @article{EvenT76, author = {S. Even and R. E. Tarjan}, title = {A combinatorial problem which is complete in polynomial space}, journal = jacm, volume = 23, year = 1976, pages = {710-719}} @article{EvenT76a, author = {S. Even and R. E. Tarjan}, title = {Computing an $st$-numbering}, journal = tcs, volume = 2, year = 1976, pages = {339-344}} @book{Even79, title = {Graph Algorithms}, author = {Simon Even}, year = 1979, publisher = {Pitman}, address = {London} } @article{EvenNRS99, author = {G. Even and J. Naor and S. Rao and B. Schieber}, title = {Fast approximate graph partitioning algorithms}, journal = siamjc, volume = 28, year = 1999, pages = {2187-2214}} %F %Fa %Fai @techreport{FaigleK90, author = {U. Faigle and W. Kern}, title = {The Game Chromatic Number of Trees is 4}, type = {Memorandum}, number = {871}, year = 1990, institution = {Department of Applied Mathematics, University of Twente}, address = {Enschede, The Netherlands}} @article{FaigleKKT93, author = {U. Faigle and W. Kern and H. Kierstead and W. T. Trotter}, title = {On the Game Chromatic Number of Some Classes of Graphs}, journal = arscomb, volume = 35, pages = {143-150}, year = 1993} %Far @article{Farber82, author = {M. Farber}, title = {Independent domination in chordal graphs}, journal = orl, volume = 1, year = 1982, pages = {134-138}} @article{Farber83, author = {M. Farber}, title = {Characterizations of strongly chordal graphs}, journal = dm, volume = 43, pages = {173-189}, year = 1983 } @article{Farber84, author = {M. Farber}, title = {Domination, independent domination, and duality in strongly chordal graphs}, journal = dam, volume = 7, year = 1984, pages = {115-130}} @article{FarberK85, author = {M. Farber and J. Mark Keil}, title = {Domination in permutation graphs}, journal = ja, volume = 6, year = 1985, pages = {309-321}} @article{FarberHHM86, author = {Martin Farber and Ge\~na Hahn and Pavol Hell and Donald Miller}, title = {Concerning the achromatic number of graphs}, journal = jctb, volume = 40, year = 1986, pages = {21-39}} @article{FarleyP80, author = {A. M. Farley and A. Proskurowski}, title = {Computation of the Center and Diameter of Outerplanar Graphs}, journal = dam, volume = 2, year = 1980, pages = {185-191}} @article{Farley81, author = {A. M. Farley}, title = {Networks immune to isolated failures}, journal = netw, volume = 11, pages = {255-268}, year = 1981} @article{FarleyHP81, author = {A. M. Farley and S. Hedetniemi and A. Proskurowski}, title = {Partitioning Trees: Matching, Domination, and Maximum diameter}, journal = ijcis, volume = 10, pages = {55-61}, number = 1, year = 1985} @article{FarleyP82, author = {A. M. Farley and A. Proskurowski}, title = {Networks immune to isolated line failures}, journal = netw, volume = 12, pages = {393-403}, year = 1982} %Fat @article{FathFS02, author = {K. Fath and P. Flocchini and S. Pierre}, title = {Compact routing in chordal grids and other networks}, journal = {INFOR: Information Systems and Operational Research}, volume = 40, year = 2002, pages = {119-130}} %Fe %Fed @article{FederHKNP05, author = {Tom\'{a}s Feder and Pavol Hell and Sulamita Klein and Loana Tito Nogueira and F\'{a}bio Protti}, title = {List partitions of chordal graphs}, journal = tcs, volume = 349, pages = {52-66}, year = 2005} %Fei %Feige 2000 @inproceedings{Feige00, author = {U. Feige}, title = {Coping with the {NP}-hardness of the graph bandwidth problem}, editor = {Magn\'{u}s M. Halld\'{o}rsson}, booktitle = swat00, publisher = lncs1851, year = 2000, pages = {10-19}} %Feige 2005 @inproceedings{FeigeHL05, author = {U. Feige and M. Hajiaghayi and J. R. Lee}, title = {Improved approximation algorithms for minimum-weight vertex separators}, booktitle = stoc05, pages = {563-572}, publisher = {ACM Press}, year = 2005} %Feige 2006 @inproceedings{FeigeM06, author = {Uriel Feige and Mohammad Mahdian}, title = {Finding small balanced separators}, year = 2006, pages = {375-384}, booktitle = stoc06, publisher = {ACM Press}, addres = {New York}} %Feige 2009 @article{FeigeT09, author = {Uriel Feige and Kunal Talwar}, title = {Approximating the bandwidth of caterpillars}, journal = alg, volume = 55, year = 2009, pages = {190-204}} %Fel %Fellows @misc{FellowsPC, author = {Michael R. Fellows}, note = {Personal communication}} %Fellows 1987 @unpublished{FellowsHS87, author = {Michael R. Fellows and F. Hickling and Maciej M. Sys{\l}o}, title = {A Topological Parameterization and Hard Graph Problems}, year = 1987, note = {Presented at Boca Raton, Florida. Final paper in preparation.}} @article{FellowsL87, author = {Michael R. Fellows and Michael A. Langston}, title = {Nonconstructive advances in polynomial-time complexity}, year = 1987, journal = ipl, volume = 26, pages = {157-162}} @article{FellowsL87a, author = {Michael R. Fellows and Michael A. Langston}, title = {Nonconstructive tools for proving polynomial-Time decidability}, year = 1988, journal = jacm, volume = 35, pages = {727-739}} @inproceedings{FellowsL87b, author = {Michael R. Fellows and Michael A. Langston}, title = {Layout Permutation Problems and Well-Partially-Ordered Sets}, year = 1988, booktitle = {5th MIT Conf. on Advanced Research in VLSI}, address = {Cambridge, MA}, publisher = lncs319, editor = {J. Reif}, pages = {315-327} } %Fellows 1988 @article{FellowsFL88, author = {Michael R. Fellows and Donald K. Friesen and Michael A. Langston}, title = {On finding optimal and near-optimal lineal spanning trees}, journal = alg, volume = 3, year = 1988, pages = {549-560}} @inproceedings{FellowsL88, author = {Michael R. Fellows and Michael A. Langston}, title = {On search, decision and the efficiency of polynomial-time algorithms}, booktitle = stoc89, pages = {501-512}, year = 1989 } @inproceedings{FellowsL88a, author = {Michael R. Fellows and Michael A. Langston}, title = {Fast self-reduction algorithms for combinatorial problems of {VLSI} design}, editor = {John H. Reif}, booktitle = {Proceedings of the 3rd Aegean Workshop on Computing, AWOC'88}, year = 1988, pages = {278-287}, publisher = lncs319} @techreport{FellowsL88a+, author = {Michael R. Fellows and Michael A. Langston}, title = {Fast Search Algorithms for Graph Layout Permutation Problems}, number = {CS-88-189}, institution = {Dept. of Computer Science, Washington State University}, year = 1988 } %Fellows 1989 @misc{Fellows89, author = {Michael R. Fellows}, note = {Personal communication}, year = 1989 } @article{Fellows89a, author = {Michael R. Fellows}, title = {The {R}obertson-{S}eymour theorems: {A} survey of applications}, journal = {Contemporary Mathematics}, volume = 89, year = 1989, pages = {1-18}} @unpublished{FellowsA89, author = {Michael R. Fellows and Karl R. Abrahamson}, title = {Cutset-Regularity Beats Well-Quasi-Ordering for Bounded Treewidth}, note = {Manuscript}, year = 1989 } @inproceedings{FellowsKL89, author = {Michael R. Fellows and N. G. Kinnersley and Michael A. Langston}, title = {Finite-basis theorems, and a computational integrated approach to obstruction set isolation}, editor = {E. Kaltofen and S. M. Watt}, booktitle = {Proceedings of the 3rd Conference on Computers and Mathematics}, publisher = {Springer Verlag}, address = {New York}, pages = {37-45}, year = 1989 } @inproceedings{FellowsL89, author = {Michael R. Fellows and Michael A. Langston}, title = {An analogue of the {M}yhill-{N}erode theorem and its use in computing finite-basis characterizations}, booktitle = focs89, year = 1989, pages = {520-525}} @unpublished{FellowsL89a, author = {Michael R. Fellows and Michael A. Langston}, title = {Exploiting {RS}-posets: Constructive Algorithms from Nonconstructive tools}, note = {Preprint}, year = 1989, month = {2}, pages = {1-7}} @unpublished{Fellows89b, author = {Michael R. Fellows}, title = {Application of an Analoque of the {Myhill-Nerode} Theorem in Obstruction Set Computation}, year = 1989, note = {preprint}, pages = {1-12}} @unpublished{Fellows89c, author = {Michael R. Fellows}, title = {Regular Languages and Software Engineering Principles}, note = {Draft manuscript}, year = 1989, month = {4}, pages = {1-10}} @unpublished{FellowsS89, author = {Michael R. Fellows and Sam Stueckle}, title = {The Immersion Order, Forbidden Subgraphs and the Complexity of Network Integrity}, year = 1989, note = {Manuscript, to appear in J. Comb. Math. Comb. Comput.} } %Fellows 1991 @incollection{FellowsKMP91, author = {Michael R. Fellows and Jan Kratochv{\'{\i}}l and Matthias Middendorf and Frank Pfeiffer}, title = {Induced Minors and Related Problems}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {179-182}, year = 1993} @article{FellowsL91, author = {Michael R. Fellows and Michael A. Langston}, title = {Fast search algorithms for layout permutation problems}, journal = {International Journal on Computer Aided VLSI Design}, volume = 3, year = 1991, pages = {325-340}} @inproceedings{FellowsL91a, author = {Michael R. Fellows and Michael A. Langston}, title = {Constructivity Issues in Graph Algorithms}, booktitle = {Conference on Constructivity in Computer Science, San Antonio, Texas}, year = 1991} %Fellows 1992 @article{FellowsL92, author = {Michael R. Fellows and Michael A. Langston}, title = {On Well-Partial-Order Theory and Its Application to Combinatorial Problems of {VLSI} Design}, journal = sjdm, volume = 5, year = 1992, pages = {117-126}} %Fellows 1993 @inproceedings{FellowsHW93, author = {Michael R. Fellows and Michael T. Hallett and H. Todd Wareham}, title = {{DNA} Physical Mapping: Three Ways Difficult (extended abstract)}, editor = {Thomas Lengauer}, booktitle = esa93, year = 1993, pages = {157-168}, publisher = lncs726} @techreport{FellowsH93, author = {Michael R. Fellows and Donovan R. Hare}, title = {Vertex Transversals That Dominate}, institution = {University of Victoria}, year = 1993} @article{FellowsK91, author = {Michael R. Fellows and P. Kaschube}, title = {Searching for {$K_{3,3}$} in Linear Time}, journal = {Linear and Multilinear Algebra}, volume = 29, year = 1991, pages = {279-290}} @inproceedings{FellowsK93, author = {Michael R. Fellows and N. Koblitz}, title = {Fixed-parameter complexity and cryptography}, booktitle = {Proceedings of the 10th International Conference on Algebraic Algorithms and Error-Correcting Codes, AAECC 10, Lecture Notes in Computer Science}, year = 1993} %Fellows 1994 @article{FellowsL94, author = {Michael R. Fellows and Michael A. Langston}, title = {On search, decision and the efficiency of polynomial-time algorithms}, journal = jcss, year = 1994, volume = 49, pages = {769-779}} %Fellows 2006 @inproceedings{Fellows06, author = {Micahel R. Fellows}, title = {The lost continent of polynomial time: Preprocessing and kernelization}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {267-277}} @inproceedings{FellowsRRS06, author = {Michael R. Fellows and Frances A. Rosamond and Udi Rotics and Stefan Szeider}, title = {Clique-width minimization is {NP}-hard}, booktitle = stoc06, pages = {354-362}, year = 2006} @unpublished{FellowsLRR06, author = {Michael R. Fellows and Michael A. Langston and M. Ragan and Frances A. Rosamond}, title = {Kernelization for Convex Recoloring of Trees}, year = 2006, note = {Unpublished manuscript}} %Fellows 2008 @article{FellowsKNRRSTW08, author = {Michael R. Fellows and Christian Knauer and Naomi Nishimura and Prabhakar Ragde and Frances A. Rosamond and Ulrike Stege and Dimitrios M. Thilikos and Sue Whitesides}, title = {Faster fixed-parameter tractable algorithms for matching and packing problems}, journal = alg, volume = 52, year = 2008, pages = {167-176}} @inproceedings{FellowsLMRS08, author = {Michael R. Fellows and Daniel Lokshtanov and Neeldhara Misra and Frances A. Rosamond and Saket Saurabh}, title = {Graph layout problems parameterized by vertex cover}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {294-305}} %Fellows 2009 @article{FellowsHRV09, author = {Michael R. Fellows and Danny Hermelin and Frances Rosamond and St\'{e}phane Vialette}, title = {On the parameterized complexity of multiple-interval graph problems}, journal = tcs, volume = 410, year = 2009, pages = {53-61}} %Fels @article{Felsenstein82, author = {J. Felsenstein}, title = {Numerical methods for inferring evolutionary trees}, journal = {The Quaterly Review of Biology}, volume = 57, number = 4, year = 1982} @inproceedings{Felsner93, author = {S. Felsner}, title = {Tolerance graphs and orders}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {17-26}} %Fer %Feremans @phdthesis{Feremans01, author = {C. Feremans}, title = {Generalized Spanning Trees and Extensions}, school = {Universit\'{e} Libre de Bruxelles}, address = {Brussels, Belgium}, year = 2001} @article{FeremansLL03, author = {C. Feremans and M. Labb\'{e} and G. Laporte}, title = {Generalized network design problems}, journal = ejor, volume = 148, year = 2003, pages = {1-13}} @techreport{FeremansG04, author = {C. Feremans and A. Grigoriev}, title = {Approximation schemes for the generalized geometric problems with geographic clustering}, type = {METEOR Research Memoranda}, number = {RM/04/034}, institution = {FdEWB, University of Maastricht}, address = {Maastricht, the Netherlands}, year = 2004, note = {http://www.personeel/unimaas.nl/a.grigoriev/research/curved.pdf}} %Fern @article{FernandesLW09, author = {Cristina G. Fernandes and Orlando Lee and Yoshiko Wakabayashi}, title = {Minimum cycle cover and {C}hinese postman problems on mixed graphs of bounded treewidth}, journal = dam, volume = 157, year = 2009, pages = {272-279}} %Fernandez-Baca 1988 @unpublished{FernandezBacaS88, author = {David Fern\'{a}ndez-Baca and Giora Slutzki}, title = {Algorithms for Counting and Enumeration in Decomposable Graphs}, year = 1988, note = {Manuscript}} %Fernandez-Baca 1989 @article{FernandezBaca89, author = {David Fern\'{a}ndez-Baca}, title = {Allocating modules to processors in a distributed system}, journal = ieeetse, volume = {15}, year = 1989, pages = {1427-1436}} @article{FernandezBacaM89, author = {David Fern\'{a}ndez-Baca and Charles U. Martel}, title = {On the efficiency of maximum-flow algorithms on networks with small integer capacities}, journal = alg, year = 1989, volume = 4, pages = {173-189}} @article{FernandezBacaS89, author = {David Fern\'{a}ndez-Baca and Giora Slutzki}, title = {Solving parametric problems on trees}, journal = ja, year = 1989, volume = 10, pages = {381-402}} %Fernandez-Baca 1993 @article{FernandezBacaM93, author = {David Fern\'{a}ndez-Baca and A. Medipalli}, title = {Parametric Module Allocation on Partial $k$-Trees}, journal = ieeetc, year = 1993, volume = 42, pages = {738-742}} %Fernandez-Baca 1994 @article{FernandezBacaS94, author = {David Fern\'{a}ndez-Baca and Giora Slutzki}, title = {Parametic Problems on Graphs of Bounded Treewidth}, journal = ja, volume = 16, pages = {408-430}, year = 1994} @inproceedings{FernandezBacaS94a, author = {David Fern\'{a}ndez-Baca and Giora Slutzki}, title = {Optimal parametric search on graphs of bounded treewidth}, editor = {Erik Meineche Schmidt and Sven Skyum}, booktitle = swat94, pages = {155-166}, publisher = lncs824, year = 1994} %Fernandez-Baca 1997 @article{FernandezBacaS97, author = {David Fern\'{a}ndez-Baca and Giora Slutzki}, title = {Optimal parametric search on graphs of bounded treewidth}, journal = ja, volume = 22, pages = {212-240}, year = 1997} @inproceedings{FerranteR79, author = {J. Ferrante and C. Rackoff}, title = {The computational complexity of logical theories}, booktitle = {Lecture Notes in Mathematics 718}, publisher = {Springer-Verlag}, address = {Berlin}, year = 1979} %Fernau 2001 @article{FernauN01, author = {Henning Fernau and Rolf Niedermeier}, title = {An efficient exact algorithm for constraint bipartite vertex cover}, journal = ja, volume = 38, pages = {374-410}, year = 2001} %Fernau 2004 @inproceedings{FernauJ04, author = {Henning Fernau and David W. Juedes}, title = {A Geometric Approach to Parameterized Algorithms for Domination Problems on Planar Graphs}, editor = {Jir\'{\i} Fiala and V{\'a}clav Koubek and Jan Kratochv\'{\i}l}, booktitle = mfcs04, year = 2004, publisher = lncs3153, pages = {488-499}} %Fernau 2006 @inproceedings{Fernau06, author = {Henning Fernau}, title = {Edge Dominating Set: Efficient enumeration-based exact algorithms}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {140-151}} %Fernau 2008 @article{Fernau08, author = {Henning Fernau}, title = {Parameterized algorithms for linear arrangement problems}, journal = dam, volume = 156, year = 2008, pages = {3166-3177}} %Fernau 2009 @inproceedings{FernauFLRSV09, author = {Henning Fernau and Fedor V. Fomin and Daniel Lokshtanov and Daniel Raible and Saket Saurabh and Yngve Villanger}, title = {Kernel(s) for problems with no kernel: On out-trees with many leaves (Extended abstract)}, editor = {Susanne Albers and Jean-Yves Marion}, series = {Dagstuhl Seminar Proceedings}, publisher = {Leibniz-Zentrum f\"{u}r Informatik}, address = {Schloss Dagstuhl, Germany}, volume = {09001}, booktitle = stacs09, pages = {421-432}, year = 2009} @article{FernauRS09, author = {Henning Fernau and Juan A. Rodr{\'{\i}}guez and Jos\'{e} M. Sigarreta}, title = {Offensive $r$-alliances in graphs}, journal = dam, volume = 157, year = 2009, pages = {177-182}} %Fernau 2010 @article{Fernau10, author = {Henning Fernau}, title = {Minimum dominating set of queens: A trivial programming exercise?}, journal = dam, volume = 157, year = 2010, pages = {308-318}} @article{Fernau10a, author = {Henning Fernau}, title = {Parameterized algorithms for {$d$-Hitting Set}: The weighted case}, journal = tcs, volume = 411, year = 2010, pages = {1698-1713}} %Fert @article{FertinR07, author = {Guillaume Fertin and Andr\'{e} Raspaud}, title = {$L(p,q)$ labeling of $d$-dimensional grids}, journal = dm, volume = 307, year = 2007, pages = {2132-2140}} %Fes @inproceedings{FestaPR99, author = {P. Festa and P. M. Pardalos and M. G. C. Resende}, title = {Feedback set problems}, editor = {D. Z. Du and P. M. Pardalos}, booktitle = {Handbook of Combinatorial Optimization, Vol. A.}, publisher = {Kluwer}, address = {Amsterdam, the Netherlands}, year = 1999, pages = {209-258}} %Fi %Fia @article{FialaKK01, author = {J. Fiala and Ton Kloks and J. Kratochv{\'{\i}}l}, title = {Fixed-parameter complexity of $\lambda$-labelings}, journal = dam, volume = 113, year = 2001, pages = {59-72}} @article{FialaJLS03, author = {J. Fiala and K. Jansen and V. B. Le and E. Seidel}, title = {Graph subcolorings: {C}omplexity and algorithms}, journal = sjdm, volume = 16, pages = {635-650}, year = 2003} %Fig @article{deFigueiredoFKS07, author = {C.M.H. {de Figueiredo} and L. Faria and S. Klein and R. Sritharan}, title = {On the complexity of the sandwich problems for strongly chordal graphs and chordal bipartite graphs}, journal = tcs, volume = 381, year = 2007, pages = {57-67}} %Fil @inproceedings{FilottiMR79, author = {I. S. Filotti and Gary L. Miller and John Reif}, title = {On determining the Genus of a Graph in {$O(V^{O(g)})$} Steps}, publisher = {ACM Press}, address = {New York}, booktitle = stoc79, year = 1979, pages = {27-37}} %Fio @article{Fiorini75, author = {S. Fiorini}, title = {On the chromatic index of outerplanar graphs}, journal = jctb, volume = 18, year = 1975, pages = {35-38}} @book{FioriniW77, author = {S. Fiorini and R. J. Wilson}, title = {Edge-colorings of Graphs}, publisher = {Pitman}, address = {London}, year = 1977 } %Fis @article{FishburnF82, author = {J. P. Fishburn and R. A. Finkel}, title = {Quotient networks}, journal = ieeetc, volume = {C-31}, year = 1982, pages = {288-295}} @article{FishburnR03, author = {Peter C. Fishburn and Fred S. Roberts}, title = {No-hole {$L$}(2,1)-colorings}, journal = dam, volume = 130, year = 2003, pages = {513-519}} @article{FischerMR08, author = {E. Fischer and J.A. Makowsky and E.V. Ravve}, title = {Counting truth assignments of formulas of bounded tree-width or clique-width}, journal = dam, volume = 156, year = 2008, pages = {511-529}} %Fit @article{Fitch81, author = {W. M. Fitch}, title = {A non-sequential method for constructing trees and hierarchical classifications}, journal = {Journal of Molecular Evolution}, volume = 18, year = 1981, pages = {30-37}} %Fl %Fla @techreport{FlamminiLM95, author = {M. Flammini and J. {van Leeuwen} and A. Marchetti-Spaccamela}, title = {The Complexity of Interval Routing on Random Graphs}, type = {Technical Report}, number = {UU-CS-1995-16}, institution = {Utrecht University}, year = 1991} %Fle @article{FleinerIM07, author = {Tamas Fleiner and Robert W. Irving and David F. Manlove}, title = {Efficient algorithms for generalized Stable Marriage and Roommates problems}, journal = tcs, volume = 381, year = 2007, pages = {162-176}} @inproceedings{FleischerWY09, author = {Rudolf Fleischer and Xi Wu and Liwei Yuan}, title = {Experimental study of {FPT} algorithms for the directed feedback vertex set problem}, editor = {Amos Fiat and Peter Sanders}, booktitle = esa09, publisher = lncs5757, year = 2009, pages = {611-622}} %Flo @inproceedings{FlocchiniMS08, author = {Paola Flocchini and Bernard Mans and Nicola Santoro}, title = {Tree decontamination with temporary immunity}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {330-341}} @article{FloreenKKO05, author = {P. Flor\'een and P. Kaski and J. Kohonen and P. Orponen}, title = {Exact and approximate balanced data gathering in energy-constrained sensor networks}, journal = tcs, volume = 344, number = 1, year = 2005, pages = {30-46}} %Flu @phdthesis{Fluiter97, author = {Babette de Fluiter}, title = {Algorithms for Graphs of Small Treewidth}, school = {Utrecht University}, year = 1997} @misc{FluiterB97, author = {Babette de Fluiter and Hans L. Bodlaender}, title = {Parallel algorithms for treewidth two}, editor = {Rolf H. M\"{o}hring}, booktitle = wg97, year = 1997, publisher = lncs1335, pages = {157-170}} @article{FlumFG02, author = {J\"{o}rg Flum and M. Frick and Martin Grohe}, title = {Query evaluation via tree-decomposition}, journal = jacm, volume = 49, pages = {716-751}, year = 2002} @book{FlumG06, author = {J\"{o}rg Flum and Martin Grohe}, title = {Parameterized Complexity Theory}, publisher = {Springer}, year = 2006} %Fo %Fom %Fomin 1998 @article{Fomin98, author = {Fedor V. Fomin}, title = {Helicopter search problems, bandwidth and pathwidth}, journal = dam, volume = 85, year = 1998, pages = {59-70}} %Fomin 1999 @article{Fomin99, author = {Fedor V. Fomin}, title = {Note on a helicopter search problem on graphs}, journal = dam, volume = 95, year = 1999, pages = {241-249}} %Fomin 2000 @article{FominG00, author = {Fedor V. Fomin and Petr A. Golovach}, title = {Interval completion and graph searching}, journal = sjdm, volume = 13, year = 2000, pages = {454-464}} %Fomin 2002 @techreport{FominT02, author = {F. V. Fomin and D. M. Thilikos}, title = {New upper bounds on the decomposability of planar graphs and fixed paramater algorithms}, year = 2002, institution = {Universitat Polit\`ecnica de Catalunya}, number = {LSI-02-56-R}, type = {Technical Report}, address = {Spain}} %Fomin 2003 @article{Fomin03, author = {Fedor V. Fomin}, title = {Pathwidth of planar and line graphs}, journal = gc, volume = 19, year = 2003, pages = {91-99}} @article{FominG03, author = {Fedor V. Fomin and Petr A. Golovach}, title = {Interval degree and bandwidth of a graph}, journal = dam, volume = 129, pages = {345-359}, year = 2003} @inproceedings{FominHT03, author = {Fedor V. Fomin and Pinar Heggernes and Jan Arne Telle}, title = {Graph searching, elimination trees, and a generalization of bandwidth}, editor = {Andrzej Lingas and Bengt J. Nilsson}, booktitle = fct03, year = 2003, publisher = lncs2751, pages = {73-85}} @article{FominT03, author = {Fedor V. Fomin}, title = {On the monotonicity of games generated by symmetric submodular functions}, journal = dam, volume = 131, pages = {323-335}, year = 2003} @inproceedings{FominT03a, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {Dominating sets and local treewidth}, booktitle = esa03, publisher = lncs2832, year = 2003, pages = {221-229}} @techreport{FominT03b, author = {F. V. Fomin and D. M. Thilikos}, title = {A Simple and Fast Approach for Solving Problems on Planar Graphs}, year = 2003, institution = {Department of Informatics, University of Bergen}, number = {258}, type = {Technical Report}, address = {Bergen, Norway}} @inproceedings{FominT03c, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {Dominating sets in planar graphs: Branch-width and exponential speedup}, booktitle = soda03, year = 2003, pages = {168-177}} %Fomin 2004 @techreport{FominFT04, author = {F. V. Fomin and P. Fraigniaud and D. M. Thilikos}, title = {The Price of Connectedness in Expansions}, year = 2004, institution = {Universitat Polit\`ecnica de Catalunya}, number = {LSI-04-28-R}, type = {Technical Report}, address = {Spain}} @inproceedings{FominKT04, author = {Fedor V. Fomin and Dieter Kratsch and Ioan Todinca}, title = {Exact (exponential) algorithms for treewidth and minimum fill-in}, editor = {Josep D{\'{\i}}az and Juhani Karhum\"{a}ki and Arto Lepist\"{o} and Donald Sanella}, booktitle = icalp04, publisher = lncs3142, pages = {568-580}, year = 2004} @article{FominKM04, author = {Fedor V. Fomin and Dieter Kratsch and Haiko M\"{u}ller}, title = {Algorithms for graphs with small octopus}, journal = dam, volume = 134, year = 2004, pages = {105-128}} @inproceedings{FominKW04, author = {Fedor V. Fomin and Dieter Kratsch and Gerhard J. Woeginger}, title = {Exact (exponential) algorithms for the dominating set problem}, editor = {Juraj Hromkovi\u{c} and Manfred Nagl and Bernhard Westfechtel}, booktitle = wg04, pages = {245-256}, year = 2004, publisher = lncs3353} @inproceedings{FominMT05, author = {Fedor V. Fomin and F. Mazoit and Ioan Todinca}, title = {Computing branchwidth via efficient triangulations and blocks}, editor = {Dieter Kratsch}, booktitle = wg05, year = 2005, publisher = lncs3787, pages = {374-384}} @inproceedings{FominT04, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {A simple and fast approach for solving problems on planar graphs}, booktitle = stacs04, year = 2004, publisher = lncs2996, pages = {56-67}} @inproceedings{FominT04b, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {Fast parameterized algorithms for graphs on surfaces: Linear kernel and exponential speedup}, editor = {Josep D{\'{\i}}az and Juhani Karhum\"{a}ki and Arto Lepist\"{o} and Donald Sanella}, booktitle = icalp04, year = 2004, publisher = lncs3142, pages = {581-592}} %Fomin 2005 @inproceedings{FominGPS05, author = {Fedor V. Fomin and Fabrizio Grandoni and A. Pyatkin and A. A. Stepanov}, title = {Bounding the number of minimal dominating sets: a measure and conquer approach}, editor = {Xiaotie Deng and Ding-Zhu Du}, booktitle = isaac05, publisher = lncs3827, year = 2005, pages = {192-203}} @article{FominGK05, author = {Fedor V. Fomin and Fabrizio Grandoni and Dieter Kratsch}, title = {Some new techniques in design and analysis of exact (exponential) algorithms}, journal = beatcs, volume = 87, year = 2005, pages = {47-77}} @inproceedings{FominGK05a, author = {Fedor V. Fomin and Fabrizio Grandoni and Dieter Kratsch}, title = {Measure and conquer: Domination --- a case study}, editor = {Lu{\'{\i}}s Caires and Giuseppe F. Italiano and Lu{\'{\i}}s Monteiro and Catuscia Palamidessi and Moti Yung}, booktitle = icalp05, publisher = lncs3580, year = 2005, pages = {191-203}} %Fomin 2006 @inproceedings{FominGK06, author = {Fedor V. Fomin and Fabrizio Grandoni and Dieter Kratsch}, title = {Measure and conquer: a simple {$O(2^{0.288n})$} independent set algorithm}, booktitle = soda06, year = 2006, pages = {18-25}} @inproceedings{FominGK06a, author = {Fedor V. Fomin and Fabrizio Grandoni and Dieter Kratsch}, title = {Solving connected dominating set faster than $2^n$}, editor = {S. Arun-Kumar and Naveen Garg}, booktitle = fsttcs06, year = 2006, pages = {152-163}, publisher = lncs4337} @inproceedings{FominGP06, author = {Fedor V. Fomin and Serge Gaspers and Christian Knauer}, title = {Finding a minimum feedback vertex set in time {$O(1.7548^n)$}}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {183-191}} @article{FominH06, author = {Fedor V. Fomin and Kjartan H{\o}ie}, title = {Pathwidth of cubic graphs and exact algorithms}, journal = ipl, volume = 97, year = 2006, pages = {191-196}} @article{FominT06, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {New upper bounds on the decomposability of planar graphs}, journal = jgt, volume = 51, year = 2006, pages = {53-81}} @article{FominT06a, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {Approximation of pathwidth of outerplanar graphs}, journal = jda, volume = 4, year = 2006, pages = {499-510}} @article{FominT06c, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {Dominating sets in planar graphs: Branch-width and exponential speedup}, journal = siamjc, volume = 36, year = 2006, pages = {281-309}} %Fomin 2008 @inproceedings{FominGHMEW08, author = {Fedor V. Fomin and Petr A. Golovach and Alexander Hall and Mat\'{u}s Mihal\'{a}k and Elias Vicari and Peter Widmayer}, title = {How to guard a graph}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {318-329}} @article{FominKTV08, author = {Fedon V. Fomin and Dieter Kratsch and Ioan Todinca and Yngve Villanger}, title = {Exact algorithms for treewidth and minimum fill-in}, journal = siamjc, volume = 38, year = 2008, pages = {1058-1079}} @article{FominT08, author = {Fedor V. Fomin and Dimitrios M. Thilikos}, title = {An annotated bibliography on guaranteed graph searching}, journal = tcs, volume = 399, year = 2008, pages = {236-245}} @inproceedings{FominV08, author = {Fedor V. Fomin and Yngve Villanger}, title = {Treewidth computation and extremal combinatorics}, editor = {Luca Aceto and Ivan Damg{\aa}rd and Leslie Ann Goldberg and Magn\'{u}s M. Halld\'{o}rsson and Anna Ing\'{o}lfsd\'{o}ttir and Igor Walukuewics}, booktitle = icalp08-1, year = 2008, publisher = lncs5125, pages = {210-221}} %Fomin 2009 @article{FominFN09, author = {Fedor V. Fomin and Pierre Fraigniaud and Nicolas Nisse}, title = {Nondeterministic graph searching: From pathwidth to treewidth}, journal = alg, volume = 53, year = 2009, pages = {358-373}} @article{FominGK09, author = {Fedon V. Fomin and Fabrizio Grandoni and Dieter Kratsch}, title = {A measure {\&} conquer approach for the analysis of exact algorithms}, journal = jacm, volume = 56, year = 2009, number = 5} @article{FominGKKL09, author = {Fedor V. Fomin and Petr A. Golovach and Jan Kratochv\'il and Dieter Kratsch and Mathieu Liefloff}, title = {Sort and Search: Exact algorithms for generalized domination}, journal = ipl, volume = 109, year = 2009, pages = {795-798}} @article{FominGSS09, author = {Fedor V. Fomin and Serge Gaspers and Saket Saurabh and Alexey A. Stepanov}, title = {On two techniques of combining branching and treewidh}, journal = alg, volume = 54, year = 2009, pages = {181-207}} @unpublished{FominV09, author = {Fedor V. Fomin and Yngve Villanger}, title = {Finding induced subgraphs via minimal triangulations}, year = 2009, note = {Report, published on http://arxiv.org/abs/0909.5278}} %Fomin 2010 @article{FominGKLS10, author = {Fedor V. Fomin and Serge Gaspers and Dieter Kratsch and Mathieu Liedloff and Saket Saurabh}, title = {Iterative compression and exact algorithms}, journal = tcs, volume = 411, year = 2010, pages = {1045-1053}} @article{FominGKNS10, author = {Fedor V. Fomin and Petr A. Golovach and Jan Kratochv\'il and Nicolas Nisse and Karol Suchan}, title = {Pursuing a fast robber on a graph}, journal = tcs, volume = 411, year = 2010, pages = {1167-1181}} @unpublished{FominGLS10, author = {Fedor V. Fomin and Petr A. Golovach and Daniel Lokshtanov and Saket Saurabh}, title = {Algorithmic lower bounds for problems parameterized by clique-width}, year = 2009, note = {To appear in Proceedings SODA 2010}} @unpublished{FominLST10, author = {Fedor V. Fomin and Daniel Lokshtanov and Saket Saurabh and Dimitrios M. Thilikos}, title = {Bidimensionality and Kernels}, year = 2009, note = {To appear in Proceedings SODA 2010}} %For @inproceedings{Fortnow97, author = {L. Fortnow}, title = {Counting complexity}, booktitle = {Complexity Theory Retrospective II}, editor = {L. A. Hemaspaandra and A. Selman}, publisher = {Springer-Verlag}, year = 1997, pages = {81-107}} @inproceedings{FortnowS08, author = {Lance Fortnow and Rahul Santhanam}, title = {Infeasibility of instance compression and succinct {PCPs} for {NP}}, booktitle = stoc08, year = 2008, pages = {133-142}, publisher = {ACM Press}, addres = {New York}} @article{FortuneHW80, author = {S. Fortune and J. E. Hopcroft and J. Wyllie}, title = {The directed subgraph homeomorphism problem}, journal = {J. Theoret. Comput. Sci. ??????}, volume = 10, pages = {111-121}, year = 1980} %Check the journal. Is is TCS? %Fot @inproceedings{FotakisNPS00, author = {D. A. Fotakis and S. E. Nikoletseas and V. G. Papadopoulou and P. G. Spirakis}, title = {{NP}-completeness results and efficient approximations for radiocoloring in planar graphs}, editor = {Mogens Nielsen and Branislav Rovan}, booktitle = mfcs00, publisher = lncs1893, year = 2000, pages = {363-372}} @article{FotatisNPS05, author = {D. A. Fotakis and S. E. Nikoletseas and V. G. Papadopoulou and P. G. Spirakis}, title = {Radiocoloring in planar graphs: {C}omplexity and approximations}, journal = tcs, volume = 340, year = 2005, pages = {457-644}} %Fr %Fra %Fraenkel 1978 @inproceedings{FraenkelGJSY78, author = {A. S. Fraenkel and M. R. Garey and D. S. Johnson and T. Schaefer and Y. Yesha}, title = {The complexity of checkers on an $n \times n$ board --- preliminary version}, booktitle = focs78, year = 1978, pages = {55-64}} %Fraenkel 1979 @article{FraenkelY79, author = {A. S. Fraenkel and Y. Yesha}, title = {Complexity of problems in games, graphs and algebraic equations}, year = 1979, journal = dam, volume = 1, pages = {15-30}} %Fraenkel 1981 @article{FraenkelL81, author = {A. S. Fraenkel and D. Lichtenstein}, title = {Computing a perfect strategy for $n$ by $n$ chess requires time exponential in $n$}, journal = jctA, volume = 31, year = 1981, pages = {199-214}} %Fraenkel 1982 @article{FraenkelY82, author = {A. S. Fraenkel and Y. Yesha}, title = {Theory of annihilation games {I}}, journal = jctb, volume = 33, year = 1982, pages = {60-86}} %Fraenkel 1987 @article{FraenkelG87, author = {A. S. Fraenkel and E. Goldschmidt}, title = {Pspace-hardness of some combinatorial games}, journal = jctA, volume = 46, year = 1987, pages = {21-38}} %Fraenkel 1988 @misc{Fraenkel88, author = {A. S. Fraenkel}, title = {Selected bibliography on two-player combinatorial games and some related material}, year = 1988 } %Fraenkel 1992 @unpublished{FraenkelSU92, author = {Aviezri S. Fraenkel and Edward R. Scheinerman and Daniel Ullman}, title = {Undirected Edge Geography}, year = 1992, note = {Manuscript}} @techreport{FraenkelKS92, author = {A. S. Fraenkel and A. Kotzig and G. Sabidussi}, title = {Modular Nim}, year = 1992, institution = {The Weizmann Institute of Science}, address = {Rehovot, Israel}, number = {CS92-02}, type = {Technical Report}} %Fraenkel 1993 @article{FraenkelS93, author = {A. S. Fraenkel and S. Simonson}, title = {Geography}, journal = tcs, volume = 110, year = 1993, pages = {197-214}} %Fraigniaud @techreport{FraigniaudG94, author = {P. Fraigniaud and C. Gavoille}, title = {Interval Routing Schemes}, institution = {Centre de Recerca Matem\`{a}tica, Institut d'Estudes Catalans}, address = {Barcelona, Spain}, number = {251}, year = 1994} @article{FraigniaudG06, author = {Pierre Fraigniaud and Cyril Gavoille}, title = {Header-size lower bounds for end-to-end communication in memoryless networks}, journal = cnet, volume = 50, year = 2006, pages = {1630-1638}} @article{FraigniaudN08, author = {Pierre Fraigniaud and Nicolas Nisse}, title = {Monotony properties of connected visible graph searching}, journal = ic2, volume = 206, year = 2008, pages = {1383-1393}} %Fran @inproceedings{Frank90, author = {Andr\'{a}s Frank}, title = {Augmenting graphs to meet edge-connectivity requirements}, booktitle = focs90, pages = {708-718}, year = 1990} @article{Frankl87, author = {P. Frankl}, title = {Cops and robbers in graphs with large girth and {C}ayley graphs}, pages = {301-305}, year = 1987, journal = dam, volume = 17 } @article{FranklinGY00, author = {Matthew Franklin and Zvi Galil and Moti Yung}, title = {Eavesdropping games: A graph-theoretic approach to privacy in distributed systems}, journal = jacm, volume = 47, year = 2000, pages = {225-243}} %Fre %Frederickson 1981 @article{FredericksonJ81, author = {Greg N. Frederickson and J. {Ja'Ja}}, title = {Approximation algorithms for several graph augmentation problems}, journal = siamjc, volume = 10, year = 1981, pages = {270-283}} %Frederickson 1983 @article{FredericksonJ83, author = {Greg N. Frederickson and D. B. Johnson}, title = {Finding $k$th path and $p$-centers by generating and searching good data structures}, journal = ja, volume = 4, year = 1983, pages = {61-80}} %Frederickson 1987 @article{Frederickson87, author = {Greg N. Frederickson}, title = {Fast algorithms for shortest paths in planar graphs}, journal = siamjc, volume = 16, year = 1987, pages = {1004-1022}} @unpublished{FredericksonH87, author = {Greg N. Frederickson and Suzanne E. Hambrusch}, title = {Planar Linear Arrangement of Outerplanar Graphs}, year = 1987, note = {Manuscript}, address = {Dept. of Computer Sciences, Purdue University} } %Frederickson 1988 @article{FredericksonJ88, author = {Greg N. Frederickson and R. Janardan}, title = {Designing networks with compact routing tables}, journal = alg, volume = 3, year = 1988, pages = {171-190}} %Frederickson 1992 @unpublished{Frederickson92, author = {Greg N. Frederickson}, title = {Ambivalent data structures for dynamic 2-edge-connectivity and $k$ smallest spanning trees}, note = {Manuscript}, year = 1992} %Frederickson 1993 @inproceedings{Frederickson93a, author = {Greg N. Frederickson}, title = {A data structure for dynamically maintaining rooted trees}, booktitle = soda93, pages = {175-184}, year = 1993} %Frederickson 1997 @article{Frederickson97, author = {Greg N. Frederickson}, title = {A data structure for dynamically maintaining rooted trees}, journal = ja, volume = 24, pages = {37-65}, year = 1997} %Frederickson 1998 @article{Frederickson98, author = {Greg N. Frederickson}, title = {Maintaining regular properties dynamically in $k$-terminal graphs}, journal = ja, volume = 33, year = 1999, pages = {244-266}} @article{FrederikssonM06, author = {Kimmo Fredriksson and Maxim Mozgovoy}, title = {Efficient parameterized string matching}, journal = ipl, volume = 100, year = 2006, pages = {91-96}} @article{Fredman76, author = {M. L. Fredman}, title = {New bounds on the complexity of the shortest path problem}, journal = siamjc, volume = 5, year = 1976, pages = {276-287}} %Fren @article{FrendrupHRV09, author = {Allan Frendrup and Michael A. Henning and Bert Randerath and Preben Dahl Vestergaard}, title = {An upper bound on the domination number of a graph with minimum degree 2}, journal = dm, volume = 309, year = 2009, pages = {639-646}} %Fri @article{FrickG01, author = {M. Frick and M. Grohe}, title = {Deciding first-order properties of locally tree-decomposable structures}, journal = jacm, volume = 48, year = 2001, pages = {1184-1206}} @article{Frick04, author = {Markus Frick}, title = {Generalized model-checking over locally tree-decomposable classes}, journal = tcs, volume = 37, year = 2004, pages = {157-191}} @article{FriedmanRS87, author = {Harvey Friedman and Neil Robertson and Paul D. Seymour}, title = {The Metamathematics of the Graph Minor Theorem}, year = 1987, journal = cm, volume = 65, pages = {229-261}} @article{Frieze87, author = {A. M. Frieze}, title = {Parallel Algorithms for Finding {H}amiltonian Cycles in Random Graphs}, journal = ipl, year = 1987, pages = {111-117}} %Fu %Fuj @article{FujiiKN69, author = {M. Fujii and T. Kasami and K. Ninomiya}, title = {Optimal sequencing of two equivalent processors}, journal = sjam, volume = 17, year = 1969, pages = {784-789}, note = {Erratum. SIAM J. Appl. Math. 20 (1971) 141.}} @article{FujitaN08, author = {Shinya Fujita and Tomoki Nakamigawa}, title = {Balanced decomposition of a vertex-colored graph}, journal = dam, volume = 156, year = 2008, pages = {3339-3344}} %Ful @article{FulkersonG65, author = {D. R. Fulkerson and O. A. Gross}, title = {Incidence matrices and interval graphs}, journal = {Pacific Journal of Mathetics}, volume = 15, year = 1965, pages = {835-855}} %Fur @inproceedings{Furer07, author = {Martin F\"{u}rer}, title = {Faster integer multiplication}, year = 2007, booktitle = stoc07} @article{FurstGM88, author = {Merrick L. Furst and Jonathan L. Gross and Lyle A. {McGeoch}}, title = {Finding a Maximum-Genus Graph Imbedding}, journal = jacm, volume = 35, year = 1988, pages = {523-534}} %G %Ga %Gaa @phdthesis{Gaag90, author = {Linda C. {van der Gaag}}, title = {Probability-Based Models for Plausible Reasoning}, school = {University of Amsterdam}, year = 1990 } @inproceedings{GaagBF04, author = {Linda C. {van der Gaag} and Hans L. Bodlaender and Ad Feelders}, title = {Monotonicity in {B}ayesian Networks}, editor = {David Maxwell Chickering and Joseph Y. Halpern}, booktitle = uai04, pages = {569-576}, year = 2004, publisher = {AUAI Press}} %Gab @article{GaborHS89, author = {C. P. Gabor and W. L. Hsu and K. J. Supowit}, title = {Recognizing circle graphs in polynomial time}, journal = jacm, volume = 36, year = 1989, pages = {435-473}} %Gabow 1982 @article{GabowK82, author = {H. Gabow and O. Kariv}, title = {Algorithms for edge coloring bipartite graphs and multigraphs}, journal = siamjc, volume = 11, year = 1982, pages = {117-129}} %Gabow 1983 @inproceedings{Gabow83, author = {Harold N. Gabow}, title = {An efficient reduction technique for degree-constrained subgraph and bidirected network flow problems}, booktitle = stoc83, year = 1983, pages = {448-456}} %Gabow 1986 @article{GabowGST86, author = {H. N. Gabow and Z. Galil and T. Spencer and R. E. Tarjan}, title = {Efficient algorithms for finding minimum spanning trees in undirected and directed graphs}, journal = comb, volume = 6, year = 1986, pages = {106-122}} %Gabow 1992 @article{GabowW92, author = {H. N. Gabow and H. H. Westermann}, title = {Forests, Frames, and Games: Algorithms for Matroid Sums and Applications}, journal = alg, volume = 7, pages = {465-498}, year = 1992} %Gabow 2000 @inproceedings{Gabow00, author = {H. N. Gabow}, title = {Using expander graphs to find vertex connectivity}, booktitle = focs00, year = 2000, pages = {410-420}} %Gabow 2004 @inproceedings{Gabow04, author = {Harold N. Gabow}, title = {Finding paths and cycles of superpolylogarithmic length}, booktitle = stoc04, year = 2004, pages = {407-416}} %Gabow 2008 @inproceedings{GabowN08, author = {Harold N. Gabow and Shuxin Nie}, title = {Finding long paths, cycles, and circuits}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {752-763}} %Gal @article{GaleS62, author = {D. Gale and L. Shapley}, title = {College admissions and the stability of marriage}, journal = amm, volume = 69, year = 1962, pages = {9-15}} @article{GaleS85, author = {D. Gale and M. Sotomayor}, title = {Some remarks on the stable matching problem}, journal = dam, volume = 11, year = 1985, pages = {223-232}} @article{GalilKS89, author = {Zvi Galil and Ravi Kannan and Endre Szemer\'{e}di}, title = {On nontrivial separators for $k$-page graphs and simulations by nondeterministic one-tape {T}uring machines}, journal = jcss, volume = 38, year = 1989, pages = {134-149}} @article{GalloGT89, author = {Giorgio Gallo and Michael D. Grigoriadis and Robert Endre Tarjan}, title = {A fast parametric maximum flow algorithm and applications}, journal = siamjc, volume = 18, year = 1989, pages = {30-55}} %Gan @article{GanianH10, author = {Robert Ganian and Petr Hlin\v{e}n\'{y}}, title = {On parse trees and {M}yhill-{N}erode-type tools for handling graphs of bounded rank-width}, journal = dam, volume = 158, year = 2010, pages = {851-867}} @article{Ganjali03, author = {Y. Ganjali}, title = {Optimum multi-dimensional interval routing schemes on networks with dynamic cost links}, journal = {Computing and Informatics}, volume = 22, year = 2003, pages = {1-17}} @techreport{GanleyH95, author = {Joseph L. Ganley and Lenwood S. Heath}, title = {The pagenumber of \mbox{$k$-trees} is {$O(k)$}}, institution = {Department of Computer Science, Virginia Tech}, number = {TR--95--17}, address = {Blacksburg, Virginia}, year = 1995} @article{GanleyH01, author = {Joseph L. Ganley and Lenwood S. Heath}, title = {The pagenumber of {$k$}-trees is {$O(k)$}}, journal = dam, volume = 109, year = 2001, pages = {215-221}} %Gar @inproceedings{Garbe95, author = {Renate Garbe}, title = {Tree-width and path-width of comparability graphs of interval orders}, editor = {Ernst W. Mayr and Gunther Schmidt and Gottfried Tinhofer}, booktitle = wg94, publisher = lncs903, year = 1995, pages = {26-37}} %Garey 1976 @article{GareyJ76, author = {Michael R. Garey and David S. Johnson}, title = {The complexity of near-optimal graph coloring}, journal = jacm, volume = 23, pages = {43-49}, year = 1976} @article{GareyJS76, author = {Michael R. Garey and David S. Johnson and L. Stockmeyer}, title = {Some simplified {NP}-complete graph problems}, journal = tcs, volume = 1, year = 1976, pages = {237-267}} %Garey 1977 @article{GareyJ77, author = {Michael R. Garey and David S. Johnson}, title = {The rectilinear {S}teiner tree problem is {NP}-complete}, journal = sjam, volume = 32, year = 1977, pages = {826-834}} %Garey 1978 @article{GareyGJK78, author = {Michael R. Garey and R. L. Graham and David S. Johnson and D. E. Knuth}, title = {Complexity Results for Bandwidth Minimization}, year = 1978, journal = sjam, volume = 34, pages = {477-495}} %Garey 1979 @book{GareyJ79, author = {Michael R. Garey and David S. Johnson}, title = {Computers and Intractability, A Guide to the Theory of {NP}-Completeness}, publisher = {W.H. Freeman and Company}, year = 1979, address = {New York} } %Garey 1980 @article{GareyJMP80, author = {Michael R. Garey and David S. Johnson and Gary L. Miller and Christos H. Papadimitriou}, title = {The complexity of coloring circular arcs and chords}, journal = sjadm, volume = 1, year = 1980, pages = {216-227}} %Garey 1983 @article{GareyJ83, author = {Michael R. Garey and David S. Johnson}, title = {Crossing number is {NP}-complete}, journal = sjadm, volume = 4, year = 1983, pages = {312-316}} %Garg @inproceedings{Garg95, author = {A. Garg}, title = {On drawing angle graphs}, editor = {R. Tamassia and I. G. Tollis}, booktitle = gd94, publisher = lncs894, year = 1995, pages = {84-95}} @phdthesis{Garg96, author = {Ashim Garg}, title = {Where to Draw the Line}, school = {Department of Computer Science, Brown University}, year = 1996} @inproceedings{GargK98, author = {N. Garg and J. K\"onemann}, title = {Faster and Simpler Algorithms for Multi-commodity Flow and Other Fractional Packing Problems}, booktitle = focs98, year = 1998, pages = {300-309}} %Gas @inproceedings{GaspersKL06, author = {Serge Gaspers and Dieter Kratsch and Mathieu Liedloff}, title = {Exponential time algorithms for the minimum dominating set problem on some graph classes}, editor = {Lars Arge and Rusins Freivalds}, booktitle = swat06, pages = {148-159}, year = 2006, publisher = lncs4059} @inproceedings{GaspersL06, author = {Serge Gaspers and Mathieu Liedloff}, title = {A branch-and-reduce algorithm for finding a minimum independent dominating Set in graphs}, editor = {Fedor V. Fomin}, booktitle = wg06, year = 2006, pages = {78-89}, publisher = lncs4271} %Gav @inproceedings{Gavoille97, author = {Cyril Gavoille}, title = {On the dilation of interval routing}, editor = {Igor Privara and Peter Ruzicka}, booktitle = mfcs97, publisher = lncs1295, pages = {259-268}, year = 1997} @article{Gavoille00, author = {Cyril Gavoille}, title = {A survey on interval routing}, journal = tcs, volume = 245, pages = {217-253}, year = 2000} @article{Gavril72, author = {F{\u{a}}nic\u{a} Gavril}, title = {Algorithms for minimum coloring, maximum clique, minimum covering by cliques, and maximum independent set of a chordal graph}, journal = siamjc, volume = 1, year = 1972, pages = {180-187}} @article{Gavril74, author = {F{\u{a}}nic\u{a} Gavril}, title = {The intersection graphs of subtrees in trees are exactly the chordal graphs}, journal = jctb, year = 1974, volume = 16, pages = {47-56}} @article{Gavril74b, author = {F{\u{a}}nic\u{a} Gavril}, title = {An algorithm for testing chordiality of graphs}, journal = ipl, volume = 3, pages = {110-112}, year = 1974 } @article{Gavril75, author = {F{\u{a}}nic\u{a} Gavril}, title = {A recognition algorithm for the intersection graphs of directed paths in directed trees}, journal = dm, volume = 13, year = 1975, pages = {237-249}} @article{Gavril78, author = {F{\u{a}}nic\u{a} Gavril}, title = {A recognition algorithm for the intersection graphs of paths in trees}, journal = dm, volume = 23, pages = {211-227}, year = 1978 } @unpublished{Gavril88, author = {F{\u{a}}nic\u{a} Gavril}, title = {A Graph Partition Problem Related to {2-CNFSAT}}, year = 1988, note = {Draft paper} } @article{Gavril08, author = {F{\u{a}}nic\u{a} Gavril}, title = {Minimum weight feedback vertex sets in circle graphs}, journal = ipl, volume = 107, year = 2008, pages = {1-6}} %Ge %Gee %Geelen 2000 @article{Geelen00, author = {James F. Geelen}, title = {An algebraic matching algorithm}, journal = comb, volume = 20, year = 2000, pages = {61-70}} %Geelen 2002 @article{GeelenGW02, author = {J. F. Geelen and A. M. H. Gerards and G. Whittle}, title = {Branch width and well-quasi-ordering in matroids and graphs}, journal = jctb, volume = 84, pages = {270-290}, year = 2002} %Geelen 2003 @article{GeelenGRW03, author = {J. F. Geelen and A. M. H. Gerards and N. Robertson and G. Whittle}, title = {On the excluded minors for the matroids of branch-width $k$}, journal = jctb, volume = 88, pages = {261-265}, year = 2003} %Geelen 2006 @article{GeelenGRW06, author = {J. Geelen and B. Gerards and N. Robertson and G. Whittle}, title = {Obstructions to branch-decomposition of matroids}, journal = jctb, volume = 96, year = 2006, pages = {560-570}} %Geelen 2007 @article{GeelenGW07, author = {Jim Geelen and Bert Gerards and Geoff Whittle}, title = {Excluding a planar graph from {GF($q$)}-representable matroids}, journal = jctb, volume = 97, year = 2007, pages = {971-998}} %Geelen 2009 @article{GeelenG09, author = {Jim Geelen and Bert Gerards}, title = {Excluding a group-labelled graph}, journal = jctb, volume = 99, year = 2009, pages = {247-253}} @article{GeelenGW09, author = {Jim Geelen and Bert Gerards and Geoff Whittle}, title = {Tangles, tree-decompositions and grids in matroids}, journal = jctb, volume = 99, year = 2009, pages = {657-667}} %Geo @article{George73, author = {J. A. George}, title = {Nested dissection of a regular finite element mesh}, journal = sjna, volume = 10, year = 1973, pages = {345-367}} @book{GeorgeL81, author = {J. A. George and J. W. H. Liu}, title = {Computer Solution of Large Sparse Positive Definite Systems}, publisher = {Prentice-Hall Inc.}, address = {Englewood Cliffs, New Yersey}, year = 1981} @article{GeorgeL89, author = {A. George and J. W. H. Liu}, title = {The evolution of the minimum degree ordering algorithm}, journal = {SIAM Review}, volume = 31, year = 1989, pages = {1-19}} @article{GeorgesMW94, author = {J. P. Georges and D. W. Mauro and M. A. Whittlesey}, title = {Relating path coverings to vertex labelings with a condition at distance two}, journal = dm, volume = 135, year = 1994, pages = {103-111}} @article{GeorgesM96, author = {J. P. Georges and D. W. Mauro}, title = {On the size of graphs labeled with a condition at distance two}, journal = jgt, volume = 22, pages = {47-57}, year = 1996} %Ger @incollection{Gerards95, author = {A. M. H. Gerards}, title = {Matching}, booktitle = {Handbooks in Operations Research and Management Sciences, Volume 7, Network Models}, pages = {135-224}, chapter = 3, editor = {{M. O. Ball et al.}}, year = 1995, address = {Amsterdam}, publisher = {Elsevier Science}} @article{GerberK03, author = {Michael U. Gerber and Daniel Kobler}, title = {Algorithms for vertex-partitioning problems on graphs with fixed clique-width}, journal = tcs, volume = 299, year = 2003, pages = {719-734}} @inproceedings{GerstelZ93, author = {O. Gerstel and S. Zaks}, title = {A new characterization of tree medians with applications to distributed algorithms}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {135-144}} %Gi %Gia @inproceedings{GiammarresiI92, author = {Dora Giammarresi and Giuseppe F. Italiano}, title = {Dynamic 2- and 3-connectivity on planar graphs}, editor = {O. Nurmi and E. Ukkonen}, booktitle = swat92, publisher = lncs621, year = 1992, pages = {221-232}} %Gib %Gibbons 1985 @book{Gibbons85, author = {Alan M. Gibbons}, title = {Algorithmic Graph Theory}, publisher = {Cambridge Univ. Press}, address = {Cambridge, UK}, year = 1985} %Gibbons 1986 @techreport{GibbonsR86, author = {A. M. Gibbons and W. Rytter}, title = {A Fast Parallel Algorithm for Optimally Edge-coloring of Outerplanar Graphs}, year = 1986, number = {80}, institution = {Dept. of Computer Science, University of Warwick} } %Gibbons 1988 @article{GibbonsIR88, author = {Alan M. Gibbons and Amos Israeli and Wojciech Rytter}, title = {Parallel {$O(\log n)$} time edge-coloring of trees and {H}alin Graphs}, journal = ipl, volume = 27, year = 1988, pages = {43-52}} @unpublished{GibbonsR88, author = {Alan Gibbons and Wojciech Rytter}, title = {Fast Parallel Algorithms for Optimal Edge-Coloring of Some Tree-Structured Graphs}, year = 1988, note = {Manuscript} } @inproceedings{GibbonsKMS88, author = {P. Gibbons and R. M. Karp and Gary L. Miller and D. Soroker}, title = {Subtree isomorphism is in random {NC}}, editor = {John H. Reif}, booktitle = {Proceedings of the 3rd Aegean Workshop on Computing, AWOC'88}, publisher = lncs319, year = 1988, pages = {43-52}} %Gibbons 1990 @article{GibbonsR90, author = {Alan M. Gibbons and W. Rytter}, title = {Optimally edge-colouring outerplanar graphs is in {NC}}, journal = tcs, volume = 71, pages = {401-411}, year = 1990} %Gibbons 1991 @article{GibbonsKRST91, author = {Phillip Gibbons and Richard Karp and Vijaya Ramachandran and Danny Soroker and Robert Tarjan}, title = {Transitive compaction in parallel via branchings}, journal = ja, year = 1991, volume = 12, pages = {110-125}} %Gil @article{GilbertHT84, author = {John R. Gilbert and J. P. Hutchinson and Robert Endre Tarjan}, title = {A separator theorem for graphs of bounded genus}, journal = ja, volume = 5, year = 1984, pages = {391-407}} @article{GilbertLT80, author = {J. R. Gilbert and T. Lengauer and R. E. Tarjan}, title = {The pebbling problem is complete in polynomial space}, journal = siamjc, volume = 9, pages = {513-524}, year = 1980 } @article{GilbertRE84, author = {John R. Gilbert and Donald J. Rose and Anders Edenbrandt}, title = {A separator theorem for chordal graphs}, journal = sjadm, volume = 5, year = 1984, pages = {306-313}} @article{Gill77, author = {J. Gill}, title = {Computational complexity of probabilistic complexity classes}, journal = siamjc, volume = 6, year = 1977, pages = {675-695}} @article{GilmoreH64, author = {P. C. Gilmore and A. J. Hoffman}, title = {A characterization of comparability graphs and of interval graphs}, journal = canjm, volume = 16, year = 1964, pages = {539-548}} %Gim @article{GimenezHN06, author = {Omer Gim\'{e}nez and Petr Hlin\v{e}n\'{y} and Marc Noy}, title = {Computing the {T}utte polynomial on graphs of bounded clique-width}, journal = sjdm, volume = 20, year = 2006, pages = {932-946}} %Gl %Glo @article{GloverHW79, author = {H. H. Glover and P. Huneke and C. Wang}, title = {103 graphs that are irreducible for the projective plane}, journal = jctb, volume = 27, year = 1979, pages = {332-370}} %Go %Goe @article{GoemansW97, author = {Michel X. Goemans and David P. Williamson}, title = {Primal-Dual Approximation Algorithms for Feedback Problems in Planar Graphs}, journal = combinatorica, volume = 17, year = 1997, pages = {1-23}} %Gog @inproceedings{GogateD04, author = {Vibhav Gogate and Rina Dechter}, title = {A complete anytime algorithm for treewidth}, editor = {David Maxwell Chickering and Joseph Y. Halpern}, booktitle = uai04, publisher = {AUAI Press}, pages = {201-208}, year = 2004} %Gol %Gold @inproceedings{GoldbergPV88, author = {Andrew V. Goldberg and Serge A. Plotkin and Pravin M. Vaidya}, title = {Sublinear-Time Parallel Algorithms for Matching and Related Problems}, booktitle = focs88, pages = {174-185}, year = 1988 } @article{GoldbergT88, author = {Andrew V. Goldberg and Robert Endre Tarjan}, title = {A new approach to the maximum-flow problem}, journal = jacm, volume = 35, pages = {921-940}, year = 1988 } @article{GoldbergGKS95, author = {P. W. Goldberg and M. C. Golumbic and H. Kaplan and R. Shamir}, title = {Four strikes against physical mapping of {DNA}}, journal = {Journal of Computational Biology}, volume = 2, number = 1, pages = {139-152}, year = 1995} @article{GoldbergGPSW96, author = {L. A. Goldberg and P. W. Goldberg and C. A. Philips and E. Sweedyk and T. Warnow}, title = {Minimizing phylogenetic number to find good evolutionary trees}, journal = dam, volume = 71, pages = {111-136}, year = 1996} @article{GoldbergK04, author = {Andrew V. Goldberg and Alexander V. Karzanov}, title = {Maximum skew-symmetric flows and matchings}, journal = mp, volume = 100, year = 2004, pages = {537-568}} @inproceedings{GoldschmidthH88, author = {Olivier Goldschmidt and Dorit S. Hochbaum}, title = {Polynomial algorithm for the $k$-cut problem}, booktitle = focs88, pages = {444-451}, year = 1988 } %Golo @article{Golovach93, author = {Petr A. Golovach}, title = {The cutwidth of a graph and the vertex separation number of the line graph}, journal = dam, volume = 3, year = 1993, pages = {517-521}} @inproceedings{GolovachV08, author = {Petr A. Golovach and Yngve Villanger}, title = {Parameterized complexity for domination problems on degenerate graphs}, editor = {Hajo Broersma and Thomas Erlebach and Tom Friedetzky and Dani\"{e}l Paulusma}, booktitle = wg08, publisher = lncs5344, year = 2008, pages = {195-205}} %Golumbic 1980 @book{Golumbic80, author = {Martin Charles Golumbic}, year = 1980, title = {Algorithmic Graph Theory and Perfect Graphs}, publisher = {Academic Press}, address = {New York}} %Golumbic 1983 @article{GolumbicRU83, author = {Martin Charles Golumbic and Doron Rotem and Jorge Urrutia}, title = {Comparability graphs and intersection graphs}, journal = dm, volume = 43, year = 1983, pages = {37-46}} %Golumbic 1985 @article{GolumbicJ85, author = {Martin Charles Golumbic and R. E. Jamison}, title = {The edge intersection graphs of paths in a tree}, journal = jctb, volume = 38, year = 1985, pages = {8-22}} @article{GolumbicJ85b, author = {Martin Charles Golumbic and R. E. Jamison}, title = {Edge and vertex intersections of paths in a tree}, journal = dm, volume = 55, year = 1985, pages = {151-159}} %Golumbic 1987 @article{Golumbic87, author = {Martin Charles Golumbic}, title = {A general method for avoiding cycling in a network}, journal = ipl, volume = 24, pages = {251-253}, year = 1987 } %Golumbic 1988 @article{GolumbicH88, author = {Martin Charles Golumbic and P. L. Hammer}, title = {Stability in circular-arc graphs}, journal = ja, volume = 9, pages = {314-320}, year = 1988} %Golumbic 1993 @article{GolumbicS93, author = {Martin Charles Golumbic and R. Shamir}, title = {Complexity and algorithms for reasoning about time: {A} graph-theoretic approach}, journal = jacm, volume = 40, year = 1993, pages = {1108 - 1133}} %Golumbic 1994 @article{GolumbicKS94, author = {Martin Charles Golumbic and H. Kaplan and R. Shamir}, title = {On the complexity of {DNA} physical mapping}, journal = {Advances in Applied Mathematics}, volume = 15, year = 1994, pages = {251-261}} %Golumbic 1995 @article{GolumbicKS95, author = {Martin Charles Golumbic and H. Kaplan and R. Shamir}, title = {Graph Sandwich Problems}, journal = ja, volume = 19, year = 1995, pages = {449-472}} %Golumbic 2000 @article{GolumbicR00, author = {Martin Charles Golumbic and Udi Rotics}, title = {On the clique-width of some perfect graph classes}, journal = ijfcs, volume = 11, year = 2000, pages = {423-443}} %Golumbic 2006 @article{GolumbicMR06, author = {Martin Charles Golumbic and Aviad Mintz and Udi Rotics}, title = {Factoring and recognition of read-once functions using cographs and normality and the readability of functions associated with partial $k$-trees}, journal = dam, volume = 154, year = 2006, pages = {1465-1477}} %Golumbic 2008 @article{GolumbicLS08, author = {Martin Charles Golumbic and Marina Lipshteyn and Michal Stern}, title = {The $k$-edge intersection graphs of paths in a tree}, journal = dam, volume = 156, year = 2008, pages = {451-461}} %Gon @book{GondranM84, author = {M. Gondran and M. Minoux}, title = {Graphs and Algorithms}, year = 1984, publisher = {Wiley}, address = {Chichester, UK}} %Gor @inproceedings{Gorbunov93, author = {K. {Yu.} Gorbunov}, title = {An Estimate of the Tree-Width of a Graph Which has not a Given Planar Grid as a Minor}, editor = {Juraj Hromkovic and Ondrej S\'{y}kora}, booktitle = wg98, year = 1998, pages = {372-383}, publisher = lncs1517} %Got %Gottlob 2000 @article{GottlobLS00, author = {Georg Gottlob and Nicola Leone and Francesco Scarcello}, title = {A comparison of structural {CSP} decomposition methods}, year = 2000, pages = {243-282}, journal = ai, volume = 124} %Gottlob 2002 @article{GottlobLS02, author = {Georg Gottlob and Nicola Leone and Francesco Scarcello}, title = {Hypertree decompositions and tractable queries}, journal = jcss, volume = 64, pages = {579-627}, year = 2002} @article{GottlobSS02, author = {G. Gottlob and F. Scarcello and M. Sideri}, title = {Fixed-parameter complexity in {AI} and nonmonotonic reasoning}, journal = ai, volume = 138, pages = {55-86}, year = 2002} %Gottlob 2004 @article{GottlobP04, author = {G. Gottlob and R. Pichler}, title = {Hypergraphs in model checking: {A}cyclicity and hypertree-width versus clique-width}, journal = siamjc, volume = 33, pages = {351-378}, year = 2004} %Gottlob 2005 @inproceedings{GottlobGMSS05, author = {G. Gottlob and M. Grohe and N. Musliu and M. Samer and F. Scarcello}, title = {Hypertree decompositions: Structure, algorithms, and applications}, editor = {Dieter Kratsch}, booktitle = wg05, publisher = lncs3787, year = 2005, pages = {1-15}} %Gottlob 2009 @article{GottlobMS09, author = {Georg Gottlob and Zolt{\'a}n Mikl{\'o}s and Thomas Schwentick}, title = {Generalized hypertree decompositions: {NP}-hardness and tractable variants}, journal = jacm, volume = 56, year = 2009, number = 6} %Gottlob 2010 @article{GottlobPW10, author = {Georg Gottlob and R. Pichler and F. Wei}, title = {Bounded treewidth as a key to tractability of knowledge representation and reasoning}, journal = ai, volume = 174, year = 2010, pages = {105-132}} @article{GottlobPW10a, author = {Georg Gottlob and R. Pichler and F. Wei}, title = {Tractable database design and datalog abduction through bounded treewidth}, journal = {Information Systems}, volume = 35, year = 2010, pages = {278-298}} %Gov @inproceedings{GovindanLR93, author = {R. Govindran and M. A. Langston and S. Ramachandramurthi}, title = {A practical approach to layout optimization}, booktitle = {Proceedings of the 6th International Conference on VLSI Design}, address = {Bombay, India}, year = 1993, pages = {222-225}} @article{GovindranLY98, author = {Rajeev Govindran and Michael A. Langston and Xudong Yan}, title = {Approximating the pathwidth of outerplanar graphs}, journal = ipl, year = 1998, volume = 68, pages = {17-23}} @article{GovindranR01, author = {Rajeev Govindran and S. Ramachandramurthi}, title = {A weak immersion relation on graphs and its applications}, journal = dm, volume = 230, pages = {189-206}, year = 2001} %Gr %Gra %Grab @techreport{Grabe91, author = {A. Grabe}, title = {Zur Berechnung der Grundzustandsenergie und der Zustandssumme von Spin-Glas-Hamiltonfunktionen}, type = {Diplomarbeit}, institution = {Bielefeld University}, month = {3}, year = 1991, pages = {1-155}} %Grae @techreport{Graef93, author = {Albert Gr{\"{a}}f}, title = {Complete Difference Sets and {$T$}-Colorings of Complete Graphs}, institution = {University of Mainz}, year = 1993} %Grah @book{GrahamKP94, author = {R. L. Graham and D. E. Knuth and O. Patashnik}, title = {Concrete Mathematics}, year = 1994, publisher = {Addison-Wesley}} %Gram @article{GrammGHN04, author = {Jens Gramm and Jiong Guo and Falk H\"{u}ffner and Rolf Niedermeier}, title = {Automated generation of search tree algorithms for hard graph-modification problems}, journal = alg, volume = 29, pages = {321-347}, year = 2004} @inproceedings{GrammGHN06, author = {Jens Gramm and Jiong Guo and Falk H\"{u}ffner and Rolf Niedermeier}, title = {Data reduction, exact, and heuristic algorithms for clique cover}, booktitle = alenex06, year = 2006, publisher = {SIAM}, pages = {86-94}} @article{GrammFHN08, author = {Jens Gramm and Jiong Guo and Falk H\"{u}ffner and Rolf Niedermeier}, title = {Data reduction and exact algorithms for clique cover}, journal = acmjea, year = 2008, volume = 13, number = {2.2}} @article{GrammNT08, author = {J. Gramm and A. Nickelsen and T. Tantau}, title = {Fixed-parameter algorithms in phylogenetics}, journal = tcj, volume = 51, year = 2008, pages = {79-101}} %Gran @article{Grandoni06, author = {Fabrizio Grandoni}, title = {A note on the complexity of minimum dominating set}, journal = jda, volume = 4, year = 2006, pages = {209-214}} @techreport{GranotS90, author = {Daniel Granot and Darko Skorin-Kapov}, title = {A Fixed Cost Spanning-Forest Problem On Series-Parallel Graphs}, institution = {SUNY at Stony-Brook}, type = {Harriman School Working Paper}, number = {HAR-90-009}, year = 1990} @article{GranotS91, author = {Daniel Granot and Darko Skorin-Kapov}, title = {{NC} algorithms for recognizing partial 2-trees and 3-trees}, journal = sjdm, volume = 4, number = 3, pages = {342-354}, year = 1991} @article{GranotS94, author = {Daniel Granot and Darko Skorin-Kapov}, title = {On some optimization problems on $k$-trees and partial $k$-trees}, journal = dam, volume = 48, year = 1994, pages = {129-145}} %Gri @article{GriggsY92, author = {J. R. Griggs and R. K. Yeh}, title = {Labeling graphs with a condition at distance 2}, journal = sjdm, volume = 5, year = 1992, pages = {586-595}} @article{GrigoriadisK88, author = {M. D. Grigoriades and B. Kalantari}, title = {A new class of heuristic algorithms for weighted perfect matching}, journal = jacm, volume = 35, year = 1988, pages = {769-776}} @article{GrigorievMU09, author = {Alexander Grigoriev and Bert Marchal and Natalya Usotskaya}, title = {On planar graphs with large tree-width and small grid minors}, journal = endm, volume = 32, year = 2009, pages = {35-42}} %Gro %Grohe 2003 @article{Grohe03, author = {Martin Grohe}, title = {Local tree-width, excluded minors, and approximation algorithms}, journal = combinatorica, volume = 23, year = 2003, pages = {613-632}} %Grohe 2004 @article{Grohe04, author = {Martin Grohe}, title = {Computing crossing numbers in quadratic time}, journal = jcss, volume = 68, pages = {285-302}, year = 2004} %Grohe 2009 @article{GroheM09, author = {Martin Grohe and D\'{a}niel Marx}, title = {On tree width, bramble size, and expansion}, journal = jctb, year = 2009, volume = 99, pages = {218-228}} %Gros @book{GrossT87, author = {Jonathan L. Gross and Thomas W. Tucker}, title = {Topological Graph Theory}, series = {Wiley Interscience Series in Discrete Mathematics and Optimization}, publisher = {J. Wiley \& Sons}, address = {New York}, year = 1987} @book{GrossY99, title = {Graph Theory and Its Applications}, author = {Jonathan Gross and Jay Yellen}, year = {1999}, address = {CRC Press}, publisher = {New York}} @article{GrotschelLA85, author = {M. L. Gr\"{o}tschel and L. Lovasz and A. Schrijver}, title = {Polynomial algorithms for perfect graphs}, journal = adm, volume = 21, year = 1985, pages = {325-327}} %Gu @inproceedings{GuT05, author = {Qian-Ping Gu and Hisao Tamaki}, title = {Optimal branch-decomposition of planar graphs in {$O(n^3)$} time}, editor = {Lu{\'{\i}}s Caires and Giuseppe F. Italiano and Lu{\'{\i}}s Monteiro and Catuscia Palamidessi and Moti Yung}, booktitle = icalp05, publisher = lncs3580, pages = {373-384}, year = 2005} @article{GuT08, author = {Qian-Ping Gu and Hisao Tamaki}, title = {Optimal branch-decomposition of planar graphs in {$O(n^3)$} time}, journal = acmtalg, volume = 4, year = 2008, pages = {Article No. 30}} %Gua @article{GuanZ99, author = {D. Guan and X. Zhu}, title = {Game chromatic number of outerplanar graphs}, journal = jgt, volume = 30, pages = {67-70}, year = 1999} %Guo %Guo 2005 @inproceedings{GuoGHNW05, author = {Jiong Guo and Jens Gramm and Falk H\"{u}ffner and Rolf Niedermeier and Sebastian Wernicke}, title = {Improved fixed-parameter algorithms for two feedback set problems}, editor = {Frank K. H. A. Dehne and Alejandro L\'{o}pez-Ortiz and J\"{o}rg-R\"{u}dinger Sack}, booktitle = wads05, pages = {158-168}, publisher = lncs3608, year = 2005} %Guo 2006 @phdthesis{Guo06, author = {Jiong Guo}, title = {Algorithm Design Techniques for Parameterized Graph Modification Problems}, year = 2006, school = {Institut f\"{u}r Informatik, Friedrich-Schiller-Universit\"{a}t}, address = {Jena, Germany}} @inproceedings{GuoNW06, author = {Jiong Guo and Rolf Niedermeier and Sebastian Wernicke}, title = {Fixed-Parameter Tractability Results for Full-Degree Spanning Tree and Its Dual}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {203-214}} %Guo 2007 @inproceedings{Guo07, author = {Jiong Guo}, title = {A more effective linear kernelization for Cluster Editing}, editor = {Bo Chen and Mike Paterson and Guochan Zhang}, booktitle = {Proceedings 1st International Symposium on Combinatorics, Algorithms, Probabilistic and Experimental Methodologies, ESCAPE 2007}, year = 2007, publisher = lncs4614, pages = {36-47}} @article{GuoHM07, author = {Jiong Guo and Falk Hueffner and Hannes Moser}, title = {Feedback arc set in bipartite tournaments is {NP}-complete}, journal = ipl, volume = 102, year = 2007, pages = {62-65}} @article{GuoN07, author = {Jiong Guo and Rolf Niedermeier}, title = {Invitation to Data Reduction and Problem Kernelization}, journal = {ACM SIGACT News}, volume = 38, pages = {31-45}, year = 2007} @inproceedings{GuoN07a, author = {Jiong Guo and Rolf Niedermeier}, title = {Linear problem kernels for {NP}-hard problems on planar graphs}, editor = {Lars Arge and Christian Cachin and Tomasz Jurdzinski and Andrzej Tarlecki}, booktitle = icalp07, publisher = lncs4596, pages = {375-386}, year = 2007} @article{GuoNW07, author = {Jiong Guo and Rolf Niedermeier and Sebastian Wernicke}, title = {Parameterized complexity of vertex cover variants}, journal = tocs, volume = 41, year = 2007, pages = {501-520}} @article{GuoNU07, author = {Jiong Guo and Rolf Niedermeier and Johannes Uhlmann}, title = {Two fixed-parameter algorithms for {Vertex Covering by Paths on Trees}}, journal = ipl, volume = 106, year = 2008, pages = {81-86}} %Guo 2009 @article{Guo09, author = {Jiong Guo}, title = {A more effective linear kernelization for cluster editing}, journal = tcs, volume = 410, year = 2009, pages = {718-726}} %Gupta 1982 @article{GuptaLL82, author = {U. I. Gupta and D. T. Lee and Joseph Y.-T. Leung}, title = {Efficient algorithms for interval graphs and circular-arc graphs}, journal = netw, volume = 12, year = 1982, pages = {459-467}} %Gupta 1993 @inproceedings{Gupta93, author = {Arvind Gupta}, title = {Finite automata as characterizations of minor closed tree families (Extended Abstract)}, editor = {Andrzej Lingas and Rolf G. Karlsson and Svante Carlsson}, booktitle = icalp93, pages = {359-370}, year = 1993, publisher = lncs700} %Gupta 1994 @techreport{GuptaN94, author = {Arvind Gupta and Naomi Nishimura}, title = {Sharp Divisions in Complexity of Subgraph Isomorphism for Graphs of Bounded Path- and Tree- Width}, number = {CS-94-45}, year = 1994, institution = {University of Waterloo, Computer Science Department}, address = {Waterloo, Ontario, Canada}, remark = {Contained an error. Corrected as GuptaN95.}} @inproceedings{GuptaN94a, author = {Arvind Gupta and Naomi Nishimura}, title = {Sequential and parallel algorithms for embedding problems on classes of partial $k$-trees}, editor = {Erik Meineche Schmidt and Sven Skyum}, booktitle = swat94, publisher = lncs824, pages = {172-182}, year = 1994} %Gupta 1995 @unpublished{GuptaKMS95, author = {Arvind Gupta and Damon Kaller and S. Mahajan and T. Shermer}, title = {Vertex partitioning problems on partial $k$-trees}, note = {Manuscript}, year = 1995} @techreport{GuptaN95, author = {Arvind Gupta and Naomi Nishimura}, title = {The Complexity of Subgraph Isomorphism: Duality Results for Graphs of Bounded Path- and Tree-Width}, number = {CS-95-14}, year = 1995, institution = {University of Waterloo, Computer Science Department}, address = {Waterloo, Ontario, Canada}} @article{GuptaN95a, author = {Arvind Gupta and Naomi Nishimura}, title = {The parallel complexity of tree embedding problems}, journal = ja, volume = 18, pages = {176-200}, year = 1995} %Gupta 1996 @article{GuptaN96, author = {Arvind Gupta and Naomi Nishimura}, title = {The complexity of subgraph isomorphism for classes of partial $k$-trees}, journal = tcs, volume = 164, year = 1996, pages = {287-298}} %Gupta 1999 @article{GuptaS99, author = {Srabani Sen Gupta and Bhabani P. Sinha}, title = {A simple {$O(\log N)$} time parallel algorithm for testing isomorphism of maximal outerplanar graphs}, journal = jpdc, volume = 56, year = 1999, pages = {144-155}} %Gupta 2000 @article{GuptaKS00, author = {A. Gupta and D. Kaller and T. Shermer}, title = {Linear-time algorithms for partial $k$-tree complements}, journal = alg, volume = 27, year = 2000, pages = {254-274}} %Gupta 2005 @article{GuptaNPR05, author = {Arvind Gupta and Naomi Nishimura and Andrzej Proskurowski and Prabhakar Ragda}, title = {Embeddings of $k$-connected graphs of pathwidth $k$}, journal = dam, volume = 145, pages = {242-265}, year = 2005} %Gur @article{GurariS84, author = {E. M. Gurari and Ivan Hal Sudborough}, title = {Improved Dynamic Programming Algorithms for Bandwidth Minimization and the Mincut Linear Arrangement Problem}, journal = ja, year = 1984, volume = 5, pages = {531-546}} @article{GurevichSV84, author = {Y. Gurevich and L. Stockmeyer and Uzi Vishkin}, title = {Solving {NP}-hard Problems on Graphs that are Almost Trees and an Application to Facility Location Problems}, journal = jacm, year = 1984, volume = 31, pages = {459-473}} @article {GurevichS87, author = {Yuri Gurevich and Saharon Shelah}, title = {Expected computation time for {H}amiltonian path problem}, journal = siamjc, volume = 16, year = 1987, pages = {486-502}} @article{Gurski06, author = {Frank Gurski}, title = {Linear layouts measuring neighbourhoods in graphs}, journal = dm, volume = 306, pages = {1637-1650}, year = 2006} @article{GurskiW06, author = {Frank Gurski and Egon Wanke}, title = {Vertex disjoint paths on clique-width bounded graphs}, journal = tcs, volume = {359}, year = 2006, pages = {188-199}} @article{GurskiW07, author = {Frank Gurski and Egon Wanke}, title = {A local characterization of bounded clique-width for line graphs}, journal = dm, volume = 307, year = 2007, pages = {756-759}} @article{GurskiW07a, author = {Frank Gurski and Egon Wanke}, title = {Line graphs of bounded clique width}, journal = dm, volume = 307, pages = {2734-2754}, year = 2007} @article{GurskiW09, author = {Frank Gurski and Egon Wanke}, title = {The {NLC}-width and clique-width for powers of graphs of bounded tree-width}, journal = dam, volume = 157, pages = {583-595}, year = 2009} %Gus %Gusfield 1986 @article{GusfieldP86, author = {D. Gusfield and L. Pitt}, title = {Equivalent approximation algorithms for node cover}, journal = ipl, year = 1986, volume = 22, pages = {291-294}} %Gusfield 1987 @article{Gusfield87, author = {D. Gusfield}, title = {Three fast algorithms for four problems in stable marriage}, journal = siamjc, volume= 16, year = 1987, pages = {111-128}} %Gusfield 1988 @article{Gusfield88, author = {D. Gusfield}, title = {The structure of the stable roommates problem: {E}fficient representation and enumeration of all stable assignments}, journal = siamjc, volume = 17, year = 1988, pages = {742-769}} %Gusfield 1991 @article{Gusfield91, author = {D. Gusfield}, title = {Efficient algorithms for inferring evolutionary trees}, journal = networks, volume = 21, year = 1991, pages = {19-28}} %Gusfield 1992 @article{GusfieldM92, author = {D. Gusfield and C. Martel}, title = {A fast algorithm for the generalized parametric minimum cut problem and applications}, journal = alg, volume = 7, year = 1992, pages = {499-520}} %Gustedt 1991 @techreport{Gustedt91, author = {Jens Gustedt}, title = {Well Quasi Ordering Finite Posets and Formal Languages}, number = {290/1991}, year = 1991, institution = {Fachbereich Mathematik, Technische Universit\"{a}t Berlin}} %Gustedt 1992 @unpublished{GustedtS92, author = {Jens Gustedt and Angelika Steger}, title = {Testing Hereditary Properties Efficiently}, year = 1992, note = {Manuscript}} %Gustedt 1993 @article{Gustedt93, author = {Jens Gustedt}, title = {On the pathwidth of chordal graphs}, journal = dam, year = 1993, volume = 45, number = 3, pages = {233-248}} %Gustedt 1998 @article{Gustedt98, author = {Jens Gustedt}, title = {Efficient {Union-Find} for planar graphs and other sparse graph classes}, journal = tcs, volume = 203, pages = {123-141}, year = 1998} %Gustedt 2002 @inproceedings{GustedtMT02, author = {J. Gustedt and O. A. M{\ae}hle and J. A. Telle}, title = {The treewidth of {J}ava programs}, editor = {David M. Mount and Clifford Stein}, booktitle = wea02, publisher = lncs2409, year = 2002, pages ={86-97}} %Gut @article{GutinKLY05, author = {G. Gutin and T. Kloks and C. M. Lee and A. Yeo}, title = {Kernels in planar digraphs}, journal = jcss, volume = 71, pages = {174-184}, year = 2005} @article{GutinRK09, author = {Gregory Gutin and Igor Razgon and Eun Jung Kim}, title = {Minimum leaf out-branching and related problems}, journal = tcs, volume = 410, year = 2009, pages = {4571-4579}} @inproceedings{GutjahrWW89, author = {Wolfgang Gutjahr and Emo Welzl and Gerhart Woeginger}, title = {Polynomial Graph-Colorings}, booktitle = stacs89, pages = {108-119}, year = 1989} @unpublished{Gutner09, author = {Shai Gutner}, title = {Polynomial kernels and faster algorithms for the dominating set problem on graphs with an excluded minor}, year = 2009, note = {In Proceedings IWPEC 2009}} %H %Ha %Haa @article{HaasH06, author = {Robert Haas and Michael Hoffmann}, title = {Chordless paths through three vertices}, journal = tcs, volume = 351, year = 2006, pages = {360-371}} %Hab %Habel 1987 @inproceedings{HabelK87, author = {Annegret Habel and Hans-J\"{o}rg Kreowski}, title = {May we introduce to you: hyperedge replacement}, editor = {Hartmut Ehrig and Manfred Nagl and Grzegorz Rozenberg and Azriel Rosenfeld}, booktitle = gragra86, publisher = lncs291, pages = {15-26}, year = 1987} @article{HabelK87a, author = {Annegret Habel and Hans-J\"{o}rg Kreowski}, title = {Characteristics of Graph Languages generated by Edge Replacement}, journal = tcs, volume = 51, year = 1987, pages = {81-115}} %Habel 1988 @inproceedings{Habel88, author = {Annegret Habel}, title = {Graph-Theoretic Properties Compatible with Graph Derivations}, editor = {Jan van Leeuwen}, booktitle = wg88, pages = {11-29}, publisher = lncs344, year = 1988 } %Habel 1989 @article{HabelKV89, author = {Annegret Habel and Hans-J\"{o}rg Kreowski and W. Vogler}, title = {Metatheorems for decision problems on hyperedge-replacement graph languages}, journal = ai, volume = 26, year = 1989, pages = {657-677}} %Habel 1990 @inproceedings{HabelK90, author = {Annegret Habel and Hans-J\"{o}rg Kreowski}, title = {Filtering hyperedge-replacement languages through compatible properties}, editor = {Manfred Nagl}, booktitle = wg89, year = 1990, publisher = lncs411, pages = {107-120}} %Habel 1992 @book{Habel92, author = {Annegret Habel}, title = {Hyperedge Replacement: Grammars and Languages}, publisher = {Springer-Verlag}, address = {Berlin}, series = {Lecture Notes in Computer Science, Vol. 643}, year = 1992} @inproceedings{HabelK92, author = {Annegret Habel and Hans-J\"{o}rg Kreowski}, title = {Collage Grammars}, booktitle = lncs532, pages = {411-429}, year = 1991} @unpublished{HabelKT92, author = {Annegret Habel and Hans-J\"{o}rg Kreowski and Stefan Taubenberger}, title = {Collage and Patterns Generated by Hyperedge Replacement}, year = 1992, note = {Manuscript, to appear in Languages and Design 1992}} %Habib @article{HabibM87, author = {Michel Habib and Rolf H. M{\"{o}}hring}, title = {On some complexity properties of {N}-free posets and posets with bounded decomposition diameter}, journal = dm, volume = 63, year = 1987, pages = {157-182}} @article{HabibM94, author = {Michel Habib and Rolf H. M{\"{o}}hring}, title = {Treewidth of Cocomparability Graphs and a New Order-theoretic Parameter}, journal = {ORDER}, volume = 1, pages = {47-60}, year = 1994} @article{HabibP04, author = {Michel Habib and Christophe Paul}, title = {A simple linear time algorithm for cograph recognition}, journal = dam, volume = 145, pages = {183-197}, year = 2004} %Hac @article{Hackbusch97, author = {W. Hackbusch}, title = {On the feedback vertex set problem for a planar graph}, journal = {Computing}, volume = 58, year = 1997, pages = {129-155}} %Hag %Hagerup 1988 @article{Hagerup88, author = {Torben Hagerup}, title = {On Saving Space in Parallel Computation}, journal = ipl, volume = 29, pages = {327-329}, year = 1988 } %Hagerup 1990 @article{Hagerup90, author = {Torben Hagerup}, title = {Optimal parallel algorithms on planar graphs}, journal = ic2, volume = 84, pages = {71-96}, year = 1990 } @article{Hagerup90a, author = {Torben Hagerup}, title = {Planar Depth-First Search in ${O}(\log n)$ Parallel Time}, journal = siamjc, volume = 19, pages = {678-704}, year = 1990 } %Hagerup 1995 @inproceedings{HagerupKNR95, author = {Torben Hagerup and Jyrki Katajainen and Naomi Nishimura and Prabhakar Ragde}, title = {Characterizations of $k$-Terminal Flow Networks and Computing Network Flows in Partial $k$-Trees}, booktitle = soda95, year = 1995, pages = {641-649}} %Hagerup 1997 @inproceedings{Hagerup97, author = {Torben Hagerup}, title = {Dynamic algorithms for graphs of bounded treewidth}, editor = {Pierpaolo Degano and Roberto Gorrieri and Alberto Marchetti-Spaccamela}, booktitle = icalp97, publisher = lncs1256, year = 1997, pages = {292-302}} %Hagerup 1998 @article{HagerupKNR98, author = {Torben Hagerup and Jyrki Katajainen and Naomi Nishimura and Prabhakar Ragde}, title = {Characterizing multiterminal flow networks and computing flows in networks of small treewidth}, journal = jcss, volume = 57, pages = {366-375}, year = 1998} %Hagerup 2000 @article{Hagerup00, author = {Torben Hagerup}, title = {Dynamic algorithms for graphs of bounded treewidth}, journal = alg, volume = 27, year = 2000, pages = {292-315}} %Haj %Hal @article{HalldorssonKT00, author = {Magn\'us M. Halld\'orsson and Jan Kratochv\'il and Jan Arne Telle}, title = {Independent Sets with Domination Constraints}, journal = dam, volume = 99, year = 2000, pages = {39-54}} @article{HalldorssonK02, author = {Magn{\'{u}}s Halld{\'{o}}rsson and Guy Kortsarz}, title = {Tools for Multicoloring with Applications to Planar Graphs and Partial $k$-Trees}, journal = ja, volume = 42, pages = {334-366}, year = 2002} %Han @article{Han08, author = {Yijie Han}, title = {A note of an {$O(n^3 / \log n)$} time algorithm for all pairs shortest paths}, journal = ipl, volume = 105, year = 2008, pages = {114-116}} %Hao @article{HaoO94, author = {Jianxiu Hao and James B. Orlin}, title = {A faster algorithm for finding the minimum cut in a directed graph}, journal = ja, volume = 17, pages = {424-446}, year = 1994} %Har @article{HaralamidesMM91, author = {J. Haralamides and F. Makedon and B. Monien}, title = {Bandwidth minimization: an approximation algorithm for caterpillars}, journal = mst, volume = 24, year = 1991, pages = {169-177}} @book{Harary69, author = {F. Harary}, title = {Graph Theory}, publisher = {Addison-Wesley}, address = {Reading, MA}, year = 1969 } @unpublished{HararyT??, author = {Frank Harary and Zsolt Tuza}, title = {Two graph-coloring games}, note = {Manuscript}} @article{HareHH86, author = {E. O. Hare and S. T. Hedetniemi and W. R. Hare}, title = {Algorithms for computing the domination number of $k \times n$ complete grid graphs}, journal = cn, volume = 55, year = 1986, pages = {81-92}} @article{HareH87, author = {E. O. Hare and S. T. Hedetniemi}, title = {A linear algorithm for computing the knight's domination number of a $k \times n$ chessboard}, journal = cn, volume = 59, year = 1987, pages = {115-130}} @inproceedings{HareHLPW87, author = {E. Hare and S. Hedetniemi and R. Laskar and K. Peters and T. Wimer}, title = {Linear-time Computability of Combinatorial Problems on Generalized-Series-Parallel Graphs}, booktitle = {Proceedings of the Japan-US Joint Seminar on Discrete Algorithms and Complexity}, publisher = {Academic Press, Inc.}, address = {Orlando, Florida}, editor = {David S. Johnson and Takao Nishizeki and Akihiro Nozaki and Herbert S. Wilf}, year = 1987 } %Has @article{HassinT86, author = {R. Hassin and A. Tamir}, title = {Efficient Algorithms for Optimization and Selection on Series-Parallel Graphs}, journal = sjadm, volume = 7, year = 1986, pages = {379-389}} @article{HasunumaIOU09, author = {Toru Hasunuma and Toshimasa Ishii and Hirotaka Ono and Yuski Uno}, title = {An {$O(n^{1.75})$} algorithm for {$L(2,1)$}-labeling of trees}, journal = tcs, volume = 410, year = 2009, pages = {3702-3710}} %Hat @article{HattinghJJP07, author = {Johannes H. Hattingh and Elizabeth Jonck and Ernst J. Joubert and Andrew R. Plummer}, title = {Total restrained domination in trees}, journal = dm, volume = 307, pages = {1643-1650}, year = 2007} %He %He 1987 @article{HeY87, author = {Xin He and Yaacov Yesha}, title = {Parallel recognition and decomposition of two terminal series parallel graphs}, journal = ic2, year = 1987, pages = {15-38}, volume = 75 } %He 1988 @article{HeY88, author = {Xin He and Yaacov Yesha}, title = {Binary Tree Algebraic Computation and Parallel Algorithms for Simple Graphs}, journal = ja, volume = 9, pages = {92-113}, year = 1988 } %He 1990 @article{HeY90, author = {Xin He and Yaacov Yesha}, title = {Efficient Parallel Algorithms for $r$-Dominating Set and $p$-Center Problems on Trees}, journal = alg, volume = 5, year = 1990, pages = {129-145}} %He 1991 @article{He91a, author = {Xin He}, title = {An improved algorithm for the planar 3-cut problem}, journal = ja, volume = 12, pages = {23-37}, year = 1991} @article{He91, author = {Xin He}, title = {Efficient parallel algorithms for series-parallel graphs}, journal = ja, volume = 12, pages = {409-430}, year = 1991} %He 1992 @inproceedings{He92, author = {Xin He}, title = {Parallel Algorithms for Cograph Recognition with Applications}, editor = {O. Nurmi and E. Ukkonen}, booktitle = swat92, publisher = lncs621, year = 1992, pages = {94-105}} %He 1993 @article{He93, author = {Xin He}, title = {Parallel algorithms for cograph recognition with applications}, journal = ja, volume = 15, year = 1993, pages = {284-313}} @article{HeZL05, author = {P. R. He and W. J. Zhang and Q. Li}, title = {Some further development on the eigensystem approach for graph isomorphism detection}, journal = {Journal of the Franklin Institute}, volume = 342, year = 2005, pages = {657-673}} %Hea @article{Heath87, author = {Lenwood S. Heath}, title = {Embedding outerplanar graphs in small books}, journal = sjadm, volume = 8, year = 1987, pages = {198-218}} %Hec @article{HechtU74, author = {M. S. Hecht and J. D. Ullman}, title = {Characterization of Reducible Flow Graphs}, journal = jacm, volume = 21, year = 1974, pages = {367-375}} %Hed @inproceedings{HedetniemiHL85, author = {S. M. Hedetniemi and S. T. Hedetniemi and R. Laskar}, title = {Domination in trees: models and algorithms}, booktitle = {Graph Theory with Applications to Algorithms and Computer Science}, publisher = {Wiley}, address = {New York}, year = 1985, pages = {423-442}} @article{HedetniemiPS85, author = {S. M. Hedetniemi and A. Proskurowski and M. M. Sys{\l}o}, title = {Interior graphs of maximal outerplanar graphs}, journal = jctb, volume = 38, pages = {156-167}, number = 2, year = 1985} @article{HedetniemiLP86, author = {S. T. Hedetniemi and R. Laskar and J. Pfaff}, title = {A linear algorithm for the domination number of a cactus}, journal = dam, volume = 13, year = 1986, pages = {287-292}} %Heg %Heggernes 1998 @article{HeggernesT98, author = {Pinar Heggernes and Jan Arne Telle}, title = {Partitioning Graphs into Generalized Dominating Sets}, journal = nordicjc, volume = 5, year = 1998, pages = {128-142}} %Heggernes 2001 @inproceedings{HeggernesEKP01, author = {P. Heggernes and S. Eisenstat and G. Kumfert and A. Pothen}, title = {The computational complexity of the minimum degree algorithm}, booktitle = {Proceedings of the 14th Norwegian Computer Science Conference, NIK 2001}, pages = {98-109}, year = 2001} %Heggernes 2002 @inproceedings{HeggernesV02, author = {Pinar Heggernes and Yngve Villanger}, title = {Efficient implementation of a minimal triangulation algorithm}, editor = {Rolf M{\"{o}}hring and Rajeev Raman}, booktitle = esa02, publisher = lncs2461, year = 2002, pages = {550-561}} %Heggernes 2005 @article{HeggernesTV05, author = {Pinar Heggernes and Jan Arne Telle and Yngve Villanger}, title = {Computing minimal triangulations in time {${O}(n^\alpha \log n) = o(n^{2.376})$}}, journal = sjdm, volume = 19, year = 2005, pages = {900-913}} @inproceedings{HeggernesSTV05, author = {Pinar Heggernes and K. Suchan and I. Todinca and Yngve Villanger}, title = {Minimal interval completions}, booktitle = esa05, year = 2005, publisher = lncs3669, pages = {403-414}} %Heggernes 2006 @article{Heggernes06, author = {Pinar Heggernes}, title = {Minimal triangulations of graphs: {A} survey}, journal = dm, volume = 306, pages = {297-317}, year = 2006} @article{HeggernesL06, author = {Pinar Heggernes and Daniel Lokshtanov}, title = {Optimal broadcast domination in polynomial time}, journal = dm, volume = 306, pages = {3267-3280}, year = 2006} @inproceedings{HeggernesV06, author = {Pinar Heggernes and Yngve Villanger}, title = {Simple and efficient modifications of elimination orderings}, booktitle = {Proceedings of the 7th International Conference on Appied Parallel Computing, PARA 2004}, year = 2006, publisher = lncs3732, pages = {788-797}} %Heggernes 2008 @inproceedings{HeggernesKM08, author = {Pinar Heggernes and Dieter Kratsch and Daniel Meister}, title = {Bandwidth of bipartite permutation graphs in polynomial time}, editor = {Eduardo Sany Laber and Claudson F. Bornstein and Loana Tito Nogueira and Luerbio Faria}, booktitle = latin08, year = 2008, publisher = lncs4957, pages = {216-227}} %Heggernes 2009 @article{HeggernesKM09, author = {Pinar Heggernes and Dieter Kratsch and Daniel Meister}, title = {Bandwidth of bipartite permutation graphs in polynomial time}, journal = jda, volume = 7, year = 2009, pages = {533-544}} @article{HeggernesM09, author = {Pinar Heggernes and Federico Mancini}, title = {Dynamically maintaining split graphs}, journal = dam, volume = 157, year = 2009, pages = {2057-2069}} @article{HeggernesP09, author = {Pinar Heggernes and Charis Papadopoulos}, title = {Single-edge monotonic sequences of graphs and linear-time algorithms for minimal completions and deletions}, journal = tcs, volume = 410, year = 2009, pages = {1-15}} @article{HeggernesP09a, author = {Pinar Heggernes and Barry W. Peyton}, title = {Fast computation of minimal fill inside a given elimination orering}, journal = sjmaa, volume = 30, year = 2009, pages = {1424-1444}} %Hei @inproceedings{HeinzelmanCB00, author = {W. R. Heinzelman and A. Chandrakasan and H. Balakrishnan}, title = {Energy-Efficient Communication Protocol for Wireless Microsensor Networks}, booktitle = {Proceedings of the 33rd Hawaii International Conference on System Sciences, HICSS-33}, year = 2000} %Hel @article{HeldK62, author = {M. Held and R. Karp}, title = {A dynamic programming approach to sequencing problems}, journal = {Journal of the Society for Industrial and Applied Mathematics}, volume = 10, year = 1962, pages = {196-210}} @unpublished{HelmbergMPR93, author = {Christoph Helmberg and Bojan Mohar and Svatopluk Poljak and Franz Rendl}, title = {A spectral approach to Bandwidth and Separator Problems in Graphs}, note = {Manuscript}, year = 1993} @article{HellM76, author = {P. Hell and D. Miller}, title = {Graphs with given achromatic number}, journal = dm, volume = 16, year = 1976, pages = {195-207}} %Hen %Henning 2003 @article{Henning03, author = {M. A. Henning}, title = {Defending the {R}oman Empire from multiple attacks}, journal = dm, volume = 271, year = 2003, pages = {101-115}} @article{HenningH03, author = {M. A. Henning and S. T. Hedetniemi}, title = {Defending the {R}oman Empire --- {A} new strategy}, journal = dm, volume = 271, year = 2003, pages = {239-251}} %Henning 2009 @article{Henning09, author = {Michael A. Henning}, title = {A survey or selected recent results on total domination in graphs}, journal = dm, volume = 309, year = 2009, pages = {32-63}} %Henning 2010 @article{HenningK10, author = {Michael A. Henning and Adel P. Kazemi}, title = {$k$-Tuple total domination in graphs}, journal = dam, volume = 158, year = 2010, pages = {1006-1011}} @inproceedings{HenzingerK97, author = {Monika R. Henzinger and Valerie King}, title = {Maintaining minimum spanning trees in dynamic graphs}, editor = {Pierpaolo Degano and Roberto Gorrieri and Alberto Marchetti-Spaccamela}, booktitle = icalp97, publisher = lncs1256, year = 1997, pages = {594-604}} %Her @inproceedings{HershbergerRS92, author = {J. Herschberger and M. Rauch and S. Suri}, title = {Fully Dynamic 2-Connectivity in Planar Graphs}, editor = {O. Nurmi and E. Ukkonen}, booktitle = swat92, publisher = lncs621, year = 1992, pages = {233-244}} %Heu @inproceedings{HeunM96, title={Embedding Graphs with Bounded Treewidth into Optimal Hypercubes}, author={Volker Heun and Ernst W. Mayr}, editor = {Claude Puech and R{\"u}diger Reischuk}, booktitle = stacs96, publisher = lncs1046, pages = {157-168}, year = 1996} @techreport{HeuvelM99, author = {Jan van den Heuvel and Sean McGuinness}, title = {Colouring the square of a planar graph}, institution = {Centre for Discrete and Applicable Mathematics, London School of Economics, London, U.K.}, type = {Report}, number = {LSE-CDAM-99-06}, year = 1999} %Hi %Hic %Hicks 2000 @phdthesis{Hicks00, author = {Illya V. Hicks}, title = {Branch Decompositions and their Applications}, school = {Rice University}, address = {Houston, Texas}, year = 2000} %Hicks 2002 @article{Hicks02, author = {Illya V. Hicks}, title = {Branchwidth heuristics}, journal = cn, volume = 159, year = 2002, pages = {31-50}} %Hicks 2004 @article{Hicks04, author = {Illya V. Hicks}, title = {Branch decompositions and minor containment}, journal = networks, volume = 43, year = 2004, pages = {1-9}} %Hicks 2005 @article{Hicks05a, author = {Illya V. Hicks}, title = {Planar branch decompositions {I}: {T}he ratcatcher}, journal = informsjc, volume = 17, year = 2005, pages = {402-412}} @article{Hicks05b, author = {Illya V. Hicks}, title = {Planar branch decompositions {II}: {T}he cycle method}, journal = informsjc, volume = 17, year = 2005, pages = {413-421}} @article{Hicks05, author = {Illya V. Hicks}, title = {Graphs, Branchwidth, and Tangles! {O}h My!}, journal = networks, volume = 45, year = 2005, pages = {55-60}} @InCollection{HicksKK05, author = {Hicks, Illya V. and Koster, Arie M. C. A. and Elif Koloto\u{g}lu}, title = {Branch and Tree Decomposition Techniques for Discrete Optimization}, booktitle = {TutORials 2005}, editor = {J. Cole Smith}, publisher = {INFORMS Annual Meeting}, series = {INFORMS Tutorials in Operations Research Series}, chapter = {1}, year = {2005}, pages = {1--29}, } %Hicks 2007 @article{HicksM07, author = {Illya V. Hicks and Nolan B. {McMurray Jr.}}, title = {The branchwidth of graphs and their cycle matroids}, journal = jctb, volume = 97, year = 2007, pages = {681-692}} %Hii @mastersthesis{Hiim97m, author = {Bj\"orn Hiim}, title = {Implementing and testing of algorithms for tree-like graphs}, school = {University of Bergen}, address = {Bergen, Norway}, year = 1997} %Hir @article{HirschbergCS79, author = {D. S. Hirschberg and A. K. Chandra and D. V. Sarwate}, title = {Computing connected components on parallel computers}, journal = cacm, volume = 22, year = 1979, pages = {461-464}} %Hl %Hli %Hlineny 2002 @article{Hlineny02, author = {Petr Hlin\v{e}n\'{y}}, title = {On the excluded minors for matroids of branch-width tree}, journal = ejc, volume = 9, number = 1, year = 2002} %Hlineny 2003 @article{Hlineny03, author = {Petr Hlin\v{e}n\'{y}}, title = {Crossing-number critical graphs have bounded path-width}, journal = jctb, volume = 88, pages = {347-367}, year = 2002} @techreport{HlinenyW03, author = {Petr Hlin\v{e}n{\'y} and G. Whittle}, title = {Matroid Tree-width}, year = 2003, address = {Ostrava, Czech Republic}, institution = {Technical University Ostrava}, note = {Extended abstract in Eurocomb'03, ITI Series 2003-145, Charles University}} %Hlineny 2005 @article{Hlineny05, author = {Petr Hlin\v{e}n\'{y}}, title = {A parameterized algorithm for matroid branch-width}, journal = siamjc, volume = 35, year = 2005, pages = {259-277}} %Hlineny 2006 @article{Hlineny06, author = {Petr Hlin\v{e}n\'{y}}, title = {Branch-width, parse trees, and monadic second-order logic for matroids}, journal = jctb, volume = 96, year = 2006, pages = {325-351}} @article{Hlineny06a, author = {Petr Hlin\v{e}n\'{y}}, title = {A parameterized algorithm for matroid branchwidth}, journal = siamjc, volume = 35, year = 2006, pages = {259-277}} @article{Hlineny06b, author = {Petr Hlin\v{e}n\'{y}}, title = {Crossing number is hard for cubic graphs}, journal = jctb, volume = 96, year = 2006, pages = {455-471}} @article{Hlineny06c, author = {Petr Hlin\v{e}n\'{y}}, title = {The {T}utte polynomial for matroids of bounded branch-width}, journal = cpc, volume = 15, year = 2006, pages = {397-409}} @article{HlinenyS06, author = {Petr Hlin\v{e}n{\'y} and Detlef Seese}, title = {Trees, grids, and {MSO} decidability: From graphs to matroids}, journal = tcs, volume = 351, pages = {425-436}, year = 2006} @article{HlinenyW06, author = {Petr Hlin\v{e}n{\'y} and Geoff Whittle}, title = {Matroid tree-width}, journal = ejcom, volume = 27, year = 2006, pages = {1117-1128}} %Hlineny08 @article{HlinenyO08, author = {Petr Hlin\v{e}n{\'y} and {Sang-il} Oum}, title = {Finding branch-decompositions and rank-decompositions}, journal = siamjc, volume = 38, year = 2008, pages = {1012-1032}} @article{HlinenyOSG08, author = {Petr Hlin\v{e}n{\'y} and {Sang-il} Oum and Detlef Seese and Georg Gottlob}, title = {Width parameters beyond tree-width and their applications}, journal = tcj, volume = 51, year = 2008, pages = {326-362}} %Ho @article{HoL88, author = {Chin-Wen Ho and Richard C. T. Lee}, title = {Efficient parallel algorithms for finding maximal cliques, clique trees, and minimum coloring on chordal graphs}, journal = ipl, volume = 28, year = 1988, pages = {301-309}} @article{HoL89, author = {Chin-Wen Ho and Richard C. T. Lee}, title = {Counting clique trees and computing perfect elimination schemes in parallel}, journal = ipl, volume = 31, pages = {61-68}, year = 1989} %Hoe @article{HoeselM09, author = {Hoesel, C. P. M. {v}an and B. Marchal}, title = {Finding good tree decompositions by local search}, journal = endm, volume = 32, year = 2009, pages = {43--50}} %Hof @article{HofPW09, author = {Pim {van 't Hof} and Dani\"{e}l Paulusma and Gerhard J. Woeginger}, title = {Partitioning graphs into connected parts}, journal = tcs, volume = 410, year = 2009, pages = {4834-4843}} @article{HofP10, author = {Pim {van 't Hof} and Dani\"{e}l Paulusma}, title = {A new characterization of {$P_6$}-free graphs}, journal = dam, volume = 158, year = 2010, pages = {731-740}} %Hoh @unpublished{HohbergR89, author = {Walter Hohberg and R\"udiger Reischuk}, title = {Decomposition of Graphs --- A Uniform Approach for the Design of Fast Sequential and Parallel Algorithms on Graphs}, year = 1989, note = {Preprint}} @mastersthesis{Hohberg89, author = {Walter Hohberg}, title = {Zerlegung von {G}raphen --- ein allgemeines, sequentielles und paralleles {L}\"{o}sungsverfahren f\"{u}r Graphprobleme}, school = {TH Darmstadt}, note = {Dissertation}, year = 1989} @unpublished{HohbergR90, author = {Walter Hohberg and R\"udiger Reischuk}, title = {A Framework to Design Algorithms for Optimization Problems on Graphs}, note = {Preprint}, year = 1990, month = {4}} %Hol @article{Holst02, author = {Hein {van der Holst}}, title = {On the ''Largeur d'Arborescence''}, journal = jgt, volume = 41, pages = {24-52}, year = 2002} @article{Holst09, author = {Hein {van der Holst}}, title = {A polynomial-time algorithm to find a linkless embedding of a graph}, journal = jctb, volume = 99, year = 2009, pages = {512-530}} @article{Holyer81, author = {Ian Holyer}, title = {The {NP}-Completeness of Edge-coloring}, journal = siamjc, volume = 10, year = 1981, pages = {718-720}} %Hon @article{HongR82, author = {J. Hong and A. Rosenberg}, title = {Graphs that are almost binary trees}, journal = siamjc, volume = 11, year = 1982, pages = {227-242}} @article{HongMR83, author = {J. Hong and K. Mehlhorn and A. Rosenberg}, title = {Cost trade-offs in graph embeddings, with applications}, journal = jacm, volume = 30, year = 1983, pages = {709-728}} @article{HongP06, author = {B. Hong and V. K. Prasanna}, title = {Maximum lifetime data sensing and extraction in energy constrained networked sensor systems}, journal = jpdc, volume = 66, number = 4, year = 2006, pages = {566-577}} %Hoo @phdthesis{Hoover90, author = {Mark Hoover}, title = {Complexity, Structure and Algorithms for Edge-Partition Problems}, school = {University of New Mexico}, address = {Albuquerque, New Mexico, USA}, year = 1990} %Hop @article{HopcroftT73, author = {J. E. Hopcroft and Robert Endre Tarjan}, title = {Dividing a graph into triconnected components}, journal = siamjc, volume = 2, pages = {135-158}, year = 1973} @article{HopcroftT74, author = {J. E. Hopcroft and Robert Endre Tarjan}, title = {Efficient planarity testing}, journal = jacm, volume = 21, pages = {549-568}, year = 1974 } @article{HopcroftK75, author = {J. E. Hopcroft and R. M. Karp}, title = {An $n^{5/2}$ Algorithm for Maximum Matching in Bipartite Graphs}, journal = siamjc, volume = 2, year = 1973, pages = {225-231}} @article{HopcroftPV77, author = {J. E. Hopcroft and W. Paul and L. Valiant}, title = {On time versus space}, journal = jacm, volume = 24, year = 1977, pages = {332-337}} %Hor @book{HorowitzS78, author = {Ellis Horowitz and Sartaj Sahni}, title = {Fundamentals of Computer Algorithms}, publisher = {Pitman}, address = {London}, year = 1978} %Hou @article{HougardyPS94, author = {S. Hougardy and H. J. Pr\"{o}mel and A. Steger}, title = {Probabilistically checkable proofs and their consequences for approximation algorithms}, journal = dm, volume = 136, year = 1994, pages = {175-223}} %Hs %Hsi @article{HsiehHHKC02, author = {Sun-Yuan Hsieh and Chin-Wen Ho and Tsan-Sheng Hsu and Ming-Tat Ko and Gen-Huey Chen}, title = {Characterization of efficiently parallel solvable problems on distance-hereditary graphs}, journal = sjdm, volume = 15, year = 2002, pages = {488-518}} @article{Hsieh05, author = {Sun-Yuan Hsieh}, title = {Efficiently parallelizable problems on a class of decomposable graphs}, journal = jcss, volume = 70, year = 2005, pages = {140-156}} %Hsu @article{Hsu85, author = {Wen-Lian Hsu}, title = {Maximum weight clique algorithms for circular-arc graphs and circle graphs}, journal = siamjc, volume = 14, year = 1985, pages = {224-231}} @article{Hsu87, author = {Wen-Lian Hsu}, title = {Decomposition of perfect graphs}, journal = jctb, volume = 43, year = 1987, pages = {70-94}} @article{Hsu87a, author = {Wen-Lian Hsu}, title = {Recognizing planar perfect graphs}, journal = jacm, volume = 34, year = 1987, pages = {255-288}} @article{Hsu88, author = {Wen-Lian Hsu}, title = {The Coloring and Maximum Independent Set problems on planar perfect graphs}, journal = jacm, volume = 35, year = 1988, pages = {535-563}} @inproceedings{Hsu93, author = {Wen-Lian Hsu}, title = {A simple test for interval graphs}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {11-16}} %Hu %Hua @article{Huang06, author = {Jing Huang}, title = {Representation characterizations of chordal bipartite graphs}, journal = jctb, volume = 96, year = 2006, pages = {673-683}} %Huf @phdthesis{Huffner08, author = {Falk H\"{u}ffner}, title = {Algorithms and Experiments for Parameterized Approaches to Hard Graph Problems}, year = {2008}, school = {Friedrich-Schiller University}, address = {Jena, Germany}} @inproceedings{HuffnerKMN08, author = {Falk H\"{u}ffner and Christian Komusiewicz and Hannes Moser and Rolf Niedermeier}, title = {Fixed-parameter algorithms for cluster vertex deletion}, editor = {Eduardo Sany Laber and Claudson F. Bornstein and Loana Tito Nogueira and Luerbio Faria}, booktitle = latin08, year = 2008, publisher = lncs4957, pages = {711-722}} @article{HuffnerKMN09, author = {Falk H\"{u}ffner and Christian Komusiewicz and Hannes Moser and Rolf Niedermeier}, title = {Isolation concepts for clique enumeration: Comparison and computational experiments}, journal = tcs, volume = 410, year = 2009, pages = {5384-5397}} %Hun @book{Hungerford74, author = {Thomas W. Hungerford}, title = {Algebra}, publisher = {Springer-Verlag, New York}, series = {Graduate Texts in Mathematics 73}, year = 1974 } @techreport{HuntMRRRS93, author = {H. B. {Hunt, III} and Madhav V. Marathe and Venkatesh Radhakrishnan and S. S. Ravi and D. J. Rosenkrantz and Richard E. Stearns}, title = {Every Problem in {MAX SNP} has a Parallel Approximation Algorithm}, number = {TR 93-8}, institution = {Dept. of Computer Science, University at Albany - SUNY}, address = {Albany, NY}, year = 1993} @article{HunterK08, author = {Paul Hunter and Stephan Kreutzer}, title = {Digraph measures: {K}elly decompositions, games, and orderings}, journal = tcs, volume = 399, year = 2008, pages = {206-219}} %Hur @article{HurinkN08, author = {Johann L. Hurink and Tim Nieberg}, title = {Approximating minimum independent dominating sets in wireless networks}, journal = ipl, volume = 109, year = 2008, pages = {155-160}} %I %Ib %Iba @article{Ibarra09, author = {Louis Ibarra}, title = {The clique-separator graph for chordal graphs}, journal = dam, volume = 157, year = 2009, pages = {1737-1749}} @article{Ibarra10, author = {Oscar H. Ibarra and Igor Potapov and Hsu-Chun Yen}, title = {On decision problems for parameterized machines}, journal = tcs, volume = 411, year = 2010, pages = {1192-1201}} %Id %Idu @article{IduryS93, author = {R. Idury and A. Schaffer}, title = {Triangulating three-colored graphs in linear time and linear space}, journal = sjdm, volume = 2, pages = {289-293}, year = 1993} %Ih @inproceedings{Ihler93, author = {E. Ihler}, title = {Minimum rectilinear {S}teiner trees for intervals on two parallel lines}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {123-134}} %Im %Imp @article{ImpagliazzoPZ01, author = {Russell Impagliazzo and Ramamohan Paturi and Francis Zane}, title = {Which problems have strongly exponential complexity?}, journal = jcss, volume = 63, year = 2001, pages = {512-530}} %In %Inm @manual{Inmos91, title = {The T9000 Transputer Products Overview Manual}, organization = {Inmos}, year = 1991} %Ir %Irv @article{Irving85, author = {Robert W. Irving}, title = {An efficient algorithm for the stable roommates problem}, journal = ja, volume = 6, year = 1985, pages = {577-595}} @article{IrvingL86, author = {Robert W. Irving and P. Leather}, title = {The complexity of counting stable marriages}, journal = siamjc, volume = 15, year = 1986, pages = {655-667}} @article{IrvingLG87, author = {Robert W. Irving and P. Leather and D. Gusfield}, title = {An efficient algorithm for the ``optimal'' stable marriage}, journal = jacm, volume = 34, year = 1987, pages = {532-543}} @article{Irving91, author = {Robert W. Irving}, title = {On approximating the minimum independent dominating set}, journal = ipl, volume = 37, year = 1991, pages = {197-200}} %Is %Isl @article{IslerK08, author = {Volkan Isler and Nikhil Karnad}, title = {The role of information in the cop-robber game}, journal = tcs, volume = 399, year = 2008, pages = {169-178}} %Iso @article{IsobeZN99, author = {Shuji Isobe and Xiao Zhou and Takao Nishizeki}, title = {A polynomial-time algorithm for finding total colorings of partial $k$-trees}, journal = ijfcs, volume = 10, pages = {171-194}, year = 1999} %It %Ita @article{ItaiR78, author = {A. Itai and M. Rodeh}, title = {Finding a Minimum Circuit in a Graph}, journal = siamjc, volume = 7, year = 1978, pages = {413-423}} @article{ItaiPS94, author = {A. Itai abd C. H. Papadimitriou and J. L. Szwartzfiter}, title = {Hamiltonian paths in grid graphs}, journal = siamjc, volume = 11, year = 1984, pages = {676-684}} @inproceedings{ItalianoMN89, author = {G. F. Italiano and A. {Marchetti Spaccamela} and U. Nanni}, title = {Dynamic data structures for series parallel digraphs}, editor = {Frank K. H. A. Dehne and J\"{o}rg-R\"{u}diger Sach and Nicola Santoro}, booktitle = wads89, pages = {352-372}, year = 1989, publisher = lncs382} %Ito @article{ItoNZ03, author = {T. Ito and T. Nishizeki and X. Zhou}, title = {Algorithms for multicolorings of partial $k$-trees}, journal = {IEICE Transactions on Information and Systems}, volume = {E86-D}, year = 2003, pages = {191-200}} @article{ItoZN06, author = {Takehiro Ito and Xiao Zhou and Takao Nishizeki}, title = {Partitioning a graph of bounded tree-width to connected subgraphs of almost uniform size}, journal = jda, volume = 4, year = 2006, pages = {142-154}} %Iy @article{IyerRV88, author = {A. V. Iyer and H. D. Ratliff and G. Vijayan}, title = {Optimal node ranking of trees}, journal = ipl, volume = 28, year = 1988, pages = {225-229}} @article{IyerRV91, author = {A. V. Iyer and H. D. Ratliff and G. Vijayan}, title = {On an edge-ranking problem of trees and graphs}, journal = dam, volume = 30, year = 1991, pages = {43-52}} %J %Ja %Jai @unpublished{JainC??, author = {Amit Jain and N. Chandrasekharan}, title = {An efficient parallel algorithm for min-cost flow on directed series-parallel networks}, note = {Manuscript}} %Jaj @book{Jaja92, author = {Joseph J{\'{a}}J{\'{a}}}, title = {An Introduction to Parallel Algorithms}, year = 1992, publisher = {Addison-Wesley}} %Jak @article{JakobyLR06, author = {Andreas Jakoby and Maciej Li\'{s}kiewicz and R\"{u}diger Reischuk}, title = {Space efficient algorithms for directed series-parallel graphs}, journal = ja, volume = 60, year = 2006, pages = {85-114}} %Jam @article{JamisonO89, author = {B. Jamison and S. Olariu}, title = {$P_4$-reducible graphs, a class of uniquely tree representable graphs}, journal = sam, volume = 81, year = 1989, pages = {79-87}} @article{JamisonO89b, author = {B. Jamison and S. Olariu}, title = {On a Class of {$P_5$}-Free Graphs}, journal = sam, volume = 81, year = 1989, pages = {33-39}} @article{JamisonO91, author = {B. Jamison and S. Olariu}, title = {On a unique tree representation for {$P_4$}-extendible graphs}, journal = dam, volume = 34, year = 1991, pages = {151-164}} @article{JamisonO92, author = {B. Jamison and S. Olariu}, title = {A tree representation for {$P_4$}-sparse graphs}, journal = dam, volume = 35, year = 1992, pages = {115-129}} @unpublished{JamisonO92a, author = {B. Jamison and S. Olariu}, title = {P-components and the Homogeneous Decomposition of Graphs}, note = {Manuscript}, year = {1992}} @article{JamisonO92b, author = {B. Jamison and S. Olariu}, title = {Recognizing $P_4$-sparse graphs in linear time}, journal = siamjc, volume = 21, number = 2, year = 1992, pages = {381-406}} @inproceedings{JamisonO93, author = {B. Jamison and S. Olariu}, title = {On the homogeneous decomposition of graphs}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {170-183}} %Jan %Jansen 1990 @techreport{Jansen90, author = {Klaus Jansen}, title = {An Assignment Problem for Hardware Design}, type = {Arbeitsberichte}, number = 27, year = 1990, institution = {Universit\"{a}t Trier, Mathematik}} @techreport{Jansen90a, author = {Klaus Jansen}, title = {Interval Union of Graphs}, type = {Arbeitsberichte}, number = 27, year = 1990, institution = {Universit\"{a}t Trier, Mathematik}} %Jansen 1993 @inproceedings{Jansen93, author = {Klaus Jansen}, title = {On scheduling problems restricted to interval orders}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {27-36}} @inproceedings{JansenS93, author = {Klaus Jansen and Petra Scheffler}, title = {Generalized Coloring for Tree-like Graphs}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {50-59}} %Jansen 1997 @article{JansenS97, author = {Klaus Jansen and Petra Scheffler and Gerhard Woeginger}, title = {The disjoint cliques problem}, journal = {RAIRA Recherhe Operationelle}, volume = 31, year = 1997, pages = {45-66}} %Jansen 2006 @article{JansenKLS06, author = {K. Jansen and M. Karpinski and A. Lingas and E. Seidel}, title = {Polynomial time approximation schemes for max-bisection on planar and geometric graphs}, journal = siamjc, volume = 35, year = 2006, pages = {110-119}} %Jansen 2009 @mastersthesis{Jansen09, author = {Bart Jansen}, title = {Fixed parameter complexity of the weighted max leaf problem}, year = 2009, school = {Department of Computer Science, Utrecht University}} %Je %Jeg @article{JegouT03, author = {Philippe J\'{e}gou and Cyril Terrioux}, title = {Hybrid backtracking bounded by tree-decomposition of constraint networks}, journal = ai, volume = 146, year = 2003, pages = {43-75}} @inproceedings{JegouNT05, author = {Philippe J\'{e}gou and Samba Ndiaye and Cyril Terrioux}, title = {Computing and Exploiting Tree-Decompositions for Solving Constraint Networks}, booktitle = {Proceedings of the 11th International Conference on Principles and Practice of Constraint Programming, CP 2005}, publisher = lncs3709, year = 2005, pages = {777-781}} %Jel @article{Jelinek10, author = {V\'{\i}t Jel\'{\i}nek}, title = {The rank-width of the square grid}, journal = dam, volume = 158, year = 2010, pages = {841-850}} %Jen @book{Jensen01, author = {F. V. Jensen}, title = {Bayesian Networks and Decision Graphs}, publisher = {Statistics for Engineering and Information Science, Springer-Verlag}, address = {New York}, year = 2001} %Ji %Jin @article{JinL06, author = {Zemin Jin and Xueliang Li}, title= {On the $k$-path cover problem for cacti}, journal = tcs, pages = {354-363}, year = 2006, volume = 355} %Jo %Joh @article{Johansson98, author = {{\"{O}}jvind Johansson}, title = {Clique-decomposition, {NLC}-decomposition, and modular decomposition-relationships and results for random graphs}, journal = cn, volume = 132, pages = {39-60}, year = 1998} @article{Johansson00, author = {{\"{O}}jvind Johansson}, title = {NLC$_2$-decomposition in polynomial time}, journal = ijfcs, volume = 11, year = 2000, pages = {373-395}} %Johnson 1983 @article{Johnson83, author = {D. S. Johnson}, title = {The {NP}-completeness column: {An} ongoing guide}, journal = ja, volume = 4, year = 1983, pages = {397-411}} %Johnson 1985 @article{Johnson85, author = {David S. Johnson}, title = {The {NP}-completeness Column: An Ongoing Guide}, journal = ja, year = 1985, volume = 6, pages = {434-451}} %Johnson 1987 @article{Johnson87, author = {David S. Johnson}, title = {The {NP}-completeness Column: An Ongoing Guide}, journal = ja, year = 1987, volume = 8, pages = {285-303}} @article{JohnsonP87, author = {David S. Johnson and H. O. Pollak}, title = {Hypergraph planarity and the complexity of drawing Venn diagrams}, journal = jgt, volume = 11, year = 1987, pages = {309-326}} %Johnson 1988 @article{JohnsonYP88, author = {David S. Johnson and Mihalis Yannakakis and Christos H. Papadimitriou}, title = {On generating all maximal independent sets}, journal = ipl, year = 1988, volume = 27, pages = {119-123}} %Johnson 2001 @article{JohnsonRST01, author = {T. Johnson and N. Robertson and P. D. Seymour and R. Thomas}, title = {Directed tree-width}, journal = jctb, volume = 82, year = 2001, pages = {138-154}} %Ju @article{JungckDD82, author = {John R. Jungck and Gregg Dick and Amy Gleason Dick}, title = {Computer-assisted sequencing, interval graphs, and molecular evolution}, journal = {BioSystems}, volume = 15, year = 1982, pages = {259-273}} %K %Ka %Kab @inproceedings{Kabanets97, author = {Valentine Kabanets}, title = {Recognizability Equals Definability for Partial $k$-Paths}, editor = {Pierpaolo Degano and Roberto Gorrieri and Alberto Marchetti-Spaccamela}, booktitle = icalp97, year = 1997, publisher = lncs1256, pages = {805-815}} %Kai @article{Kaiser09, author = {T. Kaiser}, title = {Minors of simplicial complexes}, journal = dam, volume = 157, year = 2009, pages = {2597-2602}} %Kaj @article{KajitaniIU86, author = {Y. Kajitani and A. Ishizuka and S. Ueno}, title = {Characterization of partial 3-trees in terms of three structures}, journal = gc, volume = 2, year = 1986, pages = {233-246}} %Kal %Kall @inproceedings{Kaller95, author = {Damon Kaller}, title = {Definability equals recognizability of partial 3-trees}, editor = {Fabrizio d'Amore and Paolo Giulio Franciosa and Alberto Marchetti-Spaccamela}, booktitle = wg96, pages = {239-253}, year = 1997, publisher = lncs1197} @inproceedings{KallerGS95, author = {Damon Kaller and A. Gupta and T. Shermer}, title = {Regular-factors in the complement of partial $k$-trees}, editor = {Selim G. Akl and Frank K. H. A. Dehne and J\"{o}rg-R\"{u}diger Sack and Nicola Santoro}, booktitle = wads95, publisher = lncs955, pages = {403-414}, year = 1995} @inproceedings{KallerGS95a, author = {Damon Kaller and A. Gupta and T. Shermer}, title = {The $\chi_t$-coloring problem}, editor = {Ernst W. Mayr and Claude Puech}, booktitle = stacs95, publisher = lncs900, pages = {409-420}, year = 1995} @article{Kaller00, author = {Damon Kaller}, title = {Definability equals recognizability of partial 3-trees and $k$-connected partial $k$-trees}, journal = alg, volume = 27, year = 2000, pages = {348-381}} %Kalp @article{KalpakisDN03, author = {K. Kalpakis and K. Dasgupta and P. Namjoshi}, title = {Efficient algorithms for maximum lifetime data gathering and aggregation in wireless sensor networks}, journal = cnet, volume = 42, number = 6, year = 2003, pages = {697-716}} %Kam @article{MainskiLM09, author = {Marcin Kami\'{n}ski and Vadim V. Lozin and Martin Milani\v{c}}, title = {Recent developments on graphs of bounded clique-width}, journal = dam, volume = 157, year = 2009, pages = {2747-2761}} @inproceedings{KammerT08, author = {Frank Kammer and Torsten Tholey}, title = {The complexity of minimum convex coloring}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {16-27}} %Kan @article{KanevskyR91, author = {A. Kanevsky and V. Ramachandran}, title = {Improved algorithms for graph four-connectivity}, journal = jcss, volume = 42, year = 1991, pages = {288-306}} @inproceedings{KanjPS04, author = {Iyad A. Kanj and Michael J. Pelsmajer and Marcus Schaefer}, title = {Parameterized algorithms for feedback vertex set}, editor = {R. G. Downey and M. R. Fellows}, booktitle = iwpec04, year = 2004, publisher = lncs3162, pages = {235-248}} @article{KannanW92, author = {Sampath Kannan and Tandy Warnow}, title = {Triangulating 3-colored graphs}, journal = sjdm, volume = 5, year = 1992, pages = {249-258}} @article{KannanW94, author = {Sampath Kannan and Tandy Warnow}, title = {Inferring Evolutionary History from {DNA} sequences}, journal = siamjc, volume = 23, year = 1994, pages = {713-737}} @article{KannanW97, author = {Sampath Kannan and Tandy Warnow}, title = {A fast algorithm for the computation and enumeration of perfect phylogenies}, journal = siamjc, volume = 26, year = 1997, pages = {1749-1763}} @techreport{Kant91, author = {Goos Kant}, title = {Linear Planar Augmentation Algorithms for Outerplanar Graphs}, type = {Technical Report}, number = {RUU-CS-91-47}, institution = {Utrecht University}, year = 1991} @inproceedings{Kant93, author = {Goos Kant}, title = {Hexagonal grid drawings}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {263-276}} @phdthesis{Kant93a, author = {Goos Kant}, title = {Algorithms for Drawing Planar Graphs}, school = {Utrecht University}, year = 1993} @article{Kant96, author = {Goos Kant}, title = {Augmenting Outerplanar Graphs}, journal = ja, volume = 21, pages = {1-25}, year = 1996} @article{KantB97, author = {Goos Kant and Hans L. Bodlaender}, title = {Triangulating Planar Graphs While Minimizing the Maximum Degree}, journal = ic2, volume = 135, pages = {1-14}, year = 1997} %Kap %Kaplan 1994 @inproceedings{KaplanST94, author = {Haim Kaplan and Ron Shamir and Robert Endre Tarjan}, title = {Tractability of parameterized completion problems on chordal and interval graphs: Minimum Fill-in and Physical Mapping}, booktitle = focs94, pages = {780-791}, year = 1994} %Kaplan 1996 @article{KaplanS96, author = {Haim Kaplan and Ron Shamir}, title = {Pathwidth, Bandwidth and Completion Problems to Proper Interval Graphs with Small Cliques}, journal = siamjc, volume = 25, pages = {540-561}, year = 1996} %Kaplan 1999 @article{KaplanST99, author = {Haim Kaplan and Ron Shamir and Robert Endre Tarjan}, title = {Tractability of parameterized completion problems on chordal, strongly chordal, and proper interval graphs}, journal = siamjc, volume = 28, year = 1999, pages = {1906-1922}} %Kaplan 2009 @inproceedings{KaplanN09, author = {Haim Kaplan and Yahav Nussbaum}, title = {Maximum flow in directed planar graphs with vertex capacities}, editor = {Amos Fiat and Peter Sanders}, booktitle = esa09, publisher = lncs5757, year = 2009, pages = {397-407}} %Kar @inproceedings{Karp72, author = {Richard M. Karp}, title = {Reducibility among combinatorial problems}, booktitle = {Complexity of Computer Computations}, publisher = {Plenum Press}, year = 1972, editor = {R. E. Miller and J. W. Thatcher}, pages = {85 - 104}} @article{Karp75, author = {Richard M. Karp}, title = {On the complexity of combinatorial problems}, journal = networks, year = 1975, volume = 5, pages = {45-68}} @article{KarpUW86, author = {R. M. Karp and E. Upfal and A. Wigderson}, title = {Constructing a maximum matching is in random {NC}}, journal = comb, volume = 6, year = 1986, pages = {35-48}} @inproceedings{Karp93, author = {Richard M. Karp}, title = {Mapping the Genome: Some Combinatorial Problems Arising in Molecular Biology}, year = 1993, booktitle = stoc93, pages = {278-285}, publisher = {ACM Press}, address = {New York} } @techreport{KarpinskiWZ97, author = {Marek Karpinski and J\"{u}rgen Wirtgen and Alex Zelikovsky}, title = {An approximation algorithm for the bandwidth problem on dense graphs}, number = {TR97-017}, type = {Electronic Colloquium on Computational Complexity Report}, year = 1997} @article{Karonski82, author = {M. Karonski}, title = {On the number of $k$-trees in a random graph}, journal = pms, volume = 2, year = 1982, pages = {197-205}, something = {Fasc. 2}} %Kas @article{KashemZN00, author = {Md. Abul Kashem and Xiao Zhou and Takao Nishizeki}, title = {Algorithms for generalized vertex-rankings of partial $k$-trees}, journal = tcs, volume = 240, year = 2000, pages = {407-427}} @inproceedings{KashiwabaraF79, author = {T. Kashiwabara and T. Fujisawa}, title = {An {NP}-complete problem on interval graphs}, booktitle = {Proc. IEEE Symp. on Circuits and Systems}, year = 1979, pages = {82-83}} %Kav @techreport{KavvadiasPSZ94, author = {D. Kavvadias and G. Pantziou and P. Spirakis and C. Zaroliagis}, title = {Hammock-on-Ears Decomposition: A Technique for the Efficient Parallel Solution of Shortest Paths and Other Problems}, number = {MPI-I-94-131}, year = 1994, institution = {Max-Planck-Institut f\"{u}r Informatik}, address = {Saarbr\"{u}cken, Germany}} %Kaw @inproceedings{KawarabayashiM08, author = {Ken-ichi Kawarabayashi and Bojan Mohar}, title = {Graph and map isomorphism and all polyhedral embeddings in linear time}, booktitle = stoc08, year = 2008, pages = {471-480}} @article{KawarabayashiT09, author = {Ken-ichi Kawarabayashi and Carsten Thomassen}, title = {Decomposing a planar graph into an independent set and a forest}, journal = jctb, volume = 99, year = 2009, pages = {674-684}} %Kay @article{Kaye00, author = {Richard Kaye}, title = {Minesweeper is {NP}-complete}, journal = {The Mathematical Intelligencer}, volume = 22, year = 2000, pages = {9-15}} %Ke @article{KeijsperPS06, author = {J. C. M. Keijsper and R. A. Pendavingh and L. Stougie}, title = {A linear programming formulation of {M}ader's edge-disjoint paths problem}, journal = jctb, volume = 96, pages = {159-163}, year = 2006} @article{Keil85, author = {J. Mark Keil}, title = {Finding {H}amiltonian Circuits in Interval Graphs}, journal = ipl, year = 1985, volume = 20, pages = {201-206} } @article{Keil86, author = {J. Mark Keil}, title = {Total domination in interval graphs}, journal = ipl, year = 1986, volume = 22, pages = {171-174}} %Kh @article{Khuller90, author = {Samir Khuller}, title = {Extending planar graph algorithms to {$K_{3,3}$}-free graphs}, journal = ic2, volume = 84, year = 1990 , pages = {13-25}} @article{Khuller90a, author = {Samir Khuller}, title = {Coloring algorithms for {$K_5$}-minor free graphs}, journal = ipl, volume = 34, year = 1990, pages = {203-208}} @article{KhullerS91, author = {Samir Khuller and Baruch Schieber}, title = {Efficient parallel algorithms for testing $k$-connectivity and finding disjoint $s$-$t$ paths in graphs}, journal = siamjc, volume = 20, year = 1991, pages = {353-375}} %Ki %Kie @article{KiersteadT94, author = {H. A. Kierstead and W. T. Trotter}, title = {Planar graph coloring with an uncooperative partner}, year=1994, journal = jgt, volume = 18, number = 6, pages = {569-584}} @article{Kierstead00, author = {H. A. Kierstead}, title = {A simple competitive graph coloring algorithm}, journal = jctb, volume = 78, pages = {57-68}, year = 2000} @article{KiersteadT01, author = {H. A. Kierstead and W. T. Trotter}, title = {Competive colorings of oriented graphs}, journal = ejc, volume = 8, number = 2, year = 2001, pages={R12}} %Kik @article{KikunoYK83, author = {T. Kikuno and N. Yoshida and Y. Kakuda}, title = {A Linear Algorithm for the Domination Number of a Series-Parallel Graph}, journal = dam, volume = 5, year = 1983, pages = {299-311}} %Kim @article{Kim90, author = {S. K. Kim}, title = {A parallel algorithm for finding a maximum clique in a set of circular arcs of a circle}, journal = ipl, volume = 34, year = 1990, pages = {235-242}} @article{Kim90a, author = {H. Kim}, title = {Finding a maximum independent set in a permutation graph}, journal = ipl, volume = 36, year = 1990, pages = {19-24}} %Kin @article{KindervaterLS89, author = {Gerard A. P. Kindervater and Jan Karel Lenstra and David B. Schmoys}, title = {The parallel complexity of {TSP} heuristics}, journal = ja, volume = 10, year = 1989, pages = {249-270}} %Kinnersley 1989 @phdthesis{Kinnersley89, author = {Nancy G. Kinnersley}, title = {Obstruction Set Isolation for Layout Permutation Problems}, school = {Washington State University}, year = 1989, month = {5}, pages = {i-x,1-217}} %Kinnersley 1992 @article{Kinnersley92, author = {Nancy G. Kinnersley}, title = {The vertex separation number of a graph equals its path width}, journal = ipl, volume = 42, pages = {345-350}, year = 1992} %Kinnersley 1994 @techreport{Kinnersley94, author = {Nancy G. Kinnersley}, title = {Construction obstruction set isolation for min cut linear arrangement}, type = {Technical Report}, number = {94-1}, institution = {Department of Computer Science, University of Kansas}, address = {Lawrence, Kansas, USA}, year = 1994} @article{KinnersleyK94, author = {Nancy G. Kinnersley and William M. Kinnersley}, title = {Tree automata for cutwidth recognition}, journal = cn, volume = 104, year = 1994, pages = {129-142}} @article{KinnersleyK94a, author = {Nancy G. Kinnersley and William M. Kinnersley}, title = {An efficient polynomial-time algorithm for three-track gate matrix layout}, journal = tcj, volume = 37, year = 1994, pages = {449- 462}} @article{KinnersleyL94, author = {Nancy G. Kinnersley and Michael A. Langston}, title = {Obstruction Set Isolation for the Gate Matrix Layout Problem}, journal = dam, volume = 54, year = 1994, pages = {169-213}} %Kir @article{Kirchhoff1847, author = {G. Kirchhoff}, title = {\"{U}ber die {A}ufl\"{o}sung der {G}leichugen, auf welche man bei der {U}ntersuchung der Linearen {V}erteilung Galvanischer {S}tr\"{o}me gef\"{u}hrt wird}, journal = {Ann. Phys. Chem.}, volume = 71, year = 1847, pages = {497-508}} @article{KirousisP85, author = {Lefteris M. Kirousis and Christos H. Papadimitriou}, title = {Interval graphs and searching}, journal = dm, volume = 55, year = 1985, pages = {181-184}} @article{KirousisP86, author = {Lefteris M. Kirousis and Christos H. Papadimitriou}, title = {Searching and pebbling}, journal = tcs, volume = 47, year = 1986, pages = {205-218}} @unpublished{KirousisT94, author = {Lefteris M. Kirousis and Dimitrios M. Thilikos}, title = {The linkage of a graph}, note = {Manuscript}, year = 1994} %Kj @techreport{Kjaerulff90, author = {U. Kj{\ae}rulff}, title = {Triangulation of Graphs --- Algorithms Giving Small Total State Space}, type = {Research Report}, number = {R-90-09}, institution = {Dept. of Mathematics and Computer Science, Aalborg University}, year = 1990} @article{Kjaerulff92, author = {U. Kj{\ae}rulff}, title = {Optimal decomposition of probabilistic networks by simulated annealing}, journal = {Statistics and Computing}, volume = 2, year = 1992, pages = {2-17}} %Kl %Kla @article{KlaweCP82, author = {M. M. Klawe and Derek G. Corneil and Andrzej Proskurowski}, title = {Isomorphism testing in hookup classes}, journal = sjadm, volume = 3, pages = {260-274}, year = 1982 } %Kle @inproceedings{Klein88, author = {Philip N. Klein}, title = {Efficient parallel algorithms for chordal graphs}, booktitle = focs88, pages = {150-161}, year = 1988 } @article{KleinS90, author = {Philip Klein and Clifford Stein}, title = {A parallel algorithm for eliminating cycles in undirected graphs}, journal = ipl, volume = 34, year = 1990, pages = {307-312}} @inproceedings{KleinARR90, author = {Philip Klein and Ajit Agrawal and R. Ravi and Satish Rao}, title = {Approximation through multicommodity flow}, booktitle = focs90, year = 1990, pages = {726-737}} @inproceedings{Kleinberg00, author = {Jon Kleinberg}, title = {The small-world phenomenon: An algorithmic perspective}, booktitle = stoc00, pages = {163-170}, year = 2000} @book{KleinbergT05, author = {Jon Kleinberg and \'{E}va Tardos}, title = {Algorithm Design}, publisher = {Addison-Wesley}, address = {Boston}, year = 2005} @article{KleitmanV90, author = {Daniel J. Kleitman and Rakesh V. Vohra}, title = {Computing the bandwidth of interval graphs}, journal = sjdm, volume = 3, year = 1990, pages = {373-375}} %Klo %Kloks 1992 @inproceedings{KloksB92, author = {Ton Kloks and Hans Bodlaender}, title = {Approximating Treewidth and Pathwidth of Some Classes of Perfect Graphs}, editor = {Toshihide Ibaraki and Yasuyoshi Inagaki and Kazuo Iwama and Takao Nishizeki and Masafumi Yamashita}, booktitle = isaac92, year = 1992, publisher = lncs650, pages = {116-125}} %Kloks 1993 @phdthesis{Kloks93+, author = {Ton Kloks}, title = {Treewidth}, school = {Utrecht University, Utrecht, The Netherlands}, year = 1993} @book{Kloks93, author = {Ton Kloks}, title = {Treewidth. Computations and Approximations}, publisher = {Springer-Verlag}, address = {Berlin}, series = {Lecture Notes in Computer Science, Vol. 842}, year = 1994} @techreport{KloksKS93, author = {Ton Kloks and Dieter Kratsch and J. Spinrad}, title = {Treewidth and pathwidth of cocomparability graphs of bounded dimension}, type = {Computing Science Notes}, number = {93-46}, institution = {Eindhoven University of Technology}, year = 1993} %Kloks 1994 @article{Kloks94, author = {Ton Kloks}, title = {{$K_{1,3}$}-free and {$W_4$}-free graphs}, journal = ipl, volume = 60, year = 1996, pages = {221-223}} @techreport{KloksK94, author = {Ton Kloks and Dieter Kratsch}, title = {Computing a perfect edge without vertex elimination ordering of a chordal bipartite graph}, type = {Computing Science Notes}, number = {94-41}, institution = {Eindhoven University of Technology}, year = 1994} @techreport{KloksKM94, author = {Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {Dominoes}, type = {Computing Science Notes}, number = {94-12}, institution = {Eindhoven University of Technology}, year = 1994} %Kloks 1995 @article{KloksK95, author = {Ton Kloks and Dieter Kratsch}, title = {Treewidth of chordal bipartite graphs}, journal = ja, volume = 19, pages = {266-281}, year = 1995} %Kloks 1996 @article{Kloks96, author = {Ton Kloks}, title = {Treewidth of circle graphs}, journal = ijfcs, volume = 7, year = 1996, pages = {111-120}} @misc{Kloks, author = {Ton Kloks}, note = {Personal communication}} @article{Kloks96a, author = {Ton Kloks}, title = {{$K_{1,3}$}-free and {$W_4$}-free graphs}, journal = ipl, volume = 60, year = 1996, pages = {221-223}} @techreport{KloksKM96, author = {Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {Asteroidal sets in graphs}, type = {Memorandum}, number = {1347}, institution = {Dep. Appl. Math, University of Twente}, address = {Enschede, The Netherlands}, year = 1996} %Kloks 1997 @article{KloksKS97, author = {Ton Kloks and Dieter Kratsch and Jeremy Spinrad}, title = {On treewidth and minimum fill-in of asteroidal triple-free graphs}, journal = tcs, volume = 175, pages = {309-335}, year = 1997} @inproceedings{KloksKM97, author = {Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {Asteroidal sets in graphs}, editor = {Rolf H. M\"{o}hring}, booktitle = wg97, publisher = lncs1335, year = 1997, pages = {229-241}} %Kloks 1998 @article{KloksK98, author = {T. Kloks and D. Kratsch}, title = {Listing all minimal separators of a graph}, journal = siamjc, volume = 27, number = 3, pages = {605-613},year = 1998} @article{KloksKW98, author = {Ton Kloks and Dieter Kratsch and C. K. Wong}, title = {Minimum fill-in of circle and circular-arc graphs}, journal = ja, volume = 28, pages ={272-289}, year = 1998} @article{KloksMW98, author = {Ton Kloks and Haiko M{\"u}ller and C. K. Wong}, title = {Vertex ranking of asteroid triple-free graphs}, journal = ipl, volume = 68, year = 1998, pages = {201-206}} %Kloks 1999 @article{KloksKM99, author = {Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {Approximating the Bandwidth for Asteroidal Triple-free Graphs}, journal = ja, volume = 32, pages = {41-57}, year = 1999} %Kloks 2001 @article{KloksKM01, author = {Ton Kloks and Dieter Kratsch and Haiko M\"{u}ller}, title = {On the structure of graphs with bounded asteroidal number}, journal = {Graphs. Combin.}, year = 2001, volume = 17, pages = {295-306}} @article{KloksT01, author = {Ton Kloks and Richard B. Tan}, title = {Bandwidth and topological bandwidth of graphs with few $P_4$'s}, journal = dam, volume = 115, year = 2001, pages = {117-133}} @misc{KloksLL01, author = {Ton Kloks and C. M. Lee and Jim Liu}, title = {Feedback vertex sets and disjoint cycles in planar (di)graphs}, note = {Optimization Online}, year = 2001} %Kloks 2002 @inproceedings{KloksLL02, author = {Ton Kloks and C. M. Lee and Jim Liu}, title = {New algorithms for $k$-face cover, $k$-feedback vertex set, and $k$-disjoint cycles on plane and planar graphs}, editor = {Lud\u{e}k Ku\u{c}era}, booktitle = wg02, publisher = lncs2573, year = 2002, pages = {282-295}} %Kloks 2004 @article{KloksKM05, author = {Ton Kloks and Jan Kratochv{\'{\i}}l and Haiko M\"{u}ller}, title = {Computing the branchwidth of interval graphs}, journal = dam, volume = 145, pages = {266-275}, year = 2005} %Kloks 2006 @article{KloksKLL06, author = {Ton Kloks and Dieter Kratsch and Chuan-Min Lee and Jiping Liu}, title = {Improved bottleneck domination algorithms}, journal = dam, volume = 154, pages = {1578-1592}, year = 2006} %Kn %Kna @inproceedings{KnauerS06, author = {Christiaan Knauer and Andreas Spillner}, title = {A fixed-parameter algorithm for the minimum weight triangulation problem based on small graph separators}, editor = {Fedor V. Fomin}, booktitle = wg06, year = 2006, pages = {1-14}, publisher = lncs4271} %Kne @inproceedings{KneisMRR05, author = {Joachim Kneis and Daniel M\"{o}lle and Stefan Richter and Peter Rossmanith}, title = {On the parameterized complexity of exact satisfiability problems}, editor = {Joanna Jedrzejowicz and Andrzej Szepietowski}, booktitle = mfcs05, publisher = lncs3618, year = 2005, pages = {568-579}} @article{KneisMRR06, author = {Joachim Kneis and Daniel M\"{o}lle and Stefan Richter and Peter Rossmanith}, title = {Parameterized power domination complexity}, journal = ipl, volume = 98, year = 2006, pages = {145-149}} @inproceedings{KneisMRR06a, author = {Joachim Kneis and Daniel M{\"o}lle and Stefan Richter and Peter Rossmanith}, title = {Divide-and-Color}, editor = {Fedor V. Fomin}, booktitle = wg06, publisher = lncs4271, year = 2006, pages = {58-67}} @inproceedings{KneisLR08, author = {Joachim Kneis and Alexander Langer and Peter Rossmanith}, title = {A new algorithm for finding trees with many leaves}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {270-281}} @inproceedings{KneisLR09, author = {Joachim Kneis and Alexander Langer and Peter Rossmanith}, title = {A fine-grained analysis of a simple independent set algorithm}, publisher = {LIPIcs, volume 4}, booktitle = fsttcs09, year = 2009, pages = {287-298}} %Ko %Kob @article{Kobayashi09, author = {Yusuke Kobayashi}, title = {Induced disjoint paths problem in a planar graph}, journal = dam, volume = 157, year = 2009, pages = {3231-3238}} @article{KoblerR03, author = {Daniel Kobler and Udi Rotics}, title = {Edge dominating set and colorings on graphs with fixed clique-width}, journal = dam, volume = 126, pages = {197-221}, year = 2003} %Koe @book{Koenig36, author = {D. K{\"{o}}nig}, title = {Theorie der endlichen und unendlichen {G}raphen}, year = 1936, publisher = {Akademische Verlagsgesellschaft}, address = {Leipzig}} %Koh @article{KohlSTV05, author = {A. Kohl and J. Schreyer and Z. Tuza and M. Voigt}, title = {List versions of {$L(d,s)$}-labelings}, journal = tcs, volume = 349, year = 2005, pages = {92-98}} %Koi @unpublished{KoivistoP10, author = {Mikko Koivisto and Pekka Parviainen}, title = {A space-time tradeoff for permutation problems}, year = 2010, note = {To appear in Proceedings SODA 2010}} %Kor @techreport{KorachO89, author = {Ephraim Korach and Z. Ostfeld}, title = {Recognition of {DFS} Trees: Sequential and Parallel Algorithms with Refined Verifications}, number = 582, type = {Technical Report}, year = 1989, institution = {Technion, Haifa, Israel}} @techreport{KorachO90, author = {Ephraim Korach and Z. Ostfeld}, title = {On the Existence of Special {DFS}-trees}, number = 612, type = {Technical Report}, year = 1990, institution = {Technion, Haifa, Israel}} @unpublished{KorachS90, author = {Ephraim Korach and Nir Solel}, title = {Linear Time Algorithm for Minimum Weight {S}teiner Tree in Graphs with Bounded Treewidth}, year = 1990, note = {Manuscript}} @article{KorachS93, author = {Ephraim Korach and Nir Solel}, title = {Tree-width, Path-width and Cutwidth}, journal = dam, volume = 43, pages = {97-101}, year = 1993} @article{KorachT93, author = {Ephraim Korach and A. Tal}, title = {Generalized vertex disjoint paths in series-parallel graphs}, journal = dam, volume = 41, year = 1993, pages = {147-164}} @article{KornaiT92, author = {Andr/'{a}s Kornai and Zsolt Tuza}, title = {Narrowness, Pathwidth, and their Application in Natural Language Processing}, journal = dam, volume = 36, year = 1992, pages = {87-92}} @phdthesis{deKort92, author = {Jeroen {de Kort}}, title = {Edge-disjointness in Combinatorial Optimization}, school = {University of Amsterdam}, year = 1992} @article{KorteM89, author = {Norbert Korte and Rolf H. M{\"{o}}hring}, title = {An incremental linear-time algorithm for recognizing interval graphs}, journal = siamjc, volume = 18, year = 1989, pages = {68-81}} %Kos %Koster 1999 @phdthesis{Koster99, author = {Arie M. C. A. Koster}, title = {Frequency Assignment - Models and Algorithms}, year = 1999, school = {Univ. Maastricht}, address = {Maastricht, The Netherlands}} @techreport{KosterHK99, author = {Arie M. C. A. Koster and Stan P. M. van Hoesel and Antoon W. J. Kolen}, title = {Solving frequency assignment problems via tree-decomposition}, institution = {Faculty of Economics and Business Administration, Universiteit Maastricht}, address = {Maastricht, The Netherlands}, number = {RM/99/011}, year = 1999} %Koster 2001 @inproceedings{KosterBH01, author = {Arie M. C. A. Koster and Hans L. Bodlaender and Stan P. M. van Hoesel}, title = {Treewidth: Computational Experiments}, booktitle = {Electronic Notes in Discrete Mathematics}, volume = 8, pages = {54-57}, publisher = {Elsevier Science Publishers}, editor = {Hajo Broersma and Ulrich Faigle and Johann Hurink and Stefan Pickl}, year = 2001} %Koster 2002 @article{KosterHK02, author = {Arie M. C. A. Koster and Stan P. M. van Hoesel and Antoon W. J. Kolen}, title = {Solving partial constraint satisfaction problems with tree decomposition}, journal = networks, volume = 40, number = 3, year = 2002, pages = {170-180}} %Koster 2004 @techreport{KosterWB04, author = {Arie M. C. A. Koster and Thomas Wolle and Hans L. Bodlaender}, title = {Degree-Based Treewidth Lower Bounds}, institution = {Institute for Information and Computing Sciences, Utrecht University}, number = {UU-CS-2004-050}, year = {2004}, address = {Utrecht, The Netherlands}} %Koster 2005 @inproceedings{KosterWB05, author = {Arie M. C. A. Koster and Thomas Wolle and Hans L. Bodlaender}, title = {Degree-based treewidth lower bounds}, editor = {Sotiris E. Nikoletseas}, booktitle = wea05, publisher = lncs3503, year = 2005, pages = {101-112}} %Koster 2006 @unpublished{KosterMvH06, author = {Arie M. C. A. Koster and Bert Marchal and C. P. M. van Hoesel}, title = {Local search algorithms for treewidth}, note = {Work in progress}, year = 2006} %Kr %Kra %Kram @article{KramerK07, author = {Florica Kramer and Horst Kramer}, title = {A survey on the distance-colouring of graphs}, journal = dm, volume = 308, year = 2007, pages = {422-426}} %Krat @article{KratochvilN89, author = {Jan Kratochv{\'{\i}}l and Jaroslav Ne\~{s}et\~{r}il}, title = {{NP}-hardness results for intersection graphs}, journal = {Comment. Math. Univ. Carolinae}, volume = 30, number = 4, year = 1989, pages = {761-773}} @article{KratochvilN90, author = {Jan Kratochv{\'{\i}}l and Jaroslav Ne\~{s}et\~{r}il}, title = {{\sc independent set} and {\sc clique} problems in intersection-defined classes of graphs}, journal = {Comment. Math. Univ. Carolinae}, volume = 31, number = 1, year = 1990, pages = {85-93}} @inproceedings{KratochvilT98, author = {Jan Kratochv{\'{\i}}l and Zsolt Tusa}, title = {Rankings of directed graphs}, editor = {Juraj Hromkovic and Ondrej S\'{y}kora}, booktitle = wg98, publisher = lncs1517, year = 1998, pages = {114-123}} %Kratsch 1987 @article{Kratsch87, author = {Dieter Kratsch}, title = {Finding the Minimum Bandwidth of an Interval Graph}, journal = ic2, volume = 74, year = 1987, pages = {140-158}} %Kratsch 1990 @article{Kratsch90, author = {Dieter Kratsch}, title = {Finding dominating cliques efficiently, in strongly chordal graphs and undirected path graphs}, journal = dm, volume = 86, year = 1990, pages = {225-238}} @techreport{Kratsch90a, author = {Dieter Kratsch}, title = {Cardinality {S}teiner Tree and Connected Dominating Set for Undirected Path Graphs}, institution = {Friedrich Schiller Universit\"{a}t Jena, GDR}, year = 1990, number = {N/90/91}} @unpublished{KratschH90, author = {Dieter Kratsch and L. A. Hemachandra}, title = {On the Complexity of Graph Reconstruction}, year = 1990, note = {Manuscript}} %Kratsch 2003 @inproceedings{KratschS03, author = {Dieter Kratsch and Jeremy Spinrad}, title = {Between {$O(nm)$} and {$O(n^\alpha)$}}, booktitle = soda03, pages = {709-716}, year = 2003} %Kratsch 2004 @misc{Kratsch04, author = {Dieter Kratsch}, note = {Personal communication}, year = 2004} %Kratsch 2006 @inproceedings{KratschL06, author = {Dieter Kratsch and Mathieu Liedloff}, title = {An exact algorithm for the minimum dominating clique problem}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {128-139}} @article{KratschS06, author = {Dieter Kratsch and Jeremy Spinrad}, title = {Minimal fill in {$O(n^{2.69})$} time}, journal = dm, volume = 206, year = 2006, pages = {366-371}} %Kratsch 2007, @article{KratschL07, author = {Dieter Kratsch and Mathieu Liedloff}, title = {An exact algorithm for the minimum dominating clique problem}, journal = tcs, volume = 385, year = 2007, pages = {226-240}} %Kratsch 2008 @article{KratschMT08, author = {Dieter Kratsch and Haiko M\"{u}ller and Ioan Todinca}, title = {Feedback vertex set on {AT}-free graphs}, journal = dam, volume = 156, year = 2008, pages = {1936-1947}} %Kratsch 2009 @inproceedings{Kratsch09, author = {Stephan Kratsch}, title = {Polynomial kernelizations for {MIN F$^+\Pi_1$} and {MAX NP}}, editor = {Susanne Albers and Jean-Yves Marion}, series = {Dagstuhl Seminar Proceedings}, publisher = {Leibniz-Zentrum f\"{u}r Informatik}, address = {Schloss Dagstuhl, Germany}, volume = {09001}, booktitle = stacs09, pages = {601-612}, year = 2009} @article{KratschM09, author = {Dieter Kratsch and Haiko M\"{u}ller}, title = {On a property of minimal triangulations}, journal = dm, volume = 309, year = 2009, pages = {1724-1729}} @unpublished{KratschW09, author = {Stephan Kratsch and Magnus Wahlstr\"{o}m}, title = {Two edge modification problems without polynomial kernels}, year = 2009, note = {In Proceedings IWPEC 2009}} %Kre @unpublished{KreidlerS96, author = {Martin Kreidler and Detlef Seese}, title = {Monadic {NP} and built-in Trees}, note = {Manuscript}, year = 1996} @article{Krentel88, author = {M. W. Krentel}, title = {The complexity of optimization problems}, journal = jcss, volume = 36, year = 1988, pages = {490-509}} @article{Kreweras72, author = {G. Kreweras}, title = {Sur les partition non crois\'ees d'un circle}, year = 1972, journal = dm, volume = 1, number = 4, pages = {333 - 350}} %Kru @article{KruskalRS90, author = {Clyde P. Kruskal and Larry Rudolph and Marc Snir}, title = {Efficient Parallel Algorithms for Graph Problems}, journal = alg, volume = 5, year = 1990, pages = {43-64}} %Ku %Kun @article{KundgrenP08, author = {Andr\'{e} K\"{u}ndgren and Michael J. Pelsmajer}, title = {Nonrepetitive colorings of graphs of bounded tree-width}, journal = dm, volume = 308, year = 2008, pages = {4473-4478}} %Kuo @article{KuoY04, author = {David Kuo and Jing-Ho Yan}, title = {On {$L(2,1)$}-labelings of {C}artesian products of paths and cycles}, journal = dm, volume = 283, year = 2004, pages = {136-144}} %Kus @article{KuskeL05, author = {D. Kuske and M. Lohrey}, title = {Logical aspects of {C}ayley-graphs: The group case}, journal = apal, volume = 131, year = 2005, pages = {263-286}} %Kw @inproceedings{Kwisthout08, author = {Johan H. P. Kwisthout}, title = {Complexity Results for Enumerating {MPE} and Partial {MAP}}, editor = {M. Jaeger and T. Nielsen}, booktitle = {Proceedings of the 4th European Workshop on Probabilistic Graphical Models, PGM 2008}, year = 2008, pages = {161-168}} @phdthesis{Kwisthout09, author = {Johan H. P. Kwisthout}, title = {The Computational Complexity of Probabilistic Networks}, school = {Utrecht University}, address = {Utrecht, the Netherlands}, year = 2009} %L %La %Lag %Lagergren 1990 @inproceedings{Lagergren90, author = {Jens Lagergren}, title = {Efficient Parallel Algorithms for Tree-Decomposition and Related Problems}, year = 1990, booktitle = focs90, pages = {173-182}} %Lagergren 1991 @phdthesis{Lagergren91, author = {Jens Lagergren}, title = {Algorithms and Minimal Forbidden Minors for Tree-decomposable Graphs}, school = {Royal Institute of Technology, Stockholm, Sweden}, year = 1991 } @inproceedings{LagergrenA91, author = {Jens Lagergren and Stefan Arnborg}, title = {Finding minimal forbidden minors using a finite congruence}, editor = {Javier Leach Albert and Burkhard Monien and Mario Rodr\'{\i}guez-Artalejo}, booktitle = icalp91, publisher = lncs510, year = 1991, pages = {532-543}} %Lagergren 1993 @inproceedings{Lagergren93, author = {Jens Lagergren}, title = {An uppern bound on the size of an obstruction}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {601-621}, year = 1993} @article{Lagergren93a, author = {Jens Lagergren}, title = {An upper bound on the size of a minimal forbidden minor}, journal = {AMS Contemporary Mathematics series}, volume = 147, year = 1993, pages = {601-621}} %Lagergren 1994 @article{Lagergren94, author = {Jens Lagergren}, title = {The nonexistence of reduction rules giving an embedding into a $k$-tree}, journal = dam, volume = 54, pages = {219-223}, year = 1994} %Lagergren 1995 @unpublished{Lagergren95, author = {Jens Lagergren}, title = {Upper Bounds on the Size of Obstructions and Intertwines}, year = 1995, note = {Manuscript}} %Lagergren 1996 @article{Lagergren96, author = {Jens Lagergren}, title = {Efficient parallel algorithms for graphs of bounded tree-width}, journal = ja, volume = 20, pages = {20-44}, year = 1996} %Lai @article{Laing07, author = {Kofi A. Laing}, title = {Name-independent compact routing in trees}, journal = ipl, volume = 103, year = 2007, pages = {57-60}} %Lam @article{LamY98, author = {T. W. Lam and F. L. Yue}, title = {Edge ranking of graphs is hard}, journal = dam, volume = 85, pages = {71-86}, year = 1998} %Lan @book{LandoZ2004, author = {Sergei K. Lando and Alexander K. Zvonkin}, title = {Graphs on Surfaces and Their Applications}, year = 2004, publisher = {Springer-Verlag}, address = {Heidelberg}} @techreport{Langston90, author = {Michael A. Langston}, title = {Fast Search Algorithms for Layout Permutation Problems}, institution = {University of Tennessee}, number = {CS-90-107}, month = {5}, year = 1990} @inproceedings{Langston93, author = {Michael A. Langston}, title = {An obstruction-based approach to layout optimization}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {623 - 629}, year = 1993} %Lap @inproceedings{Lapoire98, author = {D. Lapoire}, title = {Recognizability equals definability, for every set of graphs of bounded tree-width}, booktitle = stacs98, pages = {618-628}, publisher=lncs1373, year = 1998} %Lar @article{LarranagaKPM97, author = {Pedro {Larra\~{n}aga} and Cindy M. H. Kuijpers and Mikel Poza and Roberto H. Murga}, title = {Decomposing {B}ayesian networks: triangulation of the moral graph with genetic algorithms}, journal = {Statistics and Computing}, volume = 7, number = 1, year = 1997, pages = {19-34}} %Las @techreport{LaskarP83, author = {R. Laskar and J. Pfaff}, title = {Domination and irredundance in graphs}, number = 434, type = {Technical Report}, institution = {Clemson University, Dept. of Math. Sc.}, year = 1983} @article{LaskarPHH84, author = {R. Laskar and J. Pfaff and S. M. Hedetniemi and S. T. Hedetniemi}, title = {On the Algorithmic Complexity of Total Domination}, journal = sjadm, volume = 5, year = 1984, pages = {420-425}} %Lau @article{LauritzenS88, author = {S. J. Lauritzen and D. J. Spiegelhalter}, title = {Local computations with probabilities on graphical structures and their application to expert systems}, journal = {The Journal of the Royal Statistical Society. Series B (Methodological)}, volume = 50, year = 1988, pages = {157-224}} @techreport{Lautemann87, author = {Clemens Lautemann}, title = {Efficient Algorithms on Graphs Represented by Decomposition Trees}, number = {6/87}, year = 1987, institution = {Fachbereich Mathematik/Informatik, Universit\"{a}t Bremen} } @inproceedings{Lautemann88, author = {Clemens Lautemann}, title = {Efficient algorithms on context-free graph languages}, editor = {Timo Lepist\"{o} and Arto Salomaa}, booktitle = icalp88, publisher = lncs317, pages = {362-378}, year = 1988} @inproceedings{Lautemann88a, author = {Clemens Lautemann}, title = {Decomposition trees: structured graph representation and efficient algorithms}, editor = {Max Dauchet and Maurice Nivat}, booktitle = {Proceedings of the 13th Colloquium on Trees in Algebra and Programming, CAAP'88}, publisher = lncs299, pages = {28-39}, year = 1988} @techreport{Lautemann90, author = {Clemens Lautemann}, title = {Tree Automata, Tree Decomposition and Hyperedge Replacement}, number = {2/90}, type = {Informatik-Bericht}, institution = {Johannes Gutenberg-Universit\"{a}t Mainz}, year = 1990} @article{Lautemann90a, author = {Clemens Lautemann}, title = {The complexity of graph languages generated by hyperedge replacement}, journal = ai, volume = 27, year = 1990, pages = {399-421}} %Law @book{Lawler76, author = {E. Lawler}, title = {Combinatorial Optimization: Networks and Matroids}, publisher = {Holt, Rinehart and Winston}, address = {New York}, year = 1976 } @article{Lawler76a, author = {E. Lawler}, title = {A note on the complexity of the chromatic number problem}, journal = ipl, volume = 5, year = 1976, pages = {66-67}} @inproceedings{LawlerS85, author = {Eugene L. Lawler and P. J. Slater}, title = {A Linear Time Algorithm for Finding an Optimal Dominating Subforest of a Tree}, booktitle = {Proc. Graph Theory and its Applications to Algorithms and Computer Science}, pages = {501-506}, editor = {Y. Alavi et al.}, year = 1985 } @incollection{LawlerLRS93, author = {Eugene L. Lawler and Jan Karel Lenstra and Alexander H. G. {Rinnooy Kan} and David B. Shmoys}, title = {Sequencing and Scheduling: Algorithms and Complexity}, booktitle = {Handbooks in OR \& MS, Vol. 4}, editor = {S.C. Graves et al}, publisher = {Elsevier Science Publishers}, year = 1993, pages = {445-522}} @article{LawsonK98, author = {Nancy Lawson and M. S. Krishnamoorthy}, title = {Bridge obstructions to circular-tree gate matrix layout}, journal = gc, volume = 14, year = 1998, pages = {143-153}} %LaP @article{LaPaugh93, author = {A. S. LaPaugh}, title = {Recontamination Does Not Help to Search a Graph}, journal = jacm, volume = 40, year = 1993, pages = {224-245}} %Le @article{LeLM03, author = {H.-O. Le and V. B. Le and H. M\"{u}ller}, title = {Splitting a graph into disjoint induced paths or cycles}, journal = dam, volume = 131, pages = {199-212}, year = 2003} %Lea @inproceedings{LeaverFayLS04, author = {Andrew {Leaver-Fay} and Yuanxin Liu and Jack Snoeyink}, title = {Faster placement of hydrogen atoms in protein structures by dynamic programming}, booktitle = alenex04, year = 2004, pages = {39-48}} %Lee @article{Lee09, author = {Chuan-Min Lee}, title = {On the complexity of signed and minus total domination in graphs}, journal = ipl, volume = 109, year = 2009, pages = {1177-1181}} @incollection{LeeuwenT86, author = {Jan {van Leeuwen} and Richard B. Tan}, title = {Computer Networks with Compact Routing Tables}, editor = {G. Rozenberg and A. Salomaa}, booktitle = {The Book of {L}}, publisher = {Springer-Verlag}, address = {Berlin}, year = 1986, pages = {298-307}} @article{LeeuwenT87, author = {Jan {van Leeuwen} and Richard B. Tan}, title = {Interval Routing}, journal = tcj, volume = 30, year = 1987, pages = {298-307}} @inproceedings{Leeuwen90, author = {Jan {van Leeuwen}}, title = {Graph Algorithms}, booktitle = {Handbook of Theoretical Computer Science, {A}: {A}lgorithms and Complexity Theory}, address = {Amsterdam}, year = 1990, publisher = {North Holland Publ. Comp.}, pages = {527-631} } @inproceedings{LeeuwenT95, author = {Jan {van Leeuwen} and Richard B. Tan}, title = {Compact Routing Methods: A Survey}, booktitle = {Proc 1st Colloquium on Structural Information and Communication Complexity (SIROCCO'94)}, publisher = {Carleton Univ. Press}, address={Ottawa}, year = 1994, pages = {71-93}} @inproceedings{Leeuwen05, author = {E.J. van Leeuwen}, title = {Approximation Algorithms for Unit Disk Graphs}, editor = {Dieter Kratsch}, booktitle = wg05, publisher = lncs3787, year = 2005, pages = {351-361}} %Leh @article{Lehot74, author = {P. G. H. Lehot}, title = {An optimal algorithm to detect a line graph and output its root graph}, journal = jacm, volume = 21, pages = {569-575}, year = 1974 } %Lei @inproceedings{LeightonR88, author = {F. T. Leighton and S. Rao}, title = {An approximate max-flow min-cut theorem for uniform multi-commodity flow problems with applications to approximate algorithms}, booktitle = focs88, publisher = {IEEE}, pages = {422-431}, year = 1988, note = {Full version: submitted manuscript} } @article{Leimer93, author = {H.-G. Leimer}, title = {Optimal decomposition by clique separators}, journal = dm, volume = 113, pages = {99-123}, year=1993} %Lek @article{LekkerkerkerB62, author = {C. G. Lekkerkerker and J. C. Boland}, title = {Representation of a finite graph by a set of intervals on the real line}, journal = fundmath, volume = 51, year = 1962, pages = {45-64}} @unpublished{LeisersonP87, author = {Charles E. Leiserson and Cynthia A. Philips}, title = {Parallel Contraction of Planar Graphs}, year = 1987, note = {MIT, manuscript} } @article{Lengauer81, author = {Thomas Lengauer}, title = {Black-White Pebbles and Graph Separation}, journal = ai, volume = 16, year = 1981, pages = {465-475}} @article{Lengauer82, author = {Thomas Lengauer}, title = {Upper and Lower Bounds on the Complexity of the Min-Cut Linear Arrangement Problem on Trees}, journal = sjadm, volume = 3, pages = {99-113}, year = 1982 } @article{Lengauer87, author = {Thomas Lengauer}, title = {Efficient algorithms for finding minimum spanning forests in hierarchically defined graphs}, journal = ja, volume = 8, year = 1987, pages = {260-284}} @article{LengauerW88, author = {Thomas Lengauer and Egon Wanke}, title = {Efficient solutions of connectivity problems on hierarchically defined graphs}, journal = siamjc, volume = 17, year = 1988, pages = {1063-1080}} @inproceedings{LengauerW88a, author = {Thomas Lengauer and Egon Wanke}, title = {Efficient analysis of graph properties on context-free graph languages}, editor = {Timo Lepist\"{o} and Arto Salomaa}, booktitle = icalp88, publisher = lncs317, pages = {379-393}, year = 1988} @article{LeungVW84, author = {Joseph Y.-T. Leung and Oliver Vornberger and James D. Witthoff}, title = {On Some Variants of The Bandwidth Minimization Problem}, journal = siamjc, year = 1984, volume = 13, pages = {650-667}} @article{LevenG83, author = {D. Leven and Zvi Galil}, title = {{NP}-completeness of finding the chromatic index of regular graphs}, journal = ja, volume = 4, year = 1983, pages = {35-44}} @inproceedings{Levin84, author = {L. A. Levin}, title = {Problems, complete in ``average'' instance}, booktitle = stoc84, year = 1984} %Li @article{LiZ07, author = {Xueliang Li and Xiaoyan Zhang}, title = {On the minimum monochromatic or multicolored subgraph partition problems}, journal = tcs, volume = 385, year = 2007, pages = {1-10}} %Lia @article{LiangRDS91, author = {Y. Liang and C. Rhee and S. K. Dhall and S. Lakshmivarahan}, title = {A new approach for the domination problem on permutation graphs}, journal = ipl, volume = 37, year = 1991, pages = {219-224}} %Lic @article{LichtensteinS80, author = {D. Lichtenstein and M. Sipser}, title = {Go is polynomial-space hard}, journal = jacm, volume = 27, year = 1980, pages = {393-401}} @article{Lichtenstein82, author = {David Lichtenstein}, title = {Planar formulae and their uses}, journal = siamjc, volume = 11, year = 1982, pages = {185-225}} @article{LickW70, author = {D. R. Lick and A. T. White}, title = {$k$-Degenerate graphs}, journal = canjm, volume = 22, year = 1970, pages = {1082--1096}} %Lie @article{Liedloff08, author = {Mathieu Liedloff}, title = {Finding a dominating set on bipartite graphs}, journal = ipl, volume = 107, year = 2008, pages = {154-157}} @article{LiedloffKLP08, author = {Mathieu Liedloff and Ton Kloks and Jiping Liu and Sheng-Lung Peng}, title = {Efficient algorithms for {R}oman domination on some classes of graphs}, journal = dam, volume = 156, year = 2008, pages = {3400-3415}} %Lin @article{LinO91, author = {R. Lin and S. Olariu}, title = {An {NC} Recognition Algorithm for Cographs}, journal = jpdc, volume = 13, year = 1991, pages = {76-90}} @article{LinCL06, author = {Guohui Lin and Zhipeng Cai and Dekang Lin}, title = {Vertex covering by paths on trees with its applications in machine translation}, journal = ipl, year = 2006, volume = 97, pages = {73-81}} %Lingas 1985 @inproceedings{Lingas85, author = {Andrzej Lingas}, title = {Subgraph Isomorphism for easily separable graphs with bounded valence}, booktitle = wg85, year = 1985, pages = {217-229}} %Lingas 1987 @techreport{Lingas87, author = {Andrzej Lingas}, title = {On Parallel Complexity of the Subgraph Isomorphism Problem}, number = {LITH-IDA-R-87-10}, institution = {Link\"{o}ping University}, year = 1987 } %Lingas 1988 @unpublished{Lingas88, author = {Andrzej Lingas}, title = {Subgraph Isomorphism for Connected Graphs of Bounded Valence and Bounded Separator is in {NC}}, note = {Ext. abstract}, year = 1988 } @inproceedings{LingasS88, author = {Andrzej Lingas and Maciej M. Sys{\l}o}, title = {A polynomial-time algorithm for subgraph isomorphism of two-connected series-parallel graphs}, editor = {Timo Lepist\"{o} and Arto Salomaa}, booktitle = icalp88, year = 1988, pages = {394-409}, publisher = lncs317} %Lingas 1989 @article{Lingas89, author = {Andrzej Lingas}, title = {Subgraph Isomorphism for biconnected outerplanar graphs in cubic time}, journal = tcs, volume = 63, year = 1989, pages = {295-302}} @article{LingasK89, author = {Andrzej Lingas and Marek Karpinski}, title = {Subtree Isomorphism is {NC} reducible to Bipartite Perfect Matching}, journal = ipl, volume = 30, year = 1989, pages = {27-32}} @article{LingasP89, author = {Andrzej Lingas and Andrzej Proskurowski}, title = {Fast parallel algorithms for the subgraph homeomorphism and the subgraph isomorphism problems for classes of planar graphs}, journal = tcs, volume = 68, year = 1989, pages = {155-174}} @article{LingerPS95, author = {Gerard T. Linger and Themistocles Politof and A. Satyanarayana}, title = {A forbidden minor characterization and reliability of a class of partial 4-trees}, journal = networks, volume = 25, pages = {139-146}, year = 1995} %Lip @article{LiptonRT79, author = {Richard J. Lipton and Donald J. Rose and Robert Endre Tarjan}, title = {Generalized nested dissection}, journal = sjna, volume = 16, year = 1979, pages = {346-358}} @article{LiptonT79, author = {Richard J. Lipton and Robert Endre Tarjan}, title = {A separator theorem for planar graphs}, journal = sjam, volume = 36, year = 1979, pages = {177-189}} @article{LiptonT80, author = {Richard J. Lipton and Robert Endre Tarjan}, title = {Applications of a planar separator theorem}, journal = siamjc, volume = 9, year = 1980, pages = {615-627}} %Lit @inproceedings{LitovskiMZ93, author = {I. Litovsky and Y. M{\'{e}}tivier and W. Zielonka}, title = {The power and the limitations of local computations on graphs}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {333-345}} %Liu %Liu 1980 @article{LiuG80, author = {P. C. Liu and R. C. Geldmacher}, title = {An {$O(\max(m,n))$} algorithm for finding a subgraph homeomorphic to $K_4$}, journal = cn, volume = 29, year = 1980, pages = {597-609}} %Liu 1990 @article{Liu90, author = {J. W. H. Liu}, title = {The role of elimination trees in sparse factorization}, journal = sjmaa, volume = 11, year = 1990, pages = {134-172}} %Liu 1997 @article{LiuY97, author = {D.D.-F. Liu and R. K. Yeh}, title = {On distance two labellings of graphs}, journal = arscomb, volume = 47, year = 1997, pages = {13-22}} %Liu 1998 @article{LiuY98, author = {Chuan-Ming Liu and Ming-Shing Yu}, title = {An optimal parallel algorithm for node ranking of cographs}, journal = dam, volume = 87, year = 1998, pages = {187-201}} %Liu 2006 @inproceedings{LiuLCS06, author = {Yang Liu and Songjian Lu and Jianer Chen and Sing-Hoi Sze}, title = {Greedy localization and color-coding: Improved matching and packing algorithms}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {83-94}} %Liu 2008 @article{Liu08, author = {Daphne Der-Fen Liu}, title = {Radio number for trees}, journal = dm, volume = 308, year = 2008, pages = {1153-1164}} %Liu 2009 @article{Liu09, author = {Hong Liu and Haodi Feng and Daming Zhu and Junfeng Luan}, title = {Parameterized computational complexity of control problems in voting systems}, journal = tcs, volume = 410, year = 2009, pages = {2746-2753}} %Liu 2010 @article{Liu10, author = {Hong Liu and Daming Zhu}, title = {Parameterized complexity of control problems in Maximin election}, journal = ipl, volume = 110, year = 2010, pages = {383-388}} %Ll %Llo @article{LloydSW88, author = {Errol L. Lloyd and Mary Lou Soffa and Ching-Chy Wang}, title = {On locating minimum feedback vertex sets}, journal = jcss, volume = 37, pages = {292-311}, year = 1988} %Lo %Lok %Lokshtanov 2009 @inproceedings{LokshtanovMS09, author = {Daniel Lokshtanov and Matthias Mnich and Saket Saurabh}, title = {Linear kernel for planar connected dominating set}, editor = {Jianer Chen and S. Barry Cooper}, booktitle = tamc09, publisher = lncs5532, year = 2009, pages = {281-290}} %Lokshtanov 2010 @article{Lokshtanov10, author = {Daniel Lokshtanov}, title = {On the complexity of computing treelength}, journal = dam, volume = 158, year = 2010, pages = {820-827}} @article{LokshtanovMP10, author = {Daniel Lokshtanov and Federico Mancini and Charis Papadopoulos}, title = {Characterizing and computing minimal cograph completions}, journal = dam, volume = 158, year = 2010, pages = {755-764}} %Lop @article{LopezL80, author = {A. D. Lopez and H. F. S. Law}, title = {A dense gate matrix layout method for {MOS VLSI}}, journal = ieeeted, volume = 27, year = 1980, pages = {1671-1675}} %Loz @article{LozinR04, author = {Vadim Lozin and Dieter Rautenbach}, title = {On the band-, tree-, and clique-width of graphs with bounded vertex degree}, journal = sjdm, volume = 18, year = 2004, pages = {195-206}} @article{LozinR04a, author = {Vadim Lozin and Dieter Rautenbach}, title = {Chordal bipartite graphs of bounded tree- and clique-width}, journal = dm, volume = 283, pages = {151-158}, year = 2004} @article{LozinR07, author = {Vadim Lozin and Dieter Rautenbach}, title = {The relative clique-width of a graph}, journal = jctb, volume = 97, pages = {846-858}, year = 2007} @inproceedings{Lozin08, author = {Vadim Lozin}, title = {From tree-width to clique-width: {E}xcluding a unit interval graph}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {871-882}} %Lu @article{LuKT02, author = {Ching Lung Lu and Ming-Tat Ko and Chuan Yi Tang}, title = {Perfect edge domination and efficient edge domination in graphs}, journal = dam, volume = 119, year = 2002, pages = {227-250}} %Lub @article{Luby86, author = {Michael Luby}, title = {A simple parallel algorithm for the maximal independent set problem}, journal = siamjc, volume = 4, year = 1986 , pages = {1036-1053}} @misc{Luby88, author = {Michael Luby}, title = {Removing randomness in parallel computation without a processor penalty}} %Luc @article{LuccioS07, author = {Flaminia L. Luccio and Jop F. Sibeyn}, title = {Feedback vertex sets in mesh-based networks}, journal = tcs, volume = 383, year = 2007, pages = {86-101}} @phdthesis{Lucena02, author = {Brian Lucena}, title = {Dynamic Programming, Tree-Width, and Computation on Graphical Models}, school = {Brown University}, address = {Providence, RI, USA}, year = 2002} @article{Lucena03, author = {Brian Lucena}, title = {A new lower bound for tree-width using maximum cardinality search}, journal = sjdm, volume = 16, year = 2003, pages = {345-353}} @article{Lucena07, author = {Brian Lucena}, title = {Achievable sets, brambles, and sparse treewidth obstructions}, journal = dam, volume = 155, pages = {1055-1065}, year = 2007} @article{LucetMC00, author = {C. Lucet and J.-F. Manouvrier and J. Carlier}, title = {Evaluating network reliability and 2-edge-connected reliability in linear time for bounded pathwidth graphs}, journal = alg, volume = 27, year = 2000, pages = {316-336}} @article{LucetMM06, author = {C. Lucet and F. Mendes and A. Moukrim}, title = {An exact method for graph coloring}, journal = cor, volume = 33, year = 2006, pages = {2189-2207}} @article{LuekerB79, author = {G. S. Lueker and K. S. Booth}, title = {A linear-time algorithm for deciding interval graph isomorphism}, journal = jacm, volume = 26, year = 1979, pages = {183-195}} %M %Ma %Maa @article{MaamounM87, author = {M. Maamoun and H. Meyniel}, title = {On a game of policemen and robbers}, journal = dam, volume = 17, year = 1987, pages = {307-309}} %Mad @article{MadelaineS08, author = {Florent R. Madelaine and Iain A. Stewart}, title = {Improved upper and lower bounds on the feedback vertex numbers of grids and butterflies}, journal = dm, year = 2008, volume = 308, pages = {4144-4164}} %Mah %Mahajan 1987 @inproceedings{MahajanP87, author = {Sanjeev Mahajan and Joseph G. Peters}, title = {Algorithms for Regular Properties in Recursive Graphs}, booktitle = {Proceedings of the 25th Annual Allerton Conference on Communication, Control, and Computing}, pages = {14-23}, year = 1987} %Mahajan 1994 @article{MahajanP94, author = {Sanjeev Mahajan and Joseph G. Peters}, title = {Regularity and locality in $k$-terminal graphs}, journal = dam, volume = 54, pages = {229-250}, year = 1994} %Mahajan 1999 @article{MahajanR99, author = {M. Mahajan and V. Raman}, title = {Parameterizing Above Guaranteed Values: MaxSat and MaxCut}, journal = ja, volume = 31, issue = 2, year = 1999, pages = {335-354}} %Mahajan 2006 @article{MahajanRS09, author = {Meena Mahajan and Venkatesh Raman and Somnath Sikdar}, title = {Parameterizing problems above or below guaranteed values}, journal = jcss, volume = 72, year = 2009, pages = {137-153}} @article{Maharry99, author = {J. Maharry}, title = {An excluded minor theorem for the octahedron}, journal = jgt, volume = 31, year = 1999, pages = {95-100}} @article{MaheshRS91, author = {R. Mahesh and C. P. Rangan and A. Srinivasan}, title = {On finding the minimum bandwidth of interval graphs}, journal = ic2, volume = 95, year = 1991, pages = {218-224}} @inproceedings{MaheshwariZ01, author = {A. Maheshwari and N. Zeh}, title = {I/O-Efficient Algorithms for Bounded Treewidth Graphs}, booktitle = soda01, pages = {89-90}, year = 2001} %Mak @article{MakedonS89, author = {F. S. Makedon and Ivan Hal Sudborough}, title = {On minimizing width in linear layouts}, journal = dam, volume = 23, pages = {201-298}, year = 1989 } @article{MakedonSW93, author = {F. Makedon and D. Sheinwald and Y. Wolfsthal}, title = {A simple linear-time algorithm for the recognition of bandwidth-2 biconnected graphs}, journal = ipl, volume = 46, year = 1993, pages = {103-107}} @article{MakedonPS85, author = {F. S. Makedon and Christos H. Papadimitriou and Ivan Hal Sudborough}, title = {Topological Bandwidth}, journal = sjadm, volume = 6, year = 1985, pages = {418-444}} @article{MakinoUI01, author = {K. Makino and Y. Uno and T. Ibaraki}, title = {On minimum edge ranking spanning trees}, journal = ja, volume = 38, year = 2001, pages = {411-437}} %Makowsky @article{MakowskyR99, author = {J. A. Makowsky and Udi Rotics}, title = {On the clique-width of graphs with few {$P_4$}'s}, journal = ijfcs, volume = 10, year = 1999, pages = {329-348}} @inproceedings{Makowsky01, author = {J. A. Makowsky}, title = {Colored {T}utte polynomials and {K}auffman brackets for graphs of bounded treewidth}, booktitle = soda01, pages = {487-495}, year = 2001} @article{MakowskyM03, author = {J. A. Makowsky and J. P. Mari\~{n}o}, title = {The parameterized complexity of knot polynomials}, journal = jcss, volume = 67, year = 2003, pages = {742-756}} @article{Makowsky04, author = {J. A. Makowsky}, title = {Coloured {T}utte polynomials and {K}auffman brackets for graphs of bounded tree width}, journal = dam, volume = 145, pages = {276-290}, year = 2004} %Mal @article{Malitz94, author = {Seth M. Malitz}, title = {Graphs with {$E$} edges have pagenumber {$O(\sqrt{E})$}}, journal = ja, volume = 17, year = 1994, pages = {71-84}} @article{Malitz94a, author = {Seth M. Malitz}, title = {Genus $g$ graphs have pagenumber {$O(\sqrt{g})$}}, journal = ja, volume = 17, year = 1994, pages = {85-109}} %Man %Manb @article{ManberT84, author = {Udi Manber and Martin Tompa}, title = {The effect of number of {H}amiltonian paths on the complexity of a vertex coloring problem}, journal = siamjc, volume = 13, year = 1984, pages = {109-115}} %Manc @article{Mancini10, author = {Federico Mancini}, title = {Minimum fill-in and treewidth of split$+ke$ and split$+kv$ graphs}, journal = dam, volume = 158, year = 2010, pages = {747=754}} %Mann @article{ManninoORC07, author = {Carlo Mannino and Gianpaolo Oriolo and Federico Ricci and Sunil Chandran}, title = {The stable set problem and the thinness of a graph}, journal = orl, volume = 35, year = 2007, pages = {1-9}} %Mans @article{Mansfield82, author = {A. Mansfield}, title = {Determining the thickness of graphs is {NP}-hard}, journal = {Mathematical Proceedings of the Cambridge Philosophical Society}, volume = 93, year = 1982, pages = {9-23}} @article{MansourS89, author = {Yishay Mansour and Baruch Schieber}, title = {Finding the edge connectivity of directed graphs}, volume = 10, year = 1989, journal = ja, pages = {76-85}} %Mar @unpublished{MarchalHK08, author = {B. Marchal and Hoesel, C.P.M. {v}an and Koster, A. M. C. A.}, title = {A local search algorithm for determining tree decompositions of graphs}, note = {Presented on the International Symposium on Combinatorial Optimization}, month = 3, year = 2008} @article{Marcotte90, author = {O. Marcotte}, title = {Exact edge-colorings of graphs without prescribed minors}, journal = {DIMACS Ser. Discrete Math. Theoretc. Comput. Sci.}, volume = 1, year = 1990, pages = {235-243}} @techreport{Marecek09, author = {Jakub Mare\u{c}ek}, title = {Some probabilistic results on width measures of graphs}, type = {Report}, number = {arXiv:0908.1772v5}, year = 2009} @article{Markowitz57, author = {H. M. Markowitz}, title = {The elimination form of the inverse and its application to linear programming}, journal = {Management Science}, volume = 3, year = 1957, pages = {255-269}} %Marx 2005 @article{Marx05, author = {D\'{a}niel Marx}, title = {Parameterized complexity of constraint satisfaction problems}, journal = {Computational Complexity}, volume = 14, year = 2005, pages = {153-183}} %Marx 2006 @article{Marx06, author = {D\'{a}niel Marx}, title = {Parameterized graph separation problems}, journal = tcs, volume = 351, year = 2006, pages = {394-406}} @article{Marx06a, author = {D\'{a}niel Marx}, title = {Parameterized coloring problems on chordal graphs}, journal = tcs, volume = 351, year = 2006, pages = {407-424}} @article{Marx06b, author = {D\'{a}niel Marx}, title = {Precoloring extension on unit interval graphs}, journal = dam, volume = 154, year = 2006, pages = {995-1002}} @article{Marx06c, author = {D\'{a}niel Marx}, title = {Minimum sum multicoloring on the edges of trees}, journal = tcs, volume = 361, year = 2006, pages = {133-149}} @inproceedings{Marx06d, author = {D\'{a}niel Marx}, title = {Chordal deletion is fixed-parameter tractable}, editor = {Fedor V. Fomin}, booktitle = wg06, year = 2006, pages = {37-48}, publisher = lncs4271} %Marx 2009 @article{Marx09, author = {D\'{a}niel Marx}, title = {A parameterized view on matroid optimization problems}, journal = tcs, volume = 410, year = 2009, pages = {4471-4479}} @article{MarxR09, author = {D\'{a}niel Marx and Igor Razgon}, title = {Constant ratio fixed-parameter approximation of the edge multicut problem}, journal = ipl, volume = 109, year = 2009, pages = {1161-1166}} @article{MarxS09, author = {D\'{a}niel Marx and Marcus Schaefer}, title = {The complexity of nonrepetive coloring}, journal = dam, volume = 157, year = 2009, pages = {13-18}} @article{MarxS09a, author = {D\'{a}niel Marx and Ildik\'{o} Schlotter}, title = {Parameterized graph cleaning problems}, journal = dam, volume = 157, year = 2009, pages = {3258-3267}} %Marz @article{MarzbanGJ09, author = {Marjan Marzban and Qian-Ping Gu and Xiaohua Jia}, title = {Computational study on planar dominating set problem}, journal = tcs, volume = 410, year = 2009, pages = {5455-5466}} %Mas @article{MasudaN88, author = {S. Masuda and N. Nakajima}, title = {An optimal algorithm for finding a maximum independent set of a circular-arc graphs}, journal = siamjc, volume = 17, pages = {41-52}, year = 1988 } %Mat %Mata @phdthesis{Mata-Montero90, author = {E. Mata-Montero}, title = {Reliability of Partial $k$-Tree Networks}, school = {University of Oregon}, number = {UO-CIS-TR-90-14}, year = 1990} @article{Mata-Montero91, author = {E. Mata-Montero}, title = {Resilience of partial $k$-tree networks with edge and node failures}, journal = networks, volume = 21, year = 1991, pages = {321-344}} %Mate @article{Mate81, author = {A. M\'at\'e}, title = {A lower estimate for the achromatic number of irreducible graphs}, journal = dm, volume = 2, year = 1981, pages = {128-145}} %Math @inproceedings{MathiesonPS04, author = {Luke Mathieson and Elena Prieto and Peter Shaw}, title = {Packing Edge Disjoint Triangles: A Parameterized View}, editor = {R. G. Downey and M. R. Fellows}, booktitle = iwpec04, year = 2004, publisher = lncs3162, pages = {127-137}} %Mato @article{MatousekT91, author = {Ji{\u{r}}\'{\i} Matou{\v{s}}ek and Robin Thomas}, title = {Algorithms for finding tree-decompositions of graphs}, year = 1991, journal = ja, volume = 12, pages = {1-22}} @article{MatousekT92, author = {Ji{\u{r}}\'{\i} Matou{\v{s}}ek and Robin Thomas}, title = {On the Complexity of Finding Iso- and Other Morphisms for Partial $k$-Trees}, journal = dm, volume = 108, year = 1992, pages = {343-364}} %Mats @inproceedings{MatsuiUU08, author = {Yasuko Matsui and Ryuhei Uehara and Takeaki Uno}, title = {Enumeration of perfect sequences of chordal graph}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {859-870}} %Mau @article{MauerSW81, author = {H. A. Mauer and Ivan Hal Sudborough and E. Welzl}, title = {On the complexity of the general coloring problem}, journal = ic, volume = 51, year = 1981, pages = {128-145}} %May @article{MayhewNW09, author = {Dillon Mayhew and Mike Newman and Geoff Whittle}, title = {On excluded minors for real-representability}, journal = jctb, volume = 99, year = 2009, pages = {685-689}} %Maz @phdthesis{Mazoit04, author = {Fr\'{e}d\'{e}ric Mazoit}, title = {D\'{e}compositions algorithmiques des graphes}, school = {Ecole Normale Sup\'{e}rieure de Lyon}, year = 2004} @article{Mazoit06, author = {F. Mazoit}, title = {Listing all the minimal separators of a 3-connected planar graph}, journal = dm, volume = 306, pages = {372 - 380}, year = 2006} @inproceedings{Mazoit06a, author = {F. Mazoit}, title = {The branch-width of circular-arc graphs}, editor = {Jos\'{e} R. Correa and Alejandro Hevia and Marcos A. Kiwi}, booktitle = latin06, publisher = lncs3887, year = 2006, pages = {727-736}} @article{MazoitN08, author = {Fr\'{e}d\'{e}ric Mazoit and Nicolas Nisse}, title = {Monotonicity of non-deterministic graph searching}, journal = tcs, volume = 399, year = 2008, pages = {169-178}} %Mc %McC @article{McConnellS99, author = {R.~M. Mc{C}onnell and J. Spinrad}, title = {Modular decomposition and transitive orientation}, journal = dm, volume = 201, year = 1999, pages = {189-241}} @article{McConnellM04, author = {Ross M. Mc{C}onnell and Fabien {de Montgolfier}}, title = {Linear-time modular decomposition of directed graphs}, journal = dam, volume = 145, pages = {198-209}, year = 2004} %McD @inproceedings{McDiarmidRSS92, author = {C. McDiarmid and Bruce Reed and A. Schrijver and B. Shepherd}, title = {Non-Interfering Network Flows}, editor = {O. Nurmi and E. Ukkonen}, booktitle = swat92, publisher = lncs621, year = 1992, pages = {245-257}} @article{McDiarmidR03, author = {C. McDiarmid and B. Reed}, title = {Channel assignment on graphs of bounded treewidth}, journal = dm, volume = 273, pages = {183-192}, year = 2003} %McG @inproceedings{McGuinnessK92, author = {Patrick J. McGuinness and Andr{\'{e}} E. K{\'{e}}zdy}, title = {An Algorithm to Find a {$K_5$} Minor}, booktitle = soda92, year = 1992, pages = {345-356}} %McH @article{McHughP90, author = {J. McHugh and Y. Perl}, title = {Best location of service centers in a tree-like network under budget constraints}, journal = dm, year = 1990, volume = 86, pages = {199-214}} %McK @article{McKayW90, author = {Brendan D. {McKay} and Nicholas C. Wormald}, title = {Uniform generation of random regular graphs of moderate degree}, journal = ja, volume = 11, year = 1990, pages = {52-67}} %McM @article{McMorrisWW94, author = {F. R. McMorris and Tandy Warnow and T. Wimer}, title = {Triangulating Vertex-Colored Graphs}, journal = sjdm, volume = 7, number = 2, year = 1994, pages = {296-306}} %McN @article{McNaughton93, author = {R. McNaughton}, title = {Infinite games played on finite graphs}, journal = apal, volume = 65, pages={149-184}, year = 1993} %McV @article{McVitieW71, author = {D. {McVitie} and L. B. Wilson}, title = {The stable marriage problem}, journal = cacm, volume = 14, year = 1971, pages = {486-490}} %Me %Mee @inproceedings{MeerR06, author = {Klaus Meer and Dieter Rautenbach}, title = {On the {OBDD} size for graphs of bounded tree- and clique-width}, editor = {Hans L. Bodlaender and Michael A. Langston}, booktitle = iwpec06, publisher = lncs4169, year = 2006, pages = {71-82}} @article{MeerR09, author = {Klaus Meer and Dieter Rautenbach}, title = {On the {OBDD} size for graphs of bounded tree- and clique-width}, journal = dm, volume = 309, year = 2009, pages = {843-851}} %Meg @article{MegiddoHGJP88, author = {Nimrod Megiddo and S. L. Hakimi and Michael R. Garey and David S. Johnson and Christos H. Papadimitriou}, title = {The Complexity of Searching a Graph}, journal = jacm, volume = 35, pages = {18-44}, year = 1988 } @article{MegiddoV88, author = {Nimrod Megiddo and Uzi Vishkin}, title = {On finding a minimum dominating set in a tournament ({N}ote)}, journal = tcs, volume = 61, year = 1988, pages = {307-316}} %Meh @book{Mehlhorn84a, author = {Kurt Mehlhorn}, title = {Sorting and Searching}, series = {Data Structures and Algorithms}, volume = 1, publisher = {Springer Verlag}, address = {Berlin}, year = 1984 } @book{Mehlhorn84, author = {K. Mehlhorn}, title = {Graph Algorithms and {NP}-Completeness}, series = {Data Structures and Algorithms}, volume = 2, publisher = {Springer Verlag}, address = {Berlin}, year = 1984 } @inproceedings{MehlhornNR89, author = {K. Mehlhorn and S. N\"{a}her and M. Rauch}, title = {On the complexity of a game related to the dictionary problem}, booktitle = focs89, year = 1989, pages = {546-548}} @book{MehlhornN95, author = {Kurt Mehlhorn and Stefan N\"aher}, title = {{LEDA}: A Platform for Combinatorial and Geometric Computing}, publisher = {Cambridge University Press}, year = 1995 } %Mei %Meister 2006 @article{Meister06, author = {Daniel Meister}, title = {Two characterisations of minimal triangulations of {$2K_2$}-free graphs}, journal = dm, volume = 306, year = 2006, pages = {3327-3333}} %Meister 2010 @article{MeisterTV10, author = {Daniel Meister and Jan Arne Telle and Martin Vatshelle}, title = {Recognizing digraphs of {K}elly-width 2}, journal = dam, volume = 158, year = 2010, pages = {741-746}} %Men @article{Menger27, author = {K. Menger}, title = {Zur Allgemeinen {K}urventheorie}, journal = fundmath, volume = 10, year = 1927, pages = {96-115}} %Mes @article{MessingerNP08, author = {M. E. Messinger and R. J. Nowakowski and P. Pra{\l}at}, title = {Cleaning a network with brushes}, journal = tcs, volume = 399, year = 2008, pages = {191-205}} %Mez @article{MezziniM10, author = {Mauro Mezzini and Marina Moscarini}, title = {Simple algorithms for minimal triangulation of a graph and backward selection of a decomposable {M}arkov network}, journal = tcs, volume = 411, year = 2010, pages = {958-966}} %Mi %Mil @article{Miller83, author = {Gary L. Miller}, title = {Isomorphism of $k$-contractible graphs: A generalization of bounded valence and bounded genus}, journal = ic, volume = 56, year = 1983, pages = {1-23}} @inproceedings{MillerR85, author = {Gary L. Miller and John Reif}, title = {Parallel Tree Contraction and its Application}, booktitle = focs85, year = 1985, pages = {478-489}} @article{Miller86, author = {Gary L. Miller}, title = {Finding small simple cycle separators for 2-connected planar graphs}, journal = jcss, volume = 32, year = 1986, pages = {265-279}} @inproceedings{MillerS86, author = {Z. Miller and Ivan Hal Sudborough}, title = {Polynomial Algorithms for Recognizing Small Cutwidth in Hypergraphs}, booktitle = {Proc. Aegean Workshop on Computing, VLSI algorithms and architecture AWOC '86, Springer Verlag Lecture Notes in Computer Science, Vol. 227}, year = 1986, pages = {252-260} } @article{Miller88, author = {Z. Miller}, title = {A linear algorithm for topological bandwidth in degree 3 trees}, journal = siamjc, volume = 17, year = 1988, pages = {1018-1035}} @incollection{MillerR89, author = {Gary L. Miller and John Reif}, title = {Parallel Tree Contraction. {P}art 1: {F}undamentals}, booktitle = {Advances in Computing Research 5: Randomness and Computation}, editor = {S. Micali}, publisher = {JAI Press, Greenwich, CT}, pages = {47-72}, year = 1989} @article{MillerR91, author = {Gary L. Miller and John Reif}, title = {Parallel Tree Contraction. {P}art 2: {F}urther applications}, journal = siamjc, year = 1991, pages = {1128 - 1147}, volume = 20} %Mis @inproceedings{MishraRSS07, author = {S. Mishra and V. Raman and S. Saurabh and S. Sikdar and C. R. Subramanian}, title = {The Complexity of Finding Subgraphs Whose Matching Number Equals the Vertex Cover Number}, editor = {Takeshi Tokuyama}, booktitle = isaac07, publisher = lncs4835, year = 2007, pages = {268-279}} %Mit @article{Mitchell79, author = {S. L. Mitchell}, title = {Linear algorithms to recognize outerplanar and maximal outerplanar graphs}, journal = ipl, volume = 9, pages = {229-232}, year = 1979 } @article{MitchellCH79, author = {S. L. Mitchell and E. J. Cockayne and S. T. Hedetniemi}, title = {Linear algorithms on recursive representations of trees}, journal = jcss, volume = 18, year = 1979, pages = {76-85}} @article{MitchellH79, author = {Sandra L. Mitchell and Stephen T. Hedetniemi}, title = {Linear algorithms for edge-coloring trees and unicyclic graphs}, journal = ipl, volume = 9, year = 1979, pages = {110-112}} @article{Mittal88, author = {Hari Ballabh Mittal}, title = {A fast backtrack algorithm for graph isomorphism}, journal = ipl, volume = 29, year = 1988, pages = {105-110}} @inproceedings{Miyano87, author = {Satoru Miyano}, title = {The lexicographically first maximal subgraph problems: {P}-completeness and {NC} algorithms}, booktitle = icalp87, publisher = lncs267, year = 1987, pages = {425-234}} @article{Miyano88, author = {Satoru Miyano}, title = {A Parallelizable Lexicographically First Maximal Edge-Induced Subgraph Problem}, journal = ipl, volume = 27, pages = {75-78}, year = 1988 } %Mo %Moe @article{MoehringR84, author = {Rolf H. M{\"{o}}hring and F. J. Radermacher}, title = {Substitution decomposition and connections with combinatorial optimization}, journal = adm, volume = 19, year = 1984, pages = {257-356}} @inproceedings{Moehring85, author = {Rolf H. M{\"{o}}hring}, title = {Algorithmic aspects of comparability graphs and interval graphs}, booktitle = {Graphs and Order}, editor = {I. Rival}, pages = {41-101}, year = 1985, publisher = {Reidel}, address = {Dordrecht} } @article{Moehring856, author = {Rolf H. M{\"{o}}hring}, title = {Algorithmic aspects of the substitution decomposition in optimization over relations, set systems and boolean functions}, journal = aor, volume = 4, year = {1985/1986}, pages = {195-225}} @inproceedings{Moehring89, author = {Rolf H. M{\"{o}}hring}, title = {Computationally tractable classes of ordered sets}, booktitle = {Algorithms and Order}, editor = {I. Rival}, publisher = {Kluwer Acad. Publ.}, address = {Dordrecht}, year = 1989} @inproceedings{Moehring90, author = {Rolf H. M{\"{o}}hring}, title = {Graph Problems Related to Gate Matrix Layout and {PLA} Folding}, booktitle = {Computational Graph Theory, Comuting Suppl. 7}, editor = {E. Mayr and H. Noltemeier and M. Sys{\l}o}, publisher = {Springer Verlag}, pages = {17-51}, year = 1990} @article{Moehring96, author = {Rolf H. M{\"{o}}hring}, title = {Triangulating graphs without asteroidal triples}, journal = dam, volume = 64, year = 1996, pages = {281-287}} %Moh @article{MoharR96, author = {Bojan Mohar and Neil Robertson}, title = {Disjoint Essential Cycles}, journal = jctb, volume = 68, year = 1996, pages = {324-349}} @article{MoharR96a, author = {Bojan Mohar and Neil Robertson}, title = {Planar Graphs on Nonplanar Surfaces}, journal = jctb, volume = 68, year = 1996, pages = {87-111}} @book{MoharT2001, author = {Bojan Mohar and Carsten Thomassen}, title = {Graphs on Surfaces}, year = {2001}, publisher = {The Johns Hopkins University Press}, address = {Baltimore} } %Mon @article{Monien85, author = {Burkhard Monien}, title = {How to find long paths efficiently}, journal = adm, volume = 25, pages = {239-254}, year = 1985 } @article{MonienS85, author = {Burkhard Monien and Ival Hal Sudborough}, title = {Bandwidth-Constrained {NP}-Complete Problems}, journal = tcs, volume = 41, year = 1985, pages = {141-167}} @article{Monien86, author = {Burkhard Monien}, title = {The Bandwidth Minimization Problem for Caterpillars with Hair Length 3 is {NP}-complete}, journal = sjadm, volume = 7, year = 1986, pages = {505-512}} @article{MonienS88, author = {Burkhard Monien and Ival Hal Sudborough}, title = {Min Cut is {NP}-complete for Edge Weighted Trees}, journal = tcs, volume = 58, year = 1988, pages = {209-229}} @article{MonmaW86, author = {Clyde L. Monma and Victor K. Wei}, title = {Intersection Graphs of Paths in a Tree}, journal = jctb, volume = 41, year = 1986, pages = {141-181}} %Mor @article{MoranW91, author = {Shlomo Moran and Yaron Wolfstahl}, title = {Optimal covering of cacti by vertex-disjoint paths}, journal = tcs, volume = 84, year = 1991, pages = {179-187}} @inproceedings{MoranS05, author = {Shlomo Moran and Sagi Snir}, title = {Convex recolorings of strings and trees: Definitions, hardness results, and algorithms}, editor = {Frank K. H. A. Dehne and Alejandro L\'{o}pez-Ortiz and J\"{o}rg-R\"{u}dinger Sack}, booktitle = wads05, publisher = lncs3608, year = 2005, pages = {218-232}} @inproceedings{MoranS05a, author = {Shlomo Moran and Sagi Snir}, title = {Efficient Approximation of Convex Recolorings}, booktitle = {Proceedings APPROX 2005: 8th International Workshop on Approximation Algorithms for Combinatorial Optimization Problems, published with Proceedings RANDOM 2005}, publisher = lncs3624, pages = {192-208}, year = 2005} @article{MoranS07, author = {Shlomo Moran and Sagi Snir}, title = {Efficient approximation of convex recolorings}, journal = jcss, volume = 73, year = 2007, pages = {1078-1089}} @article{MoranS08, author = {Shlomo Moran and Sagi Snir}, title = {Convex recolorings of strings and trees: {D}efinitions, hardness results and algorithms}, journal = jcss, volume = 74, year = 2008, pages = {850-869}} %Mos @phdthesis{Mosbah92, author = {Mohamed H\'{e}di Mosbah}, title = {Constructions d'Algorithmes Pour les Graphes Structur\'{e}s par des M{\'e}thodes Alg\'{e}briques et Logiques}, year = 1992, school = {Universit{\'e} Bordeaux-I}} @inproceedings{Mosbah93, author = {Mohamed H\'{e}di Mosbah}, title = {Probabilistic graph grammars}, editor = {Ernst W. Mayr}, booktitle = wg92, year = 1993, publisher = lncs657, pages = {236-247}} @inproceedings{Moser09, author = {Hannes Moser}, title = {A problem kernelization for graph packing}, editor = {Mogens Nielsen and Anton{\'{\i}}n Kucera and Peter Bro Miltersen and Catuscia Palamidessi and Petr Tuma and Frank D. Valencia}, booktitle = sofsem09, publisher = lncs5404, year = 2009, pages = {401-412}} @article{MoserS09, author = {Hannes Moser and Somnath Sikdar}, title = {The parameterized complexity of the induced matching problem}, journal = dam, volume = 157, year = 2009, pages = {715-727}} %Mot @mastersthesis{Motte93, author = {Nikolas Motte}, title = {Algorithmen zur Berechnung der Baumweite von Graphen}, school = {University of Passau, Germany}, year = 1993} @inproceedings{MotwaniRS88, author = {Rajeev Motwani and Arvind Raghunathan and Huzur Saran}, title = {Constructive results from graph minors: {L}inkless embeddings}, booktitle = focs88, year = 1988, pages = {398-407}} %Mu @article{MullerB87, author = {H. M\"{u}ller and A. Brandst\"{a}dt}, title = {The {NP}-completeness of {Steiner Tree} and {Dominating Set} for chordal bipartite graphs}, journal = tcs, volume = 53, year = 1987, pages = {157-165}, remark = {The page number may be wrong}} @article{MullerS89, author = {John H. Muller and Jeremy Spinrad}, title = {Incremental Modular Decomposition}, journal = jacm, volume = 36, year = 1989, pages = {1-19}} @article{MullerU10, author = {Haiko M\"{u}ller and Ruth Urner}, title = {On a disparity between relative cliquewidth and relative {NLC}-width}, journal = dam, volume = 158, year = 2010, pages = {828-840}} %Mv %Mx %My @article{MyungLT95, author = {Y. S. Myung and C. H. Lee and D. W. Tcha}, title = {On the generalized minimum spanning tree problem}, journal = networks, year = 1995, volume = 26, pages = {231-241}} %Mz %N %Na %Nag @article{NagamochiI92, author = {Hiroshi Nagamochi and T. Ibaraki}, title = {A linear-time algorithm for finding a sparse $k$-connected spanning subgraph of a $k$-connected graph}, journal = alg, volume = 7, year = 1992, pages = {583-596}} @article{NagamochiK06, author = {Hiroshi Nagamochi and Taizo Kawada}, title = {Minmax subtree cover problem on cacti}, journal = dam, volume = 154, year = 2006, pages = {1254-1263}} %Nak @article{NakanoON94, author = {Shin-Ichi Nakano and Takashi Oguma and Tako Nishizeki}, title = {A linear time algorithm for c-triangulating three-colored graphs}, journal = {Trans. Institute of Electronics, Information and Communication, Eng., A.}, volume = {377-A}, number = 3, pages = {543-546}, year = 1994, note = {In Japanese}} @article{NakayamaM07, author = {Shin-Ichi Nakayama and Shigeru Masuyama}, title = {A polynomial time algorithm for obtaining minimum edge ranking on two-connected outerplanar graphs}, journal = ipl, volume = 103, year = 2007, pages = {211-250}} %Nao @article{NaorNS87, author = {Joseph Naor and Moni Naor and Alejandro A. Sch\"{a}ffer}, title = {Fast Parallel Algorithms for Chordal Graphs}, journal = siamjc, volume = 18, year = 1989, pages = {327-349}} @article{NaorN90, author = {Joseph Naor and Mark B. Novick}, title = {An efficient reconstruction of a graph from its line graph in parallel}, journal = ja, year = 1990, volume = 11, pages = {132-143}} @inproceedings{NaorGM90, author = {Dalit Naor and Dan Gusfield and Charles Martel}, title = {A Fast Algorithm for Optimally Increasing the Edge-Connectivity}, booktitle = focs90, pages = {698-707}, year = 1990 } %Nar @techreport{NarasimhanM88, author = {Giri Narasimhan and Rachel Manber}, title = {A Generalization of {L}ovasz's Sandwich Theorem}, number = 800, institution = {Computer Science Dept., University of Wisconsin-Madison}, year = 1988 } @techreport{NarasimhanM88a, author = {Giri Narasimhan and Rachel Manber}, title = {Stability Number and Chromatic Number of Tolerance Graphs}, number = 788, institution = {Computer Science Dept., University of Wisconsin-Madison}, year = 1988 } @article{Narasimhan89, author = {Giri Narasimhan}, title = {A note on the Hamiltonian Circuit problem on Directed Path Graphs}, journal = ipl, volume = 32, year = 1989, pages = {167-170}} @phdthesis{Narayanan89, author = {{Ch.} Narayanan}, title = {Fast Parallel Algorithms and Enumeration Techniques for Partial $k$-Trees}, school = {The Clemson University}, month = {8}, year = 1989, pages = {i-vii,1-116}, note = {Report No. URI-071}} @article{NarayananN98, author = {Lata Narayanan and Naomi Nishimura}, title = {Interval routing on $k$-trees}, journal = ja, volume = 26, year = 1998, pages = {325-369}} %Nas @article{NashW65, author = {C. {Nash-Williams}}, title = {On well-quasi ordering infinite trees}, journal = {Proceedings of the Cambridge Philosophical Society}, volume = 61, year = 1965, pages = {697-720}} %Nat @article{NatanzonSS00, author = {Assaf Natanzon and Ron Shamir and Roded Sharan}, title = {A Polynomial Approximation Algorithm for the Minimum Fill-In Problem}, journal = sjdm, volume = 30, pages = {1067-1079}, year = 2000} @article{NatarajanW78, author = {K. S. Natarajan and L. J. White}, title = {Optimum domination in weighted trees}, journal = ipl, volume = 7, year = 1978, pages = {261-265}} %Nau @techreport{Naumann94, author = {Valeska Naumann}, title = {Measuring the distance to series-parallel graphs by path expressions}, number = {376/1994}, year = 1994, institution = {Technische Universit\"{a}t Berlin}, address = {Berlin, Germany}} %Ne %Nem @article{NemhauserT75, author={G. L. Nemhauser and L. E. Trotter}, title = {Vertex packing: Structural properties and algorithms}, journal = mp, year = 1975, volume = 8, pages = {232-248}} %Ner @article{NerodeRY96, author = {Anil Nerode and Jeffrey B. Remmel and Alexander Yakhnis}, title = {McNaughton games and extracting strategies for concurrent programs}, journal = apal, volume = 78, year = 1996, pages = {203-242}} %Nes @article{NesetrilZ96, author = {Jaroslav Ne\~{s}et\~{r}il and Xuding Zhu}, title = {On bounded treewidth duality of graphs}, journal = jgt, volume = 23, pages = {151-162}, year = 1996} @article{NesetrilS01, author = {Jaroslav Ne\~{s}et\~{r}il and E. Sopena}, title = {On the oriented game chromatic number}, journal = ejc, volume = 8, year = 2001, number = 2, pages = {R14}} @article{NesetrilM06, author = {Jaroslav Ne\~{s}et\~{r}il and Patrice Ossona de Mendez}, title = {Tree-depth, subgraph coloring and homomorphism bounds}, journal = ejcom, volume = 27, year = 2006, pages = {1022-1041}} %Neu @article{NeufeldtC85, author = {E. M. Neufeldt and C. J. Colbourn}, title = {The most reliable series-parallel networks}, journal = networks, volume = 15, year = 1985, pages = {27-32}} %Ni %Nie @booklet{Niedermeier02, author = {R. Niedermeier}, title = {Invitation to fixed-parameter algorithms}, year = 2002, note = {Habilitation Thesis}, address = {Universit\"{a}t T\"{u}bingen}} @book{Niedermeier06, author = {Rolf Niedermeier}, title = {Invitation to fixed-parameter algorithms}, publisher = {Oxford University Press}, series = {Oxford Lecture Series in Mathematics and Its Applications}, year = 2006} %Nik @article{NikolopoulosP06, author = {Stavros D. Nikolopoulos and Leonidas Palios}, title = {Minimal separators in {$P_4$}-sparse graphs}, journal = dm, volume = 306, pages = {381-392}, year = 2006} %Nis @article{NishimuraRT00, author = {Naomi Nishimura and Prabhakar Ragde and Dimitrios M. Thilikos}, title = {Finding smallest supertrees under minor containment}, journal = ijfcs, volume = 11, year = 2000, pages = {445-466}} @inproceedings{NishimuraRT04, author = {Naomi Nishimura and Prabhakar Ragde and Dimitrios M. Thilikos}, title = {Smaller kernels for hitting set problems of constant arity}, editor = {R. G. Downey and M. R. Fellows}, booktitle = iwpec04, year = 2004, publisher = lncs3162, pages = {239-250}} @article{Nisse09, author = {Nicolas Nisse}, title = {Connected graph searching in chordal graphs}, journal = dam, volume = 157, year = 2009, pages = {2603-2610}} @article{NisseS09, author = {Nicolas Nisse and David Soguet}, title = {Graph searching with advice}, journal = tcs, volume = 410, year = 2009, pages = {1307-1318}} %No %Nob @article{Noble98, author = {S. D. Noble}, title = {Evaluating the {T}utte polynomial for graphs of bounded tree-width}, journal = cpc, year = 1998, pages = {307-321}, volume = 7} %Nog @article{NogaYZ95, author = {Noga Alon and Raphael Yuster and Uri Zwick}, title = {Color-coding}, journal = jacm, volume = 42, year = 1995, pages = {855-856}} %Nor @article{NorineSTW06, author = {Serguei Norine and Paul Seymour and Robin Thomas and Paul Wollan}, title = {Proper minor-closed families are small}, journal = jctb, volume = 96, year = 2006, pages = {754-757}} %Nov @techreport{Novick89, author = {Mark B. Novick}, title = {Fast Parallel Algorithms for the Modular Decomposition}, institution = {Department of Computer Science, Cornell University}, number = {TR 89-1016}, year = 1989 } %O %Oc @article{OchemP08, author = {Pascal Ochem and Alexandre Pinlou}, title = {Oriented colorings of partial 2-trees}, journal = ipl, volume = 108, year = 2008, pages = {82-86}} %Og @article{OgawaHS03, author = {M. Ogawa and Z. Hu and I. Sasano}, title = {Iterative-free program analysis}, journal = {ACM SIGPLAN Notices}, volume = 38, year = 2003, pages = {111-123}} %Oh %Ohs @article{Ohsugi10, author = {Hidefumi Ohsugi}, title = {Normality of cut polytopes of graphs is a minor closed property}, journal = dm, volume = 310, year = 2010, pages = {1160-1166}} %Oht @article{Othsuki76, author = {T. Ohtsuki}, title = {A fast algorithm for finding an optimal ordering in the vertex elimination ordering of a graph}, journal = siamjc, volume = 5, year = 1976, pages = {133-145}} @article{OthsukiCF76, author = {T. Ohtsuki and L. K. Cheung and T. Fujisawa}, title = {Minimal triangulation of a graph and optimal pivoting ordering in a sparse matrix}, journal = jmaa, volume = 54, pages = {622-633}, year = 1976} @article{OhtsukiMKF81, author = {T. Ohtsuki and H. Mori and T. Kashiwabara and T. Fujisawa}, title = {On minimal augmentation of a graph to obtain an interval graph}, journal = jcss, volume = 22, year = 1981, pages = {60-97}} %Ol %Ola @article{Olariu89, author = {Stephan Olariu}, title = {A decomposition for strongly perfect graphs}, journal = jgt, volume = 13, number = 3, year = 1989, pages = {301-311}} @article{Olariu91, author = {Stephan Olariu}, title = {On the structure of unbreakable graphs}, journal = jgt, volume = 15, number = 4, year = 1991, pages = {349-373}} @article{OlariuSZ92, author = {Stephan Olariu and James L. Schwing and Jingyuan Zhang}, title = {Optimal parallel encoding and decoding algorithms for trees}, journal = ijfcs, volume = 3, number = 1, year = 1992, pages = {1-10}} %Ole @article{OlesenM02, author = {Kristian G. Olesen and Anders L. Madsen}, title = {Maximal prime subgraph decomposition of {B}ayesian networks}, journal = {IEEE Trans. on Systems, Man, and Cybernetics, Part B}, volume = 32, year = 2002, pages = {21-31}} %Or %Ord %author = {F. Ord\'o\~nez and B. Krishnamachari}, @article{OrdonezK04, author = {F. Ordonez and B. Krishnamachari}, title = {Optimal information extraction in energy-limited wireless sensor networks}, journal = {IEEE Journal on Selected Areas in Communications}, volume = 22, year = 2004, number = 6, pages = {1121-1129}} %Orl @article{OrlinBB81, author = {James B. Orlin and Maurizio A. Bonucelli and Daniel P. Bovet}, title = {An {$O(n^2)$} algorithm for coloring proper circular arc graphs}, journal = sjadm, volume = 2, year = 1981, pages = {88-93}} %Os %Ost @article{Ostrovskii10, author = {M. I. Ostrovskii}, title = {Minimum congestion spanning trees in planar graphs}, journal = dm, volume = 310, year = 2010, pages = {1204-1209}} %Ou %Oum %Oum 2005 @article{Oum05, author = {{Sang-il} Oum}, title = {Rank-width and vertex-minors}, journal = jctb, volume = 95, year = 2005, pages = {79-100}} %Oum 2006 @article{OumS06, author = {{Sang-il} Oum and Paul Seymour}, title = {Approximating clique-width and branch-width}, journal = jctb, volume = 96, year = 2006, pages = {514-528}} %Oum 2007 @article{OumS07, author = {{Sang-il} Oum and Paul Seymour}, title = {Testing branch-width}, journal = jctb, volume = 97, year = 2007, pages = {385-393}} %Oum 2008 @article{Oum08, author = {{Sang-il} Oum}, title = {Rank-width and well-quasi ordering}, journal = sjdm, volume = 22, year = 2008, pages = {666-682}} @article{Oum08a, author = {{Sang-il} Oum}, title = {Rank-width is less than or equal to branch-width}, journal = jgt, volume = 57, year = 2008, pages = {239-244}} @article{Oum08b, author = {{Sang-il} Oum}, title = {Approximating rank-width and clique-width quickly}, journal = acmtalg, volume = 5, number = 1, year = 2008} %Oum 2009 @article{Oum09, author = {Sang-il Oum}, title = {Computing rank-width exactly}, journal = ipl, volume = 109, year = 2009, pages = {730-738}} %P %Pa %Pan @article{PandaD03, author = {B. S. Panda and S. K. Das}, title = {A linear time recognition algorithm for proper interval graphs}, journal = ipl, volume = 87, year = 2003, pages = {153-161}} %Pap %Papadimitriou 1975 @article{Papadimitriou75, author = {Christos H. Papadimitriou}, title = {Games Against Nature}, journal = jcss, volume = 31, year = 1985, pages = {288-301}} %Papadimitriou 1976 @article{Papadimitriou76, author = {Christos H. Papadimitriou}, title = {The {NP}-completeness of the bandwidth minimization problem}, journal = comp, volume = 16, year = 1976, pages = {263-270}} %Papadimitriou 1981 @article{PapadimitriouY81, author = {Christos H. Papadimitriou and Mihalis Yannakakis}, title = {The clique problem for planar graphs}, journal = ipl, volume = 13, year = 1981, pages = {131-133}} %Papadimitriou 1982 @book{PapadimitriouS82, author = {Christos H. Papadimitriou and K. Steiglitz}, title = {Combinatorial Optimization: Algorithms and Complexity}, publisher = {Prentice Hall}, address = {Englewoods Cliffs, NJ}, year = 1982 } %Papadimitriou 1984 @article{Papadimitriou84, author = {Christos H. Papadimitriou}, title = {On the complexity of unique solutions}, journal = jacm, volume = 31, year = 1984, pages = {392-400}} %Papadimitriou 1989 @techreport{PapadimitriouS89, author = {Christos H. Papadimitriou and Martha Sideris}, title = {The Bisection Width of Grid Graphs}, number = {89.0584}, institution = {CTI Patras}, year = 1989} %Papadimitriou 1994 @book{Papadimitriou94, author = {Christos H. Papadimitriou}, title = {Computational Complexity}, year = 1994, publisher = {Addison-Wesley}, address = {Reading, Mass.}} @article{PapakostasT98, author = {Achilleas Papakostas and Ioannis G. Tollis}, title = {Algorithms for area-efficient orthogonal drawings}, journal = {Computation Geometry: Theory and Applications}, volume = 9, year = 1998, pages = {83-110}} %Par %Park @inproceedings{Park02, author = {J. D. Park}, title = {MAP complexity results and approximation methods}, editor = {A. Darwiche and N. Friedman}, booktitle = uai02, publisher = {Morgan Kaufmann}, pages = {388-396}, year = 2002} @article{ParkD04, author = {J. D. Park and A. Darwiche}, title = {Complexity results and approximation settings for {MAP} explanations}, journal = jair, volume = 21, year = 2004, pages = {101-133}} %Parn @article{ParnasR07, author = {Michal Parnas and Dana Ron}, title = {Approximating the minimum vertex cover in sublinear time and a connection to distributed algorithms}, journal = tcs, volume = 381, year = 2007, pages = {183-196}} %Parr @unpublished{Parra94, author = {Andreas Parra}, title = {Triangulating bitolerance graphs}, note = {Manuscript}, year = 1994} @misc{Parra95, author = {Andreas Parra}, note = {Personal communication}, year = 1995} @phdthesis{Parra96, author = {Andreas Parra}, title = {Structural and Algorithmic Aspects of Chordal Graph Embeddings}, year = 1996, school = {Technical University Berlin}} @article{ParraS97, author = {Andreas Parra and Petra Scheffler}, title = {Characterizations and algorithmic applications of chordal graph embeddings}, journal = dam, volume = 79, pages = {171-188}, year = 1997} @article{Parra98, author = {Andreas Parra}, title = {Triangulating multitolerance graphs}, journal = dam, volume = 84, year = 1998, pages = {183-197}} %Pars @inproceedings{Parsons76, author = {T. D. Parsons}, title = {Pursuit Evasion in a Graph}, booktitle = {Theory and Application of Graphs}, editor = {Y. Alavi and D. R. Lick}, publisher = {Springer Verlag}, address = {Berlin}, year = 1976, pages = {426-441}} %Part @article{Parter61, author = {S. Parter}, title = {The use of linear graphs in {Gauss} elimination}, journal = {SIAM Review}, volume = 3, pages = {119-130}, year = 1961} %Pau %Paul 1978 @article{Paul78, author = {J. L. Paul}, title = {Tic-Tac-Toe in $n$-dimensions}, journal = {Math. Mag.}, year = 1978, pages = {45-49}, volume = 51 } %Paul 1980 @article{PaulPR80, author = {W. J. Paul and E. J. Prauss and R. Reischuk}, title = {On alternation}, journal = ai, volume = 14, pages = {243-255}, year = 1980 } @article{PaulR80, author = {W. J. Paul and R. Reischuk}, title = {On alternation {II}}, journal = ai, volume = 14, pages = {391-403}, year = 1980 } %Paul 2005 @inproceedings{PaulT05, author = {Christophe Paul and Jan Arne Telle}, title = {New tools and simpler algorithms for branchwidth}, booktitle = esa05, publisher = lncs3669, year = 2005, pages = {379-390}} %Paul 2009 @article{PaulT09, author = {Christophe Paul and Jan Arne Telle}, title = {Branchwidth of chordal graphs}, journal = dam, volume = 157, year = 2009, pages = {2718-2725}} %Paw @article{PawagiGR87, author = {Shaunak R. Pawagi and P. S. Gopalakrishnan and I. V. Ramakrishnan}, title = {Computing dominators in parallel}, journal = ipl, volume = 24, year = 1987, pages = {217-221}} %Pe %Pea @book{Pearl88, author = {J. Pearl}, title = {Probablistic Reasoning in Intelligent Systems: Networks of Plausible Inference}, publisher = {Morgan Kaufmann}, year = 1988, address = {Palo Alto}} %Pec @article{PeckS92, author = {G. W. Peck and A. Shastri}, title = {Bandwidth of theta graphs with short paths}, journal = dm, volume = 103, pages = {177-187}, year = 1992} %Pen @article{PengHHKT00, author = {Sheng-Lung Peng and Chin-Wen Ho and Tsan-Shen Hsu and Ming-Tat Ko and {Chuan Yi} Tang}, title = {Edge and node searching problems on trees}, journal = tcs, volume = 240, pages = {429-446}, year = 2000} @article{PengKHHT00, author = {S.-L. Peng and M.-T. Ko and C.-W. Ho and T.-S. Hsu and C. Y. Tang}, title = {Graph searching on some subclasses of chordal graphs}, journal = alg, volume = 27, pages = {395-426}, year = 2000} @article{PengC06, author = {Sheng-Lung Peng and Chi-Kang Chen}, title = {On the interval completion of chordal graphs}, journal = dam, volume = 154, pages = {1003-1010}, year = 2006} %Per @inproceedings{PerkovicR99, author = {Ljubomir Perkovi{\'{c}} and Bruce Reed}, title = {An improved algorithm for finding tree decompositions of small width}, editor = {Peter Widmayer and Gabriele Neyer and Sephan Eidenbenz}, booktitle = wg99, publisher = lncs1665, year = 1999, pages = {148-154}} @article{PerkovicR00, author = {Ljubomir Perkovi{\'{c}} and Bruce Reed}, title = {An improved algorithm for finding tree decompositions of small width}, journal = ijfcs, volume = 11, year = 2000, pages = {365-371}} %Per @article{PerlS78, author = {Y. Perl and Y. Shiloach}, title = {Finding two disjoint paths between two pairs of vertices in a graph}, journal = jacm, year = 1978, volume = 23, pages = {1-9}} %Pey @article{Peyton01, author = {B. W. Peyton}, title = {Minimal orderings revisited}, journal = sjmaa, volume = 23, year = 2001, pages = {271-294}} %Pf @article{PfaffLH84, author = {J. Pfaff and R. Laskar and S. T. Hedetniemi}, title = {Linear algorithms for independent domination and total domination in series-parallel graphs}, journal = cn, volume = 45, year = 1984, pages = {71-82}} %Ph %Phi @inproceedings{PhilipRS09, author = {Geevarghese Philip and Venkatesh Raman and Somnath Sikdar}, title = {Solving Dominating Set in larger classes of graphs: {FPT} algorithms and polynomial kernels}, editor = {Amos Fiat and Peter Sanders}, booktitle = esa09, publisher = lncs5757, year = 2009, pages = {694-705}} %Pl @inproceedings{PlehnV90, author = {J\"{u}rgen Plehn and Bernd Voigt}, title = {Finding minimally weighted subgraphs}, editor = {Rolf H. M\"{o}hring}, booktitle = wg90, publisher = lncs484, year = 1991, pages = {18-29}} %Pi %Pie @article{Pietrzak03, author = {Krzysztof Pietrzak}, title = {On the parameterized complexity of the fixed alphabet {\em shortest common supersequence} and {\em longest common subsequence} problems}, journal = jcss, volume = 67, year = 2003, pages = {757-771}} %Pin @article{PinlouS06, author = {Alexandre Pinlou and \'{E}ric Sopena}, title = {Oriented vertex and arc colorings of outerplanar graphs}, journal = ipl, volume = 100, year = 2006, pages = {97-104}} %Po %Pon @inproceedings{PontaHN08, author = {Oriana Ponta and Falk H\"{u}ffner and Rolf Niedermeier}, title = {Speeding up Dynamic Programming for Some {NP}-Hard Graph Recoloring Problems}, editor = {M. Agrawal and D.-Z. Du and Z. Duan and A. Li}, booktitle = tamc08, publisher = lncs4978, year = 2008, pages = {490-501}} %Pr %Pri @phdthesis{Prieto05, author = {Elena Prieto}, title = {Systematic Kernelization in {FPT} Algorithm Design}, school = {University of Newcastle}, address = {Australia}, year = 2005} @article{PrietoS06, author = {Elena Prieto and Christian Sloper}, title = {Looking at the stars}, journal = tcs, volume = 351, pages = {437-445}, year = 2006} %Pro %Proskurowski 1979 @article{Proskurowski79, author = {Andrzej Proskurowski}, title = {Minimum dominating cycles in two-trees}, journal = ijcis, volume = 8, number = 5, year = 1979, pages = {405-417}} %Proskurowski 1980 @article{Proskurowski80, author = {Andrzej Proskurowski}, title = {Centers of maximal outerplanar graphs}, journal = jgt, year = 1980, volume = 4, number = 2, pages = {75-79}} @article{Proskurowski80a, author = {Andrzej Proskurowski}, title = {Centers of 2-trees}, journal = adm, volume = 9, year = 1980, pages = {1-5}} %Proskurowski 1981 @article{Proskurowski81, author = {Andrzej Proskurowski}, title = {Recursive graphs, recursive labelings and shortest paths}, journal = siamjc, volume = 16, year = 1981, pages = {391-397}} @article{ProskurowskiS81, author = {Andrzej Proskurowski and Maciej M. Sys{\l}o}, title = {Minimum dominating cycles in outerplanar graphs}, journal = ijcis, volume = 10, year = 1981, pages = {127-139}} %Proskurowski 1984 @article{Proskurowski84, author = {Andrzej Proskurowski}, title = {Separating subgraphs in $k$-trees: {C}ables and Caterpillars}, journal = dm, volume = 49, year = 1984, pages = {275-285}} %Proskurowski 1986 @article{ProskurowskiS86, author = {Andrzej Proskurowski and Maciej M. Sys{\l}o}, title = {Efficient Vertex- and Edge-colorings of Outerplanar Graphs}, journal =sjadm, volume = 7, year = 1986, pages = {131-136}} %Proskurowski 1989 @techreport{Proskurowski89, author = {Andrzej Proskurowski}, title = {Maximal Graphs of Pathwidth $k$ or Searching a Partial $k$-caterpillar}, number = {CIS-TR-89-17}, institution = {Dept. of Computer and Information Science, University of Oregon}, year = 1989} %Proskurowski 1990 @article{ProskurowskiS90, author = {Andrzej Proskurowski and Maciej M. Sys{\l}o}, title = {Efficient Computations in Tree-like Graphs}, journal = {Comput. Suppl.}, volume = 7, year = 1990, pages = {1 - 15}} %Proskurowski 1993 @inproceedings{Proskurowski93, author = {Andrzej Proskurowski}, title = {Graph reductions, and techniques for finding minimal forbidden minors}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {591-600}, year = 1993} @article{ProvanB83, author = {{J. Scott} Provan and Michael O. Ball}, title = {The complexity of counting cuts and of computing the probability that a network remains connected}, journal = siamjc, volume = 12, number = 4, year = 1983, pages = {777-788}} %Prz @article{PrzytyckaC91, author = {T. Przytycka and D. G. Corneil}, title = {Parallel algorithms for parity graphs}, journal = ja, volume = 12, pages = {96-109}, year = 1991} %Pu %Pul @article{Pullman84, author = {Normal J. Pullman}, title = {Clique covering of graphs {IV}. {A}lgorithms}, journal = siamjc, volume = 13, year = 1984, pages = {57-75}} %Pun @article{PunnenN94, author = {Abraham P. Punnen and K. P. K. Nair}, title = {A fast and simple algorithm for the bottleneck biconnected spanning subgraph problem}, journal = ipl, volume = 50, year = 1994, pages = {283-286}} %Q %Qu @article{Quilliot85, author = {A. Quilliot}, title = {A short note about pursuit games played on a graph with a given genus}, journal = jctb, volume = 38, year = 1985, pages = {89-92}} %R %Ra %Rab @article{RabinS59, author = {M. O. Rabin and D. S. Scott}, title = {Finite automata and their decision problems}, journal = {IBM Journal of Research and Development}, volume = 3, year = 1959, pages = {114-125}} @inproceedings{Rabin65, author = {M. O. Rabin}, title = {A simple method for undecidability proofs and some applications}, publisher = {North-Holland Publishing Company}, booktitle = {Logic, Methodology and Philosophy of Science}, year = 1965, editor = {Y. {Bar-Hillel}}, pages = {58-68}} @article{Rabin69, author = {M. O. Rabin}, title = {Decidability of second-order theories and automata on infinite trees}, journal = {Transactions of the American Mathematical Society}, volume = 141, year = 1969, pages = {1-35}} @incollection{Rabin77, author = {M. O. Rabin}, title = {Decidable theories}, booktitle = {Handbook of Mathematical Logic}, editor = {K. J. Barwise}, publisher = {North-Holland Publishing Company}, year = 1977, pages = {595-629}} @article{RabinV89, author = {Michael O. Rabin and Vijay V. Vazirani}, title = {Maximum matchings in general graphs through randomization}, journal = ja, volume = 10, year = 1989, pages = {557-567}} %Rad @techreport{RadhakrishnanHS92, author = {Venkatesh Radhakrishnan and Harry B. {Hunt III} and Richard E. Stearns}, title = {On Solving Systems of Linear Equations and Path Problems for Bounded Treewidth Graphs}, institution = {Dept. of Computer Science, SUNY Albany}, number = {92-5}, year = 1992} @techreport{RadhakrishnanHS93, author = {Venkatesh Radhakrishnan and Harry B. {Hunt III} and Richard E. Stearns}, title = {Efficient Algorithms for Hierarchical Descriptions with Bounded Treewidth}, institution = {Dept. of Computer Science, SUNY Albany}, number = {93-7}, year = 1993} %Rai @inproceedings{RaibleF08, author = {Daniel Raible and Henning Fernau}, title = {Power domination in {$O^\ast(1.7448^n)$} using reference search trees}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {136-147}} %Raj @unpublished{RajaramanBP93, author = {Anand Rajaraman and Hari Balakrishnan and C. {Pandu Rangan}}, title = {Modular Decomposition Techniques for Distance-Hereditary Graphs}, note = {Manuscript}, year = 1993} %Ram @phdthesis{Ramachandramurthi94, author = {Siddharthan Ramachandramurthi}, title = {Algorithms for {VLSI} Layout Based on Graph Width Metrics}, school = {Computer Science Department, University of Tennessee}, address = {Knoxville, Tennessee, USA}, year = 1994} @inproceedings{Ramachandramurthi95, author = {Siddharthan Ramachandramurthi}, title = {A Lower Bound for Treewidth and its Consequences}, editor = {Ernst W. Mayr and Gunther Schmidt and Gottfried Tinhofer}, booktitle = wg94, publisher = lncs903, year = 1995, pages = {14-25}} @article{Ramachandramurthi97, author = {Siddharthan Ramachandramurthi}, title = {The structure and number of obstructions to treewidth}, journal = sjdm, volume = 10, year = 1997, pages = {146-157}} @article{Ramachandran88, author = {Vijaya Ramachandran}, title = {Finding a minimum feedback arc set in reducible flow graphs}, journal = ja, volume = 9, pages = {299-313}, year = 1988 } @article{RamalingamP88, author = {G. Ramalingam and C. {Pandu Rangan}}, title = {Total Domination in Interval Graphs Revisited}, journal = ipl, volume = 27, year = 1988, pages = {17-22}} @article{RamalingamP88a, author = {G. Ramalingam and C. {Pandu Rangan}}, title = {A unified approach to domination problems on interval graphs}, journal = ipl, volume = 27, year = 1988, pages = {271-274}} @article{RamalingamP90, author = {G. Ramalingam and C. {Pandu Rangan}}, title = {New sequential and parallel algorithms for interval graph recognition}, journal = ipl, volume = 34, year = 1990, pages = {215-219}} %Raman @inproceedings{RamanSS02, author = {Venkatesh Raman and Saket Saurabh and C. R. Subramanian}, title = {Faster fixed parameter tractable algorithms for undirected feedback vertex set}, editor = {P. Bose and P. Morin}, booktitle = isaac02, year = 2002, pages = {241 - 248}, publisher = lncs2518} @article{RamanSS05, author = {Venkatesh Raman and Saket Saurabh and C. R. Subramanian}, title = {Faster algorithms for feedback vertex set}, journal = {Proceedings 2nd Brazilian Symposium on Graphs, Algorithms, and Combinatorics, GRACO 2005, Electronic Notes in Discrete Mathematics}, volume = 19, year = 2005, pages = {273-279}} @article{RamanS06, author = {Venkatesh Raman and Saket Saurabh}, title = {Parameterized algorithms for feedback set problems and their duals in tournaments}, journal = tcs, volume = 351, pages = {446-458}, year = 2006} @article{RamanS07, author = {Venkatesh Raman and Somnath Sikdar}, title = {Parameterized complexity of the induced subgraph problem in directed graphs}, journal = ipl, volume = 104, pages = {79-85}, year = 2007} %Ran @techreport{RanderathS05, author = {B. Randerath and I. Schiermeyer}, title = {Exact Algorithms for Minimum Dominating Set}, type = {Technical Report}, number = {zaik2005-501}, institution = {Universit\"{a}t zu K\"{o}ln, Cologne, Germany}, year = 2005} %Rao @article{RaoR89, author = {A. {Srinivasa Rao} and C. {Pandu Rangan}}, title = {Linear algorithm for domatic number on interval graphs}, journal = ipl, volume = 33, year = 1989, pages = {29-33}} @article{RaoR89a, author = {A. {Srinivasa Rao} and C. {Pandu Rangan}}, title = {Optimal parallel algorithms on circular-arc graphs}, journal = ipl, volume = 33, year = 1989, pages = {147-156}} @article{RaoR90, author = {Srinivasa {Rao Arikati} and C. {Pandu Rangan}}, title = {Linear algorithm for optimal path cover problem on interval graphs}, journal = ipl, volume = 34, year = 1990, pages = {149-153}} %Rau @article{Rautenbach07, author = {Dieter Rautenbach}, title = {Dominating and large induced trees in regular graphs}, journal = dm, volume = 307, year = 2007, pages = {3177-3186}} %Rav @article{RaviSMRR96, author = {R. Ravi and R. Sundaram and Madhav V. Marathe and D. J. Rosenkrantz and S. S. Ravi}, title = {Spanning trees---Short or Small}, journal = sjdm, volume = 9, pages = {178 - 200}, year = 1996} %Raz @inproceedings{Razgon06, author = {Igor Razgon}, title = {Exact Computation of Maximum Induced Forest}, editor = {Lars Arge and Rusins Freivalds}, booktitle = swat06, publisher = lncs4059, year = 2006, pages = {160-171}} @article{Razgon07, author = {Igor Razgon}, title = {A {$2^{O(k)}$}poly($n$) algorithm for the parameterized Convex Recoloring problem}, journal = ipl, volume = 104, pages = {53-58}, year = 2007} @inproceedings{RazgonS08, author = {Igor Razgon and B. O'Sullivan}, title = {Almost $2$-{SAT} is Fixed-Parameter Tractable (Extended Abstract)}, editor = {Luca Aceto and Ivan Damg{\aa}rd and Leslie Ann Goldberg and Magn\'{u}s M. Halld\'{o}rsson and Anna Ing\'{o}lfsd\'{o}ttir and Igor Walukuewics}, booktitle = icalp08-1, year = 2008, publisher = lncs5125, pages = {551-562}} %Re %Rea @inbook{Read93, author = {Ronald C. Read}, title = {Prospects for Graph Theory Algorithms}, booktitle = {Quo Vadis, Graph Theory}, Xeditor = {J. Gimbel and J. W. Kennedy and L. V, Quintas}, publisher = {Elsevier Science Publishers}, series = {Annals of Discrete Mathematics}, volume = {55}, pages = {201-210}, year = 1993} %Ree %Reed 1992 @inproceedings{Reed92, author = {Bruce Reed}, title = {Finding approximate separators and computing tree-width quickly}, publisher = {ACM Press}, address = {New York}, booktitle = stoc92, pages = {221-228}, year = 1992} %Reed 1993 @inproceedings{ReedRSS93, author = {Bruce A. Reed and N. Robertson and A. Schrijver and Raul D. Seymour}, title = {Finding disjoint trees in planar graphs in linear time}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {295 - 301 }, year = 1993} %Reed 1997 @incollection{Reed97, author = {Bruce A. Reed}, title = {Tree width and tangles, a new measure of connectivity and some applications}, booktitle = {Surveys in Combinatorics}, series = {LMS Lecture Note Series}, volume = 241, pages = {87-162}, year = 1997, publisher = {Cambridge University Press}, address = {Cambridge, UK}} %Reed 2003 @incollection{Reed03, author = {Bruce A. Reed}, title = {Algorithmic aspects of tree width}, booktitle = {Recent advances in algorithms and combinatorics}, series = {CMS Books Math. / Ouvrages Math. SMC, 11}, publisher = {Springer}, address = {New York}, pages = {85-107}, year = 2003} %Reed 2008 @inproceedings{ReedL08, author = {Bruce A. Reed and Zhentao Li}, title = {Optimization and recognition for {$K_5$}-minor free graphs in linear time}, editor = {Eduardo Sany Laber and Claudson F. Bornstein and Loana Tito Nogueira and Luerbio Faria}, booktitle = latin08, year = 2008, publisher = lncs4957, pages = {206-215}} %Rei @article{Reisch80, author = {S. Reisch}, title = {Gobang ist {PSPACE}-vollst{\"{a}}ndig}, journal = ai, volume = 13, year = 1980, pages = {59-66}} @article{Reisch81, author = {S. Reisch}, title = {Hex ist {PSPACE}-vollst{\"{a}}ndig}, journal = ai, volume = 15, year = 1981, pages = {167-191}} %Ren @article{RenooijGP02, author = {Slija Renooij and Linda C. van der Gaag and Simon Parsons}, title = {Context-specific sign-propogation in qualitative probabilistic networks}, journal = ai, volume = 140, year = 2002, pages = {207-230}} %Ri %Ric @article{RichardsL85, author = {D. Richards and A. L. Liestman}, title = {Finding Cycles of a Given Length}, journal = adm, volume = 27, pages = {249-256}, year = 1985 } @article{Richards86, author = {D. Richards}, title = {Finding Short Cycles in Planar Graphs Using Separators}, journal = ja, volume = 7, year = 1986, pages = {249-256}} @phdthesis{Richey85, author = {M. B. Richey}, title = {Combinatorial optimization on series-parallel graphs: algorithms and complexity}, school = {School of Industrial and Systems Engineering, Georgia Institute of Technology}, year = 1985} %Rie @article{RiegeRSY07, author = {Tobias Riege and J\"{o}rg Rothe and Holger Spakowski and Masaki Yamamoto}, title = {An improved exact algorithm for the domatic number problem}, journal = ipl, volume = 101, year = 2007, pages = {101-106}} %Ro %Rob @article{Robson86, author = {J. M. Robson}, title = {Algorithms for maximum independent sets}, journal = ja, volume = 7, year = 1986, pages = {425-440}} @techreport{Robson01, author = {J. M. Robson}, title = {Finding an independent set in time {$O(2^{n/4})$}}, note = {Technical report 1251-01}, institution = {LaBRi, Universit\'{e} Bordeaux}, year = 2001} %Robertson %Exception to rule: The graph minors papers are numbered to their %number in the series @article{RobertsonS1, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {I}. {E}xcluding a Forest}, journal = jctb, year = 1983, volume = 35, pages = {39-61}} @article{RobertsonS2, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {II}. {A}lgorithmic Aspects of Tree-Width}, journal = ja, year = 1986, volume = 7, pages = {309-322}} @article{RobertsonS85, author = {Neil Robertson and Paul D. Seymour}, title = {Disjoint Paths -- A Survey}, journal = sjadm, volume = 6, year = 1985, pages = {300-305}} @article{RobertsonS3, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {III}. {P}lanar Tree-Width}, journal = jctb, volume = 36, year = 1984, pages = {49-64}} @article{RobertsonS4, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {IV}. {T}ree-Width and Well-Quasi-Ordering}, journal = jctb, volume = 48, year = 1990, pages = {227-254}} @article{RobertsonS5, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {V}. {E}xcluding a planar graph}, journal = jctb, volume = 41, year = 1986, pages = {92-114}} @article{RobertsonS6, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {VI}. {D}isjoint Paths across a Disc}, journal = jctb, volume = 41, year = 1986, pages = {115-138}} @article{RobertsonS7, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {VII}. {D}isjoint paths on a surface}, journal = jctb, volume = 45, pages = {212-254}, year = 1988} @article{RobertsonS8, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {VIII}. {A} {K}uratowski theorem for general surfaces}, journal = jctb, volume = 48, pages = {255-288}, year = 1990} @article{RobertsonS9, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {IX}. {D}isjoint crossed paths}, journal = jctb, volume = 49, pages = {40-77}, year = 1990} @article{RobertsonS10, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {X}. {O}bstructions to tree-decomposition}, journal = jctb, volume = 52, year = 1991, pages = {153-190}} @article{RobertsonS11, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XI}. {D}istance on a Surface}, journal = jctb, volume = 60, year = 1994, pages = {72-106}} @article{RobertsonS12, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XII}. {E}xcluding a Non-planar Graph}, journal = jctb, volume = 64, year = 1995, pages = {240-272}} @article{RobertsonS13, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XIII}. {T}he Disjoint Paths Problem}, journal = jctb, volume = 63, year = 1995, pages = {65-110}} @article{RobertsonS14, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XIV}. {E}xtending an Embedding}, journal = jctb, volume = 65, year = 1995, pages = {23-50}} @article{RobertsonS15, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XV}. {G}iant Steps}, journal = jctb, volume = 68, year = 1996, pages = {112-148}} @article{RobertsonS16, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XVI}. {E}xcluding a non-planar graph}, journal = jctb, volume = 89, year = 2003, pages = {43-76}} @article{RobertsonS17, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XVII}. {T}aming a vortex}, journal = jctb, volume = 77, year = 1999, pages = {162-210}} @article{RobertsonS18, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XVIII}. {T}ree-decompositions and well-quasi ordering}, journal = jctb, volume = 89, year = 2003, pages = {77-108}} @article{RobertsonS19, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XIX}. {W}ell-quasi-ordering on a surface}, journal = jctb, volume = 90, year = 2004, pages = {325-385}} @article{RobertsonS20, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XX}. {W}agner's conjecture}, journal = jctb, volume = 92, year = 2004, pages = {325-357}} @article{RobertsonS21, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XXI}. {G}raphs with unique linkages}, journal = jctb, volume = 99, year = 2009, pages = {583-616}} @unpublished{RobertsonS22, author = {Neil Robertson and Paul D. Seymour}, title = {Graph Minors. {XXII}. {I}rrelevant vertices in linkage problems}, note = {Manuscript}, year = 1992 } @article{RobertsonS23, author = {Neil Robertson and Paul D. Seymour}, title = {Graph minors {XXIII}. {N}ash-{W}illiams' immersion conjecture}, journal = jctb, volume = 100, year = 2010, pages = {181-205}} %Robertson 1984 @article{RobertsonS84, author = {Neil Robertson and Paul D. Seymour}, title = {Generalizing {K}uratowskis Theorem}, journal = cn, volume = 45, year = 1984, pages = {129-138}} @inproceedings{RobertsonS84a, author = {Neil Robertson and Paul D. Seymour}, title = {Graph width and well-quasi ordering: a survey}, booktitle = {Progress in Graph Theory}, editor = {J. A. Bondy and U. S. R. Murty}, publisher = {Academic Press}, address = {Toronto}, year = 1984, pages = {399-406}} %Robertson 1985 @inproceedings{RobertsonS85a, author = {Neil Robertson and Paul D. Seymour}, title = {Graph minors --- A survey}, editor = {I. Anderson}, booktitle = {Surveys in Combinatorics}, publisher = {Cambridge Univ.\ Press}, year = 1985, pages = {153--171}} %Robertson 1988 @unpublished{RobertsonS88, author = {Neil Robertson and Paul D. Seymour}, title = {An Outline of a Disjoint Path Algorithm}, note = {Preprint}, year = 1988, month = {5}} %Robertson 1993 @inproceedings{RobertsonS93, author = {Neil Robertson and Paul D. Seymour}, title = {Excluding a graph with one crossing}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {669-675}, year = 1993} @inproceedings{RobertsonST93, author = {Neil Robertson and Paul D. Seymour and Robin Thomas}, title = {A survey of linkless embeddings}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {125-136}, year = 1993} @inproceedings{RobertsonST93a, author = {Neil Robertson and Paul D. Seymour and Robin Thomas}, title = {Structural Description of Lower Ideals of Trees}, booktitle = {Graph Structure Theory, Proceedings of the AMS-IMS-SIAM Joint Summer Research Conference, Seattle WA, June 1991}, publisher = {American Math. Soc.}, address = {Providence, RI}, editor = {Neil Robertson and Paul Seymour}, note = {Contemp. Math. 147.}, pages = {525-538}, year = 1993} %Robertson 1994 @article{RobertsonST94, author = {Neil Robertson and Paul D. Seymour and Robin Thomas}, title = {Quickly Excluding a Planar Graph}, journal = jctb, volume = 62, year = 1994, pages = {323-348}} %Robertson 1997 @article{RobertsonSST97, author = {Neil Robertson and Daniel Sanders and Paul Seymour and Robin Thomas}, title = {The Four-Colour Theorem}, journal = jctb, volume = 70, year = 1997, pages = {2-44}} @article{RobinsonG89, author = {A. G. Robinson and A. J. Goldman}, title = {The set coincidence game: Complexity, Attainability, and Symmetric Strategies}, journal = jcss, volume = 39, year = 1989, pages = {376-387}} @article{Robson84, author = {J. M. Robson}, title = {{$N$} by {$N$} {Checkers} is {Exptime} complete}, journal = siamjc, volume = 13, year = 1984, pages = {252-267}} @article{Robson85, author = {J. M. Robson}, title = {Alternation with restrictions on looping}, journal = ic, volume = 67, pages = {2-11}, year = 1985 } %Roc @book{Rockafellar84, author = {R. T. Rockafellar}, title = {Network Flows and Monotronic Optimization}, publisher = {Wiley}, address = {New York}, year = 1984} %Rod @article{Rodriguez-VelazquezS09, author = {J. A. Rodr\'{\i}guez-Vel\'{a}zquez and J. M. Sigarreta}, title = {Global defensive $k$-alliances in graphs}, journal = dam, volume = 157, year = 2009, pages = {211-218}} %Roh @mastersthesis{Rohrig98, author = {Hein R{\"{o}}hrig}, title = {Tree decomposition: A feasibility study}, school = {Max-Planck-Institut f{\"{u}}r Informatik}, address = {Saarbr{\"{u}}cken, Germany}, year = 1998} %Ron @article{Ronn90, author = {Eytan Ronn}, title = {{NP}-complete stable matching problems}, journal = ja, volume = 11, year = 1990, pages = {285 - 304}} %Roo %van Rooij 2006 @mastersthesis{vanRooij06, author = {Johan M. M. {van Rooij}}, title = {Design by Measure and Conquer: An {$O(1.5086^n)$} Algorithm for Minimum Dominating Set and Similar Problems}, school = {Institute for Information and Computing Sciences, Utrecht University}, number = {INF/SRC-06-05}, year = 2006} %van Rooij 2008 @inproceedings{vanRooijB08, author = {Johan M. M. van Rooij and Hans L. Bodlaender}, title = {Design by Measure and Conquer --- A faster exact algorithm for Dominating Set}, booktitle = stacs08, year = 2008, pages = {657-668}} @inproceedings{vanRooijB08a, author = {Johan M. M. van Rooij and Hans L. Bodlaender}, title = {Exact algorithms for Edge Domination}, booktitle = {Proceedings of the 3rd International Workshop on Parameterized and Exact Computation, IWPEC 2008}, editor = {Martin Grohe and Rolf Niedermeier}, year = 2008, pages = {214-225}, publisher = {Springer, Lecture Notes in Computer Science, volume 5018}, address = {Berlin}} %van Rooij 2009 @inproceedings{vanRooijBR09, author = {Johan M. M. van Rooij and Hans L. Bodlaender and Peter Rossmanith}, title = {Dynamic programming on tree decompositions using generalised fast subset convolution}, editor = {Amos Fiat and Peter Sanders}, booktitle = esa09, publisher = lncs5757, year = 2009, pages = {566-577}} @inproceedings{vanRooijNvD09, author = {Johan M. M. van Rooij and Jesper Nederlof and Thomas C. van Dijk}, title = {Inclusion/Exclusion meets Measure and Conquer: Exact algorithms for counting dominating sets}, editor = {Amos Fiat and Peter Sanders}, booktitle = esa09, publisher = lncs5757, year = 2009, pages = {554-565}} %Ros @article{Rose70, author = {Donald J. Rose}, title = {Triangulated graphs and the elimination process}, journal = jmaa, volume = 32, year = 1970, pages = {597-609}} @inproceedings{Rose72, author = {Donald J. Rose}, title = {A graph-theoretic study of the numerical solution of sparse positive definite systems of linear equations}, booktitle = {Graph Theory and Computing}, editor = {R. C. Reed}, publisher = {Academic Press}, year = 1972, pages = {183-217}} @article{Rose74, author = {Donald J. Rose}, title = {On simple characterization of $k$-trees}, journal = dm, volume = 7, year = 1974, pages = {317-322}} @article{RoseTL76, author = {Donald J. Rose and Robert Endre Tarjan and George S. Lueker}, title = {Algorithmic aspects of vertex elimination on graphs}, journal = siamjc, volume = 5, year = 1976, pages = {266-283}} @article{RosenbergS81, author = {A. Rosenberg and Ivan Hal Sudborough}, title = {Bandwidth and pebbling}, journal = comp, volume = 31, year = 1981, pages = {115-139}} @article{RosentalG77, author = {A. Rosental and A. Goldner}, title = {Smallest augmentations to biconnect a graph}, journal = siamjc, volume = 6, year = 1977, pages = {55-66}} %Rot @article{Roth96, author = {D. Roth}, title = {On the hardness of approximate reasoning}, journal = artint, volume = 82, pages = {273-302}, year = 1996} @techreport{Rote89, author = {G\"{u}nther Rote}, title = {Path Problems in Graphs}, number = {B-89-11}, year = 1989, institution = {Freie Universit\"{a}t Berlin}} %Ru %Rub @article{RubalcabaS08, author = {Robert R. Rubalcaba and Peter J. Slater}, title = {Roman dominating influence parameters}, journal = dm, volume = 307, year = 2007, pages = {3194-3200}} %Ruz @article{Ruzzo80, author = {W. L. Ruzzo}, title = {Tree-size bounded alternation}, journal = jcss, volume = 21, year = 1980, pages = {218-235}} %S %Sa %Sak @article{Sakai94, author = {D. Sakai}, title = {Labeling chordal graphs: {D}istance two condition}, journal = sjdm, volume = 7, year = 1994, pages = {133-140}} %Sal @article{SalamonW08, author = {G. Salamon and G. Wiener}, title = {On finding spanning trees with few leaves}, journal = ipl, volume = 105, year = 2008, pages = {164-169}} @article{Salavatipour04, author = {Mohammad R. Salavatipour}, title = {A polynomial time algorithm for strong edge coloring of partial $k$-trees}, journal = dam, volume = 143, year = 2004, pages = {285-291}} %Sam @article{SamerS10, author = {Marko Samer and Stefan Szeider}, title = {Algorithms for propositional model counting}, journal = jda, volume = 8, year = 2010, pages = {50-64}} @article{SamerS10a, author = {Marko Samer and Stefan Szeider}, title = {Constraint satisfaction with bounded treewidth revisited}, journal = jcss, volume = 76, year = 2010, pages = {103-114}} %San @article{Sanders96, author = {Daniel P. Sanders}, title = {On Linear Recognition of Tree-Width at Most Four}, journal = sjdm, volume = 9, number = 1, year = 1996, pages = {101-117}} @article{SantoroK85, author = {N. Santoro and R. Khatib}, title = {Labelling and Implicit Routing in Networks}, journal = tcj, volume = 28, year = 1985, pages = {5-8}} @inproceedings{Santos91, author = {Eugene Santos Jr.}, title = {On the generation of alternative explanations with implications for belief revision}, editor = {Bruce D'Ambrosio and Philippe Smets}, booktitle = uai91, year = 1991, pages = {339-347}, publisher = {Morgan Kaufmann}} %Sas @article{Sasatte08, author = {Prashant Sasatte}, title = {Improved {FPT} algorithm for feedback vertex set problem in bipartite tournament}, journal = ipl, volume = 105, year = 2008, pages = {79-82}} %Sat @techreport{SatyanP92, author = {C. R. Satyan and C. {Pandu Rangan}}, title = {Treewidth of bipartite permutation graphs}, number = {TR-TCS-92-8}, institution = {Indian Institute of Technology, Madras, India}, year = 1992} @article{SatyanarayanaT90, author = {A. Satyanarayana and L. Tung}, title = {A characterization of partial 3-trees}, journal = netw, volume = 20, year = 1990, pages = {299-322}} %Sau @misc{Saurabh09, author = {Saket Saurabh}, note = {Personal communication}, year = 2009} %Sax @article{Saxe80, author = {J. B. Saxe}, title = {Dynamic programming algorithms for recognizing small-bandwidth graphs in polynomial time}, journal = sjadm, volume = 1, year = 1980, pages = {363-369}} %Sc %Sch %Scha @article{Schaefer78a, author = {T. J. Schaefer}, title = {On the complexity of some two-person perfect-information games}, journal = jcss, volume = 16, year = 1978, pages = {185-225}} @inproceedings{Schaefer78b, author = {T. J. Schaefer}, title = {The complexity of satisfiability problems}, booktitle = stoc78, year = 1978, pages = {216-226}} @article{Schaffer89, author = {A. A. Sch\"{a}ffer}, title = {Optimal node ranking of trees in linear time}, journal = ipl, volume = 33, year = 1989, pages = {91-99}} %Sche %Scheffler 1986 @unpublished{SchefflerS86, author = {Petra Scheffler and Detlef Seese}, title = {A Combinatorial and Logical Approach to Linear-Time Computability }, note = {Extended abstract}, year = 1986 } %Scheffler 1987 @techreport{Scheffler87, author = {Petra Scheffler}, title = {Linear-time Algorithms for {NP}-complete Problems Restricted to Partial $k$-Trees}, type = {Report}, number = {R-MATH-03/87}, institution = {Karl-Weierstrass-Institut F\"ur Mathematik}, address = {Berlin, GDR}, year = 1987 } %Scheffler 1988 @inproceedings{Scheffler88, author = {Petra Scheffler}, title = {What graphs have bounded treewidth?}, year = 1988, booktitle = {Proc. 7th Fishland Coll. Discr. Math. and Appl.}, address = {Wustrow, Rostocker Mathematisches Kolloquium} } @unpublished{Scheffler88a, author = {Petra Scheffler}, title = {Linear-time Algorithms for Graphs of Bounded Tree-width. {T}he DISJOINT-PATHS-problem}, year = 1988, note = {Manuscript, to appear in Graphentheorie und Anwendungen} } %Scheffler 1989 @phdthesis{Scheffler89, author = {Petra Scheffler}, title = {Die {B}aumweite von {G}raphen als ein {M}a\ss \ f\"{u}r die {K}ompliziertheit algorithmischer {P}robleme}, school = {Akademie der Wissenschaften der DDR}, address = {Berlin}, year = 1989 } %Scheffler 1990 @inproceedings{Scheffler90, author = {Petra Scheffler}, title = {A linear algorithm for the pathwidth of trees}, booktitle = {Topics in combinatorics and graph theory}, editor = {R. Bodendiek and R. Henn}, publisher = {Physica-Verlag}, address = {Heidelberg}, year = {1990}, pages = {613-620}} %Scheffler 1994 @techreport{Scheffler94, author = {Petra Scheffler}, title = {A practical linear time algorithm for disjoint paths in graphs with bounded tree-width}, institution = {TU Berlin, Fachbereich Mathematik}, type={Report}, number = {396/1994}, address={Berlin}, year = 1994} %Schi @article{SchieberM89, author = {Baruch Schieber and Shlomo Moran}, title = {Parallel algorithms for maximum bipartite matchings and maximum 0-1 flows}, journal = jpdc, volume = 6, year = 1989 } @article{Schiermeyer08, author = {Ingo Schiermeyer}, title = {Efficiency in exponential time for domination-type problems}, journal = dam, volume = 156, year = 2008, pages = {3291-3297}} %Scho @inproceedings{Schoening05, author = {Uwe Sch\"{o}ning}, title = {Algorithmics in Exponential Time}, booktitle = stacs05, publisher = lncs3404, year = 2005, pages = {36-43}} @article{Schoening06, author = {Uwe Sch\"{o}ning}, title = {Smaller superconcentrators of density 28}, journal = ipl, volume = 28, pages = {127-129}, year = 2006} %Schr @book{Schrijver86, author = {Alexander Schrijver}, title = {Theory of Linear and Integer Programming}, publisher = {John Wiley \& Sons}, address = {Chichester}, year = 1986} @article{Schrijver91, author = {A. Schrijver}, title = {Disjoint Homotopic Paths and Trees in a Planar Graph}, journal = dcg, volume = 6, year = 1991, pages = {527-574}} @book{Schrijver03, author = {Alexander Schrijver}, title = {Combinatorial Optimization. Polyhedra and Efficiency}, year = 2003, publisher = {Springer}, address = {Berlin}} %Schw @article{SchwarzT06, author = {C. Schwarz and D. S. Troxell}, title = {{$L(2,1)$}-labelings of {C}artesian products of two cycles}, journal = dam, volume = 154, year = 2006, pages = {1522-1540}} @article{SchwikowskiS02, author = {Benno Schwikowski and Ewald Speckenmeyer}, title = {On enumerating all minimal solutions of feedback problems}, journal = dam, volume = 117, year = 2002, pages = {253-265}} %Se %See %Seese 1975 @article{Seese75, author = {Detlef Seese}, title = {Zur {E}ntscheidbarkeit der monadische {T}heorie 2. {S}tufe baumartiger {G}raphen}, journal = {W.Z. der Humbolt-Universit\"{a}t zu Berlin}, volume = {Math.-Nat. R. XXIV}, year = 1975, number = 6, pages = {768-772}} @article{Seese75a, author = {Detlef Seese}, title = {Ein {U}nentscheidbarkeitskriterium}, journal = {W.Z. der Humbolt-Universit\"{a}t zu Berlin}, volume = {Math.-Nat. R. XXIV}, year = 1975, number = 6, pages = {772-780}} %Seese 1979 @article{Seese79, author = {Detlef Seese}, title = {Some graph theoretical operations and decidability}, journal = {Mathematische Nachrichten}, volume = 87, year = 1979, pages = {15-21}} %Seese 1985 @inproceedings{Seese85, author = {Detlef Seese}, title = {Tree-partite graphs and the complexity of algorithms}, editor = {L. Budach}, year = 1985, booktitle = fct85, publisher = lncs199, pages = {412-421}} %Seese 1989 @unpublished{Seese89, author = {Detlef Seese}, title = {Interpretability and Tree Automata: A Simple Way to Solve Algorithmic Problems Closely Related to Graphs}, year = 1989, note = {Preprint}, pages = {1-63}} @unpublished{SeeseW89a, author = {Detlef G. Seese and W. Wessel}, title = {Graphminoren und Gitter, Zu einigen Arbeiten von N. Robertson und P. D. Seymour}, note = {Preprint}, pages = {1-77}, year = 1989} @article{SeeseW89, author = {Detlef G. Seese and W. Wessel}, title = {Grids and their minors}, journal = jctb, volume = 47, year = 1989, pages = {349-360}} %Seese 1991 @article{Seese91, author = {Detlef Seese}, title = {The structure of the models of decidable monadic theories of graphs}, journal = apal, volume = 53, year = 1991, pages = {169-195}} @unpublished{Seese91a, author = {Detlef Seese}, title = {Interpretability and Tree Automata: a Simple Way to Solve Algorithmic Problems on Graphs Closely Related to Trees}, year = 1991, note = {Manuscript}} %Seg @article{Segawa94, author = {Tomomi Segawa}, title = {Radius increase caused by edge deletion}, journal = {SUT Journal of Mathematics}, volume = 30, year = 1994, pages = {159-162}} %Set @article{Sethi75, author = {R. Sethi}, title = {Complete register allocation problems}, journal = siamjc, volume = 4, year = 1975, pages = {226-248}} %Sey %Seymour 1980 @article{Seymour80, author = {Paul D. Seymour}, title = {Disjoint paths in graphs}, journal = dm, volume = 29, year = 1980, pages = {293-309}} %Seymour 1989 %Seymour 1990 @article{Seymour90, author = {Paul D. Seymour}, title = {Colouring series-parallel graphs}, journal = comb, volume = 85, pages = {12-75}, year = 1990} %Seymour 1993 @article{SeymourT93, author = {Paul D. Seymour and Robin Thomas}, title = {Graph Searching and a Minimax Theorem for Tree-width}, journal = jctb, volume = 58, year = 1993, pages = {239-257}} %Seymour 1994 @article{SeymourT94, author = {Paul D. Seymour and Robin Thomas}, title = {Call routing and the ratcatcher}, journal = combinatorica, volume = 14, number = 2, year = 1994, pages = {217-241}} %Seymour 2006 %Note: this is a reissue of Seymour80: @article{Seymour06, author = {P. D. Seymour}, title = {Disjoint paths in graphs}, journal = dm, volume = 306, pages = {979-991}, year = 2006} %Sh %Sha @article{ShamirS04, author = {Ron Shamir and Roded Sharan}, title = {A fully dynamic algorithm for modular decomposition and recognition of cographs}, journal = dam, volume = 136, pages = {329-340}, year = 2004} @article{Shannon88, author = {Gregory E. Shannon}, title = {A Linear-Processor Algorithm for Depth-First Search in Planar Graphs}, journal = ipl, volume = 29, year = 1988, pages = {119-123}} @article{ShashaZ90, author = {Dennis Shasha and Kaizhong Zhang}, title = {Fast algorithms for the unit cost editing distance between trees}, journal = ja, volume = 11, year = 1990, pages = {581-621}} %Shc @Article{Shcherbina07, author = {O. A. Shcherbina}, title = {Tree Decompositions and Discrete Optimization Problems: {A} Survey}, journal = {Cybernetics and Systems Analysis}, year = {2007}, volume = {43}, number = {4}, pages = {549--562}, } %Shi @article{ShihH89, author = {W.-K. Shih and W.-L. Hsu}, title = {An $O(n log n + m log log n)$ maximum weight clique algorithm for circular-arc graphs}, journal = ipl, volume = 31, year = 1989, pages = {129-134}} @article{Shiloach79, author = {Y. Shiloach}, title = {A Minimum Linear Arrangement Algorithms for Undirected Trees}, journal = siamjc, volume = 8, pages = {15-32}, year = 1979 } @article{Shiloach79a, author = {Y. Shiloach}, title = {A polynomial solution to the undirected two paths problem}, journal = jacm, volume = 27, year = 1980, pages = {445-456}} @article{ShiloachV82, author = {Y. Shiloach and U. Vishkin}, title = {An {${O}(n \log n )$} parallel connectivity algorithm}, journal = ja, year = 1982, pages = {57-67}} @article{Shimony94, author = {S. E. Shimony}, title = {Finding {MAPs} for belief networks is {NP}-hard}, journal = artint, volume = 68, pages = {399-410}, year = 1994} %Sho @unpublished{ShoikhetG97a, author = {Kirill Shoikhet and Dan Geiger}, title = {Finding optimal triangulations via minimal vertex separators}, note = {Manuscript}, year = 1997} @inproceedings{ShoikhetG97, author = {Kirill Shoikhet and Dan Geiger}, title = {A practical algorithm for finding optimal triangulations}, booktitle = aaai97, publisher = {Morgan Kaufmann}, year = 1997, pages = {185-190}} %Si %Sid @article{Sidorowicz07, author = {E. Sidorowicz}, title = {The game chromatic number and the game colouring number of cactuses}, journal = ipl, volume = 102, year = 2007, pages = {147-151}} %Sie @Book{SiekLL01, author = {Jeremy G. Siek and Lie-Quan Lee and Andrew Lumsdaine}, title = {{The Boost Graph Library: User Guide and Reference Manual}}, publisher = {Addison-Wesley Professional}, year = {2001}, note = {Software available on \url{http://www.boost.org}}} %Sig @article{SigarretaR09, author = {J. M. Sigarreta and J. A. Rodr\'{\i}guez}, title = {On the global offensive alliance number of a graph}, journal = dam, volume = 157, year = 2009, pages = {219-226}} %Sim @phdthesis{Simon75, author = {J. Simon}, title = {On Some Central Problems in Computational Complexity}, school = {Cornell University}, address = {Ithaca, N.Y.}, year = 1975} @inproceedings{Simon77, author = {Janos Simon}, title = {On the difference between one and many}, booktitle = icalp77, publisher = lncs52, year = 1977, pages = {480-491}} @article{Simonovits67, author = {M. Simonovits}, title = {A new proof and generalizations of a theorem of {E}rd\"{o}s and {P}\'{o}sa on graphs without $k+1$ independent circuits}, journal = {Acta Mathematica Academiae Scientiarum Hungaricae}, volume = 18, year = 1976, pages = {191-206}} @phdthesis{Simonson86, author ={Shai Simonson}, title = {Layout Problems on Graphs}, school = {EECS Department, Northwestern University}, year = 1986} @article{Simonson87, author ={Shai Simonson}, title = {A variation on the Min Cut Linear Arrangement Problem}, journal = mst, volume = 20, year = 1987, pages = {235-252}} @article{SimonsonS92, author = {Shai Simonson and I. Hal Sudborough}, title = {On the complexity of tree embedding problems}, journal = ipl, volume = 44, year = 1992, pages = {323-328}} %Sk %Sko @article{Skodinis01, author = {Konstantin Skodinis}, title = {The complexity of the {$K_{n,n}$}-problem for node replacement graph languages}, journal = ic2, volume = 168, pages = {95-112}, year = 2001} @article{Skodinis03, author = {Konstantin Skodinis}, title = {Construction of linear tree-layouts which are optimal with respect to vertex separation in linear time}, journal = ja, volume = 47, pages = {40-59}, year = 2003} @inproceedings{Skowronska82, author = {M. Skoronska}, title = {Efficient vertex- and edge-coloring of {H}alin Graphs}, booktitle = {Proceedings of the 3rd Czechoslovak Symposium on Graph Theory}, address = {Prague}, year = 1982 } %Sl @article{Slisenko82, author = {A. O. Slisenko}, title = {Context-free graph grammars as a tool for describing polynomial-time subclasses of hard problems}, journal = ipl, year = 1982, pages = {52-56}, volume = 14} %Sn @phdthesis{Snir04, author = {S. Snir}, title = {Computational Issues in Phylogenetic Reconstruction: Analytic Maximum Likelihood Solutions, and Convex Recoloring}, school = {Department of Computer Science, Technion}, address = {Haifa, Israel}, year = 2004} %So @inproceedings{SongLMPC05, author = {Y. Song and C. Liu and R. Malmberg and F. Pan and L. Cai}, title = {Tree Decomposition Based Fast Search of {RNA} Structures Including Pseudoknots in Genomes}, booktitle = {Proceedings of the 2005 IEEE Computational Systems Bioinformatics Conference, CSB'05}, year = {2005}, isbn = {0-7695-2344-7}, pages = {223--234}, doi = {http://dx.doi.org/10.1109/CSB.2005.52}, publisher = {IEEE Computer Society}, address = {Washington, DC, USA}, } %Sp %Spi @article{Spinrad91, author = {Jeremy P. Spinrad}, title = {Finding large holes}, journal = ipl, volume = 39, year = 1991, pages = {227-229}} @article{Spinrad94, author = {Jeremy P. Spinrad}, title = {Recognition of circle graphs}, journal = ja, volume = 16, year = 1994, pages = {264-282}} %Spr @article{Sprague94, author = {A. P. Sprague}, title = {An {$O(n \log n)$} algorithm for the bandwidth of interval graphs}, journal = sjdm, volume = 7, year = 1994, pages = {213-220}} %Sr %Sre @article{Srebo03, author = {N. Srebo}, title = {Maximum likelihood bounded tree-width Markov networks}, journal = ai, volume = 143, pages = {123-138}, year = 2003} %Sri @inproceedings{SrinivasN96, author = {Shenoy Srinivas and Pandurang Nayak}, title = {Efficient enumeration of instantiations of {B}ayesian networks}, editor = {Eric Horvitz and Finn Verner Jensen}, booktitle = uai96, year = 1996, pages = {500-508}, publisher = {Morgan Kaufmann}} %St %Sta @inproceedings{Stamm90, author = {Hermann Stamm}, title = {On feedback problems in planar digraphs}, editor = {Rolf M\"{o}hring}, booktitle = wg90, publisher = lncs484, pages = {79-89}, year = 1991} %Ste @article{StearnsH96, author = {Richard E. Stearns and Harry B. {Hunt III}}, title = {An algebraic model for combinatorial problems}, journal = siamjc, volume = 25, year = 1996, pages = {448-476}} @article{StearnsH02, author = {Richard E. Stearns and Harry B. {Hunt III}}, title = {Exploiting structure in quantified formulas}, journal = ja, volume = 43, year = 2002, pages = {220-263}} @article{Steel92, author="M. Steel", title="The complexity of reconstructing trees from qualitative characters and subtrees", journal="J. of Classification", volume="9", year="1992", pages="91--116" } @unpublished{Stewart88?, author = {Iain A. Stewart}, title = {Colouring perfect planar graphs in parallel}, year = 1988, note = {Manuscript} } %Sto @article{Stockmeyer76, author = {L. J. Stockmeyer}, title = {The polynomial-time hierarchy}, journal = tcs, year = 1976, volume = 3, pages = {1-22}} @article{StockmeyerC79, author = {L. J. Stockmeyer and A. K. Chandra}, title = {Provably difficult combinatorial games}, journal = siamjc, volume = 8, pages = {151-174}, year = 1979 } @article{Storer83, author = {J. A. Storer}, title = {On the complexity of chess}, journal = jcss, volume = 27, pages = {77-100}, year = 1983} %Str @article{Strassen69, author = {V. Strassen}, title = {Gaussian elimination is not optimal}, journal = {Numerische Mathematik}, volume = 14, year = 1969, pages = {354-356}} %Su %Suc @article{SuchanT07, author = {Karol Suchan and Ioan Todinca}, title = {On powers of graphs of bounded NLC-width (clique-width)}, journal = dam, volume = 155, year = 2007, pages = {1885-1893}} @article{SuchanT09, author = {Karol Suchan and Ioan Todinca }, title = {Minimal interval completion through graph exploration}, journal = tcs, volume = 410, year = 2009, pages = {35-43}} @unpublished{SuchanV09, author = {Karol Suchan and Yngve Villanger}, title = {Computing pathwidth faster than $2^n$}, year = 2009, note = {To appear in Proceedings IWPEC 2009}} %Sud @article{Sudborough87, author = {Ivan Hal Sudborough}, title = {``{C}utwidth'' and Related Graph Problems}, journal = beatcs, pages = {79-110}, year = 1987, month = 2 } %Sug @article{SugiharaS89, author = {Kazuo Sugihara and Ichiro Suzuki}, title = {Optimal algorithms for a pursuit-evasion problem in grids}, journal = sjdm, volume = 2, year = 1989, pages = {126-143}} %Sun @article{SundaramSR94, author = {Ravi Sundaram and Karan {Sher Singh} and C. {Pandu Rangan}}, title = {Treewidth of circular-arc graphs}, year = 1994, journal = sjdm, volume = 7, pages = {647-655}} %Suz @article{SuzukiTN90, author = {H. Suzuki and N. Takahashi and Takao Nishizeki}, title = {A linear algorithm for bipartition of biconnected graphs}, journal = ipl, volume = 33, pages = {227-231}, year = 1990 } %Sy @inproceedings{Sy92, author = {Bon K. Sy}, title = {Reasoning {MPE} to multiply connected belief networks using message passing}, booktitle = aaai92, publisher = {AAAI Press}, year = 1992, pages = {570-576}} %Sys @article{Syslo79, author = {Maciej M. Sys{\l}o}, title = {Characterisations of outerplanar graphs}, journal = dm, volume = 26, year = 1979, pages = {47-53}} @article{Syslo82, author = {Maciej M. Sys{\l}o}, title = {The subgraph isomorphism problem for outerplanar graphs}, journal = tcs, volume = 17, year = 1982, pages = {91-97}} @article{Syslo82b, author = {Maciej M. Sys{\l}o}, title = {A labeling algorithm to recognize a line graph and output its root graph}, journal = ipl, volume = 15, year = 1982, pages = {28-30}} @inproceedings{Syslo83, author = {Maciej M. Sys{\l}o}, title = {{NP}-Complete Problems On Some Tree-Structured Graphs: A Review}, editor = {M. Nagl and J. Perl}, booktitle = wg83, year = 1983, pages = {342-353}, publisher = {University Verlag Rudolf Trauner}, address = {Linz, West Germany}} @inproceedings{SysloP83, author = {Maciej M. Sys{\l}o and Andrzej Proskurowski}, title = {On {H}alin graphs}, booktitle = {Graph Theory, Lagow, 1981}, publisher = lncs1018, pages = {248-256}, year = 1983} @article{Syslo84, author = {Maciej M. Sys{\l}o}, title = {Series-parallel graphs and depth-first search trees}, journal = ieeetcs, volume = {CAS-31}, number = 12, year = 1984, month = {12}, pages = {1029-1033}} @inproceedings{Syslo86, author = {Maciej M. Sys{\l}o}, title = {On Some Generalizations of Outerplanar Graphs: Results and Open Problems}, editor = {G. Tinhofer and G. Schmidt}, booktitle = wg86, publisher = lncs246, year = 1986, pages = {146-164}} %Sz @article{SzekeresW68, author = {G. Szekeres and H. S. Wilf}, title = {An inequality for the chromatic number of a graph}, journal = jct, volume = 4, year = 1968, pages = {1-3}} %T %Ta %Tak @article{TakahashiUK91, author = {Atsushi Takahashi and Shuichi Ueno and Yoji Kajitani}, title = {Minimal Acyclic Forbidden Minors for the Family of Graphs with Bounded Path-Width}, journal = dm, pages={293 - 304}, volume = 127, number = {1/3}, year = 1994} @article{TakahashiUK91a, author = {Atsushi Takahashi and Shuichi Ueno and Yoji Kajitani}, title = {Mixed-Searching and Proper-Path-Width}, journal = tcs, volume = 137, year = 1995, pages = {253-268}} @article{TakahashiUK95, author = {Atsushi Takahashi and Shuichi Ueno and Yoji Kajitani}, title = {Mixed-Searching and Proper-Path-Width}, journal = tcs, volume = 137, year = 1995, pages = {253-268}} @article{TakahashiUK95a, author = {Atsushi Takahashi and Shuichi Ueno and Yoji Kajitani}, title = {Minimal forbidden minors for the family of graphs with proper-path-width at most two}, journal = {IEICE Trans. Fund.}, volume = {E78-A}, year = 1995, pages = {1828-1839}} @article{TakamizawaNS82, author = {K. Takamizawa and Takao Nishizeki and N. Saito}, title = {Linear-time computability of combinatorial problems on series-parallel graphs}, journal = jacm, volume = 29, year = 1982, pages = {623-641}} @article{Takaoka92, author = {Tadao Takaoka}, title = {A new upper bound on the complexity of the all pairs shortest path problem}, journal = ipl, volume = 43, year = 1992, pages = {195-199}} %Tam @article{Tamassia87, author = {R. Tamassia}, title = {On embedding a graph in the grid with the minimum number of bends}, journal = siamjc, volume = 16, pages = {421-444}, year = 1987} %Tan @article{Tan91, author = {Jimmy J. M. Tan}, title = {A necessary and sufficient condition for the existence of a complete stable matching}, journal = ja, volume = 12, year = 1991, pages = {154-178}} %Tar %Tarjan 1972 @article{Tarjan72, author = {Robert Endre Tarjan}, title = {Depth first search and linear graph algorithms}, journal = siamjc, volume = 1, year = 1972, pages = {146-160}} @techreport{Tarjan72a, author = {Robert Endre Tarjan}, title = {Finding a maximum clique}, type = {Technical report}, institution = {Department of Computer Science, Cornell University, Ithaca, NY}, year = 1972} %Tarjan 1974 @article{Tarjan74, author = {Robert Endre Tarjan}, title = {A note on finding the bridges of a graph}, journal = ipl, volume = 2, year = 1974, pages = {160-161}} %Tarjan 1975 @article{Tarjan75, author = {R. E. Tarjan}, title = {Efficiency of a good but not linear set union algorithm}, journal = jacm, volume = 22, year = 1975, pages = {215-225}} %Tarjan 1975 @article{TarjanT77, author = {R. E. Tarjan and A. Trojanowski}, title = {Finding a maximum independent set}, journal = siamjc, volume = 6, year = 1977, pages = {537-546}} %Tarjan 1983 @book{Tarjan83, author = {Robert Endre Tarjan}, title = {Data Structures and Network Algorithms}, publisher = {SIAM}, address = {Philadelphia, PA}, year = 1983 } %Tarjan 1984 @article{TarjanY84, author = {Robert Endre Tarjan and Mihalis Yannakakis}, title = {Simple linear time algorithms to test chordiality of graphs, test acyclicity of graphs, and selectively reduce acyclic hypergraphs}, journal = siamjc, volume = 13, pages = {566-579}, year = 1984 } %Tarjan 1985 @article{Tarjan85, author = {Robert Endre Tarjan}, title = {Decomposition by clique separators}, journal = dm, volume = 55, year = 1985, pages = {221-232}} @article{TarjanV85, author = {Robert Endre Tarjan and Uzi Vishkin}, title = {An efficient parallel biconnectivity algorithm}, journal = siamjc, volume = 14, number = 4, year = 1985, pages = {862-874}} @book{TarskiMR53, author = {A. Tarski and A. Mostowski and R. M. Robinson}, title = {Undecidable Theories}, publisher = {North-Holland Publishing Company}, year = 1953, pages = {xi+98 pp.}} %Taz @article{TazariM09, author = {Siamak Tazari and Matthias M\"{u}ller-Hannemann}, title = {Shortest paths in linear time on minor-closed graph classes, with an application to {S}teiner tree approximation}, journal = dam, volume = 157, year = 2009, pages = {673-684}} %Te %Tel %Telle 1993 @article{TelleP93, author = {Jan Telle and Andrzej Proskurowski}, title = {Efficient Sets in Partial $k$-Trees}, journal = dam, volume = 44, year = 1993, pages = {109-117}} @inproceedings{TelleP93a, author = {Jan Telle and Andrzej Proskurowski}, title = {Practical algorithms on partial $k$-trees with an application to domination-like problems}, editor = {Frank K. H. A. Dehne and J\"{o}rg-R\"{u}diger Sack and Nicola Santoro and Sue Whitesides}, booktitle = wads93, publisher = lncs709, year = 1993, pages = {610-621}} %Telle 1994 @phdthesis{Telle94, author = {Jan Arne Telle}, title = {Vertex Partitioning Problems: Characterization, Complexity and Algorithms on Partial $k$-Trees}, school = {Department of Computer and Information Science, University of Oregon}, address = {Eugene, Oregon, USA}, year = 1994} @article{Telle94a, author = {Jan Arne Telle}, title = {Complexity of Domination-Type Problems in Graphs}, journal = nordicjc, volume = 1, year = 1994, pages = {157-171}} %Telle 1997 @article{TelleP97, author = {Jan Arne Telle and Andrzej Proskurowski}, title = {Algorithms for vertex partitioning problems on partial $k$-trees}, journal = sjdm, volume = 10, year = 1997, pages = {529 - 550}} %Telle 2005 @article{Telle01, author = {Jan Arne Telle}, title = {Tree-decompositions of small pathwidth}, journal = dam, volume = 145, year = 2005, pages = {210-218}} %Th %Tha @article{ThatcherW68, author = {J. W. Thatcher and J. B. Wright}, title = {Generalized Finite Automata Theory with an Application to a Decision Problem in Second-Order Logic}, journal = mst, volume = 2, year = 1988, pages = {57-81}} %Thi %Thilikos 1997 @techreport{Thilikos97, author = {Dimitrios M. Thilikos}, title = {Algorithms and Obstructions for Linear-Width and Related Search Parameters}, number = {UU-CS-97-35}, year = 1997, institution = {Department of Computer Science, Utrecht University}, address = {Utrecht}, type = {Technical Report}} @article{ThilikosB97, author = {Dimitrios M. Thilikos and Hans L. Bodlaender}, title = {Fast partitioning $l$-apex graphs with applications to approximating maximum induced-subgraph problems}, journal = ipl, volume = 61, pages = {227-232}, year = 1997} %Thilikos 1999 @article{Thilikos99, author = {Dimitrios M. Thilikos}, title = {Quickly excluding $K_{2,r}$ from planar graphs}, journal = {Electronic Notes in Discrete Mathematics}, year = 1999, volume = 3, pages = {189-194}} %Thilikos 2000 @article{Thilikos00, author = {Dimitrios M. Thilikos}, title = {Algorithms and obstructions for linear-width and related search parameters}, journal = dam, volume = 105, year = 2000, pages = {239-271}} @techreport{ThilikosSB00, author = {Dimitrios M. Thilikos and Maria J. Serna and Hans L. Bodlaender}, title = {A constructive linear time algorithm for small cutwidth}, institution = {Departament de Llenguatges i Sistemes Informatics, Universitat Politecnica de Catalunya}, address = {Barcelona, Spain}, number = {LSI-00-48-R}, year = 2000 } @inproceedings{ThilikosSB00a, author = {Dimitrios M. Thilikos and Maria J. Serna and Hans L. Bodlaender}, title = {Constructive linear time algorithms for small cutwidth and carving-width}, editor = {D.T. Lee and Shang-Hua Teng}, booktitle = isaac00, publisher = lncs1969, pages = {192--203}, year = {2000}} %Thilikos 2005 @article{ThilikosSB05, author = {Dimitrios M. Thilikos and Maria J. Serna and Hans L. Bodlaender}, title = {Cutwidth {I}: {A} linear time fixed parameter algorithm}, journal = ja, volume = 56, pages = {1-24}, year = 2005} @article{ThilikosSB05a, author = {Dimitrios M. Thilikos and Maria J. Serna and Hans L. Bodlaender}, title = {Cutwidth {II}: {Algorithms} for partial $w$-trees of bounded degree}, journal = ja, volume = 56, pages = {25-49}, year = 2005} %Tho @article{Thomas85, author = {Robin Thomas}, title = {Graphs without {$K_4$} and well-quasi-ordering}, journal = jctb, volume = 38, pages = {240-247}, year = 1985} @article{Thomas90, author = {Robin Thomas}, title = {A {M}enger-like property of tree-width. {T}he finite case}, journal = jctb, volume = 48, pages = {67-76}, year = 1990} @article{Thomason84, author = {Andrew Thomason}, title = {An extremal function for contraction of graphs}, journal = {Mathematical Proceedings of the Cambridge Philosophical Society}, year = 1984, volume = 95, pages = {261-265}} @inproceedings{Thomasse09, author = {St\'{e}phan Thomass\'{e}}, title = {A quadratic kernel for Feedback Vertex Set}, booktitle = soda09, pages = {115-119}, year = 2009} @unpublished{Thomassen87, author = {C. Thomassen}, title = {Embeddings and Minors}, note = {Manuscript, to appear in Handbook of Combinatorics, ed. by R. L. Graham, M. Gr\"{o}tschel and L. Lovasz, North Holland}, year = 1987, something = {Mat-Report No. 1987-10, pp. 1-63}} @article{Thomassen89, author = {Carsten Thomassen}, title = {The graph genus problem is {NP}-complete}, journal = ja, volume = 10, year = 1989, pages = {568-576}} @article{Thomassen97, author = {Carsten Thomassen}, title = {A Simpler Proof of the Excluded Minor Theorem for Higher Surfaces}, journal = jctb, volume = 70, year = 1997, pages = {306-311}} @article{Thorup98, author = {Mikkel Thorup}, title = {Structured Programs have Small Tree-Width and Good Register Allocation}, journal = ic2, volume = 142, year=1998, pages = {159-181}} %To %Tod @article{Toda91, author = {S. Toda}, title = {PP is as hard as the polynomial-time hierarchy}, journal = siamjc, volume = 20, year = 1991, pages = {865-877}} @article{TodaO92, author = {S. Toda and M. Ogiwara}, title = {Counting classes are at least as hard as the polynomial-time hierarchy}, journal = siamjc, volume = 21, year = 1992, pages = {316-328}} @article{Toda94, author = {Seinosuke Toda}, title = {Simple characterizations of {P($\#$P)} and complete problems}, journal = jcss, volume = 49, year = 1994, pages = {1-17}} %Tog @article{TogasakiY02, author = {Mitsunori Togasaki and Koichi Yamazaki}, title = {Pagenumber of pathwidth-$k$ graphs and strong pathwidth-$k$ graphs}, journal = dm, volume = 259, year = 2002, pages = {361-368}} %Tor @article{Toran91, author = {S. Toran}, title = {Complexity classes defined by counting quantifiers}, journal = jacm, volume = 38, year = 1991, pages = {752-773}} @article{TorreGS92, author = {Pilar {de la Torre} and Raymond Greenlaw and Alejandro A. Sch\"{a}ffer}, title = {Optimal Tree Ranking is in {{\cal NC}}}, journal = ipl, volume = 2, number = 1, year = 1992, pages = {31-41}} @techreport{TorreGS93, author = {Pilar {de la Torre} and Raymond Greenlaw and Alejandro A. Sch\"{a}ffer}, title = {A Note on {D}eogun and {P}eng's Edge Ranking Algorithm}, type = {Technical Report}, number = {93-13}, institution = {Department of Computer Science, University of New Hampshire}, address = {Durham, New Hampshire, USA}, year = 1993} @article{TorreGS95, author = {Pilar {de la Torre} and Raymond Greenlaw and Alejandro A. Sch\"{a}ffer}, title = {Optimal edge ranking of trees in polynomial time}, journal = alg, volume = 13, year = 1995, pages = {592-618}} %Tr %Tra @article{Traldi06, author = {Lorenzo Traldi}, title = {On the colored {T}utte polynomial of a graph of bounded treewidth}, journal = dam, volume = 154, year = 2006, pages = {1032-1036}} %Ts @article{TsinC84, author = {Yung H. Tsin and Franciss Y. Chin}, title = {Efficient parallel algorithms for a class of graph theoretic problems}, journal = siamjc, volume = 13, year = 1984, pages = {580-599}} %Tu %Tuc @article{Tucker80, author = {A. Tucker}, title = {An efficient test for circular-arc graphs}, journal = siamjc, volume = 9, pages = {1-24}, year = 1980 } @article{Tucker84, author = {A. Tucker}, title = {An ${O}(n^2)$ algorithm for coloring perfect planar graphs}, journal = ja, volume = 5, year = 1984, pages = {60-68}} %Tur @article{Turing36, author = {Alan Turing}, title = {On computable numbers, with an application to the {E}ntscheidungsproblem}, journal = {Proceedings of the London Mathematical Society Series 2}, volume = 42, year = 1936, pages = {230-265}} %Tut @article{Tutte54, author = {W. T. Tutte}, title = {A short proof of the factor theorem for finite graphs}, journal = {Canadian Journal of Mathematics}, volume = 6, year = 1954, pages = {347-352}} @article{Tutte60, author = {W. T. Tutte}, title = {Convex representations of graphs}, journal = {Proceedings of the London Mathematical Society}, volume = 10, year = 1960, pages = {304-320}} @book{Tutte84, author = {W. T. Tutte}, title = {Graph Theory}, series = {Encyclopedia of Mathematics and Its Applications}, volume = 21, year = 1984, publisher = {Addison-Wesley}, address = {Menlo Park, CA}} %Tuz @unpublished{TuzaL??, author = {Zsolt Tuza and Aristid Lindenmayer}, title = {Locally Generated Colourings of Hexagonal Cell Division Patterns: Application to Retinal Cell Differentiation}, note = {Manuscript. To appear in: Memorial Vol.? for A. Lindenmayer}} @article{Tuza04, author = {Zsolt Tuza}, title = {Strong branchwidth and local transversals}, journal = dam, volume = 145, pages = {291-296}, year = 2004} %U %Ue %Ueh @article{UeharaU07, author = {Ryuhei Uehara and Yushi Uno}, title = {On computing longest paths in small graph classes}, journal = ijfcs, year = 2007, volume = 18, pages = {911-930}} @inproceedings{Uehara08, author = {Ryuhei Uehara}, title = {Bandwidth of bipartite permutation graphs}, editor = {Seok-Hee Hong and Hiroshi Nagamochi and Takuro Fukunaga}, booktitle = isaac08, year = 2008, publisher = lncs5369, pages = {824-835}} %Un %Ung @article{Ungar51, author = {P. Ungar}, title = {A theorem on planar graphs}, journal = {Journal of the London Mathematical Society}, volume = 26, year = 1951, pages = {256-262}} %V %Va %Val @article{ValdesTL82, author = {J. Valdes and Robert Endre Tarjan and Eugene L. Lawler}, title = {The recognition of series parallel digraphs}, journal = siamjc, volume = 11, pages = {298-313}, year = 1982 } @article{Valiant79, author = {Leslie Valiant}, title = {The complexity of enumeration and reliability problems}, journal = siamjc, volume = 6, year = 1979, pages = {410-421}} @article{Valiant79a, author = {Leslie Valiant}, title = {The complexity of computing the permanent}, journal = tcs, volume = 8, year = 1979, pages = {189-201}} %Van @article{VanEmdeBoasKZ84, author = {P. {van {Emde Boas}} and R. Kaas and E. Zijlstra}, title = {Design and implementation of an efficient priority queue}, journal = mst, volume = 10, year = 1984, pages = {99-127}} %Vas @article{Vassilevska09, author = {Virginia Vassilevska}, title = {Efficient algorithms for clique problems}, journal = ipl, year = 2009, volume = 109, pages = {254-257}} %Vaz @article{Vazirani89, author = {Vijay V. Vazirani}, title = {{NC} Algorithms for Computing the Number of Perfect Matchings in {$K_{3,3}$}-Free Graphs and Related Problems}, journal = ic2, volume = 80, year = 1989, pages = {152-164}} %Vi %Vil @techreport{Villanger05, author = {Yngve Villanger}, title = {Counting and listing all potential maximal cliques of a graph}, institution = {Department of Informatics, University of Bergen}, address = {Bergen, Norway}, type = {Reports in Informatics}, number = {302}, year = 2005} @article{Villanger06, author = {Yngve Villanger}, title = {{Lex M versus MCS-M}}, journal = dm, volume = 306, year = 2006, pages = {393-400}} @inproceedings{Villanger06a, author = {Yngve Villanger}, title = {Improved exponential-time algorithms for treewidth and minimum fill-in}, editor = {Jos\'{e} R. Correa and Alejandro Hevia and Marcos A. Kiwi}, booktitle = latin06, publisher = lncs3887, year = 2006, pages = {800--811}} @article{VillangerHPT09, author = {Yngve Villanger and Pinar Heggernes and Christophe Paul and Jan Arne Telle}, title = {Interval completion is fixed parameter tractable}, journal = siamjc, volume = 38, year = 2009, pages = {2007-2020}} %Vo @article{Vogler93, author = {Walter Vogler}, title = {On Hyperedge Replacement and {BNLC} Graph Grammars}, journal = dam, volume = 46, pages = {253-273}, year = 1993} %W %Wa %Wag @article{Wagner37a, author = {K. Wagner}, title = {{\"U}ber eine {E}rweiterung eines {S}atzes von {K}uratowski}, journal = {Deut.\ Math.}, volume = 2, year = 1937, pages = {280-285}} @article{Wagner37, author = {K. Wagner}, title = {{\"U}ber eine {E}igenshaft der Ebenen {C}omplexe}, journal = {Math. Ann.}, volume = 14, year = 1937, pages = {570-590}} @inproceedings{WagnerW93, author = {D. Wagner and K. Weihe}, title = {A linear-time algorithm for edge-disjoint paths in planar graphs}, editor = {Thomas Lengauer}, booktitle = esa93, year = 1993, pages = {384-395}, publisher = lncs726} %Wal @article{WaldC83, author = {J. A. Wald and Charles J. Colbourn}, title = {Steiner Trees, Partial 2-Trees, and Minimum {IFI} Networks}, journal = netw, year = 1983, volume = 13, pages = {159-167}} @inproceedings{WaldC82, author = {J. A. Wald and Charles J. Colbourn}, title = {Steiner trees in outerplanar graphs}, booktitle = {Proceedings of the 13th Southeastern Conf. on Combinatorics, Graph Theory, and Computing}, publisher = {Utilitas Mathematica Publishing, Winnipeg, Ont.}, year = 1982 } @article{Walter78, author = {J. Walter}, title = {Representations of chordal graphs as subgraphs of a tree}, journal = jgt, volume = 2, year = 1978, pages = {265-267}} %Wan %Wang %Wang 2008 @article{WangLL08, author = {Rui Wang and Francis C. M. Lau and Yan Yan Liu}, title = {On the hardness of minimizing space for all-shortest-path interval routing schemes}, journal = tcs, volume = 389, year = 2008, pages = {250-264}} %Wang 2010 @article{WangNFC10, author = {Jianxin Wang and Dan Ning and Qilong Feng and Jianer Chen}, title = {An improved kernelization for {$P_2$}-packing}, journal = ipl, volume = 110, year = 2010, pages = {188-192}} %Wank @article{WankeW89, author = {Egon Wanke and Manfred Wiegers}, title = {Undecidability of the bandwidth problem on linear graph languages}, journal = ipl, volume = 33, year = 1989, pages = {193-197}} @techreport{Wanke91, author = {Egon Wanke}, title = {$k$-{NLC} Graphs and polynomial algorithms}, number = {80}, type = {Bericht, Reihe Informatik}, institution = {Universit\"{a}t Paderborn}, year = 1991, pages = {1-19}} @article{Wanke94, author = {Egon Wanke}, title = {Bounded Tree-width and {LOGCFL}}, journal = ja, volume = 16, year = 1994, pages = {470-491}} @article{Wanke94a, author = {Egon Wanke}, title = {$k$-NLC graphs and polynomial algorithms}, journal = dam, volume = 54, year = 1994, pages = {251-266}} @article{Wanless01, author = {I. M. Wanless}, title = {Path achievement games}, journal = {Austalasian Journal of Combinatorics}, volume = 23, year = 2001, pages = {9-18}} %Wax @article{WaxmanI88, author = {Bernard M. Waxman and Makoto Imase}, title = {Worst-case performance of {R}ayward-{S}mith's {S}teiner tree heuristic}, journal = ipl, volume = 29, year = 1988, pages = {283-287}} %We %Wei @article{WeifanY06, author = {Wang Weifan and Wang Yiqiao}, title = {$L(p,q)$-labeling of {$K_4$}-minor free graphs}, journal = ipl, volume = 98, year = 2006, pages = {169-173}} %Wen @inproceedings{Wen90, author = {W. X. Wen}, title = {Optimal decomposition of belief networks}, editor = {P. P. Bonissone and M. Henrion and L. N. Kanal and J. F. Lemmer}, booktitle = uai90, year = 1990, pages = {245--256}, publisher = {Elsevier}} %Wes @book{West01, author = {D. B. West}, title = {Introduction to graph theory}, publisher = {Prentice Hall}, year = {2001}} @article{WestbrookT92, author = {J. Westbrook and R. E. Tarjan}, title = {Maintaining bridge-connected and biconnected components on line}, journal = alg, volume = 7, year = 1992, pages = {433-464}} %Wh %Whi @article{WhiteFP85, author = {K. White and M. Farber and W. Pulleyblank}, title = {Steiner tress, connected domination and strongly chordal graphs}, journal = networks, volume = 15, year = 1985, pages = {109-124}} @article{Whitesides81, author = {S. Whitesides}, title = {An algorithm for finding clique cutsets}, journal = ipl, volume = 12, year = 1981, pages = {31-32}} %Wi %Wid @inproceedings{Widmayer86, author = {P. Widmayer}, title = {On approximation algorithm for {S}teiner's problem in graphs}, editor = {G. Tinhofer and G. Schmidt}, booktitle = wg86, publisher = lncs246, year = 1986, pages = {17-28}} %Wie @inproceedings{Wiegers86, author = {Manfred Wiegers}, title = {Recognizing Outerplanar Graphs in Linear Time}, editor = {G. Tinhofer and G. Schmidt}, booktitle = wg86, publisher = lncs246, year = 1986, pages = {165-176}} @inproceedings{WiegersM88, author = {Manfred Wiegers and Burkhard Monien}, title = {Bandwidth and Profile Minimization}, editor = {J. van Leeuwen}, booktitle = wg88, publisher = lncs344, pages = {378-393}, year = 1988} @inproceedings{Wiegers90, author = {Manfred Wiegers}, title = {The $k$-section of treewidth restricted graphs}, editor = {B. Rovan}, booktitle = mfcs90, publisher = lncs452, year = 1990, pages = {530-537}} %Wil @article{Wilf87, author = {H. Wilf}, title = {Finite Lists of Obstructions}, journal = amm, volume = 94, year = 1987, pages = {267-271}} @article{Williams09, author = {Ryan Williams}, title = {Finding paths of length $k$ in {$O^\ast(2^k)$} time}, journal = ipl, volume = 109, year = 2009, pages = {315-318}} @article{Williamson84, author = {S. G. Williamson}, title = {Depth-first search and {K}uratowski subgraphs}, journal = jacm, volume = 31, year = 1984, pages = {681-693}} %Wim @article{WimerHL85, author = {T. V. Wimer and S. T. Hedetniemi and R. Laskar}, title = {A methodology for constructing linear graph algorithms}, journal = cn, volume = 50, year = 1985, pages = {43-60}} @techreport{WimerH86, author = {T. V. Wimer and S. T. Hedetniemi}, title = {$k$-Terminal Recursive Families of Graphs}, institution = {Clemson University}, year = 1986 } @phdthesis{Wimer87, author = {T. V. Wimer}, title = {Linear Algorithms on $k$-Terminal Graphs}, school = {Dept. of Computer Science, Clemson University}, year = 1987 } @article{Wimer87a, author = {T. V. Wimer}, title = {Linear algorithms for the dominating cycle problems in series-parallel graphs, 2-trees and {H}alin graphs}, year = 1987, journal = cn, volume = 56 } %Win @article{Winter85, author = {Pawel Winter}, title = {Generalized {S}teiner problem in outerplanar graphs}, journal = bit, volume = 25, year = 1985, pages = {485-496}} @article{Winter86, author = {Pawel Winter}, title = {Generalized Steiner problem in {H}alin networks}, journal = ja, volume = 7, year = 1986, pages = {549-566}} @article{Winter87, author = {P. Winter}, title = {Steiner problem in networks: {A} survey}, journal = netw, volume = 17, year = 1987, pages = {129-167}} %Wo %Woe @inproceedings{Woeginger03, author = {Gerhard J. Woeginger}, title = {Exact algorithms for {NP}-hard problems: {A} survey}, booktitle = {Combinatorial Optimization: ''Eureka, you shrink''}, publisher = {Springer Lecture Notes in Computer Science, vol.~2570}, address = {Berlin}, year = 2003, pages = {185-207}} @inproceedings{Woeginger04, author = {Gerhard J. Woeginger}, title = {Space and time complexity of exact algorithms: some open problems (invited talk)}, editor = {R. G. Downey and M. R. Fellows}, booktitle = iwpec04, publisher = lncs3162, year = 2004, pages = {281-290}} @article{Woeginger08, author = {Gerhard J. Woeginger}, title = {Open problems around exact algorithms}, journal = dam, volume = 156, year = 2008, pages = {397-405}} %Wol @techreport{WolleKB04, author = {Thomas Wolle and Arie M. C. A. Koster and Hans L. Bodlaender}, title = {A Note on Contraction Degeneracy}, institution = {Institute of Information and Computing Sciences, Utrecht University}, address = {Utrecht, The Netherlands}, year = 2004, type = {Technical Report}, number = {UU-CS-2004-042}} @techreport{WolleB04, author = {Thomas Wolle and Hans L. Bodlaender}, title = {A Note on Edge Contraction}, institution = {Institute of Information and Computing Sciences, Utrecht University}, address = {Utrecht, The Netherlands}, year = 2004, type = {Technical Report}, number = {UU-CS-2004-028}} @phdthesis{Wolle05, author = {Thomas Wolle}, title = {Computational Aspects of Treewidth. {L}ower Bounds and Network Reliability}, school = {Faculty of Science, Utrecht University}, address = {Utrecht, the Netherlands}, year = 2005} %Woo @inproceedings{Wood02, author = {David R. Wood}, title = {Queue layouts, tree-width, and three-dimensional graph drawing}, booktitle = fsttcs02, pages = {348-359}, year = 2002, publisher = lncs2556} @inproceedings{WoodT06, author = {David R. Wood and Jan Arne Telle}, title = {Planar decompositions and the crossing number of graphs with an excluded minor}, editor = {Michael Kaufmann and Dorothea Wagner}, booktitle = gd06, year = 2006, publisher = lncs4372, pages = {150-161}} %Wu @article{WuZ08, author = {Jiaojiao Wu and Xuding Zhu}, title = {Lower bounds for the game colouring number of partial $k$-trees and planar graphs}, journal = dm, volume = 308, year = 2008, pages = {2637-2642}} %Wul @article{WuDJLH06, author = {Weili Wul and Hongwei Dul and Xiaohua Jial and Yingshu Li and Scott C.-H. Huang}, title = {Minimum connected dominating sets and maximal independent sets in unit disk graphs}, journal = tcs, volume = 352, pages = {1-7}, year = 2006} %X %Xi %Xin @article{XingCC06, author = {Hua-Ming Xing and Xin Chen and Xue-Gang Chen}, title = {A note on {R}oman domination in graphs}, journal = dm, volume = 306, year = 2006, pages = {3338-3340}} %Xu %Xue @article{XueCN05, author = {Y. Xue and Y. Cui and K. Nahrstedt}, title = {Maximizing Lifetime for Data Aggregation in Wireless Sensor Networks}, journal = {Mobile Networks and Applications}, volume = 10, pages = {853-864}, year = {2005}} %Y %Ya %Yam @article{YamaguchiAM03, author = {Atsuko Yamaguchi and Kiyoko F. Aoki and Hiroshi Mamitsuka}, title = {Graph complexity of chemical compounds in biological pathways}, journal = {Genome Informatics}, volume = 14, year = 2003, pages = {376-377}} @article{YamaguchiAM04, author = {Atsuko Yamaguchi and Kiyoko F. Aoki and Hiroshi Mamitsuka}, title = {Finding the maximum common subgraph of a partial $k$-tree and a graph with a polynomially bounded number of spanning trees}, journal = ipl, volume = 92, year = 2004, pages = {57-63}} @inproceedings{YamazakiBFT97, author = {Koichi Yamazaki and Hans L. Bodlaender and Babette {de Fluiter} and Dimitrios Thilikos}, title = {Isomorphism for graphs of bounded distance width}, booktitle = ciac97, publisher = lncs1203, year = 1997, pages = {276-287}} @article{Yamazaki01, author = {Koichi Yamazaki}, title = {On approximation intractability of the path-distance-width problem}, journal = dam, volume = 110, pages = {317-325}, year = 2001} @article{YamazakiBFT99, author = {Koichi Yamazaki and Hans L. Bodlaender and Babette {de Fluiter} and Dimitrios Thilikos}, title = {Isomorphism for graphs of bounded distance width}, journal = alg, volume = 24, pages = {105-127}, year = 1999} %Yan @mastersthesis{Yan89, author = {X. Yan}, title = {A relative approximation algorithm for computing the pathwidth of outerplanar graphs}, type = {Master thesis}, school = {Department of Computer Science, Washington State University}, address = {Pullman, WA, USA}, year = 1989} @article{YangC08, author = {Boting Yang and Yi Cao}, title = {Digraph searching, directed vertex separation and directed pathwidth}, journal = dam, volume = 156, year = 2008, pages = {1822-1837}} @article{YannakakisG80, author = {Mihalis Yannakakis and Fanica Gavril}, title = {Edge dominating sets in graphs}, journal = sjam, volume = 38, year = 1980, PAGES = {364-372}} @article{Yannakakis81, author = {Mihalis Yannakakis}, title = {Computing the minimum fill-in is {NP}-complete}, journal = sjadm, volume = 2, year = 1981, pages = {77-79}} @article{Yannakakis85, author = {Mihalis Yannakakis}, title = {A polynomial algorithm for the Min-Cut Linear Arrangement of trees}, journal = jacm, volume = 32, year = 1985, pages = {950-988}} @article{YannakakisG87, author = {Mihalis Yannakakis and Fanica Gavril}, title = {The maximum $k$-colorable subgraph problem for chordal graphs}, journal = ipl, volume = 24, year = 1987, pages = {133-137}} @article{Yannakakis89, author = {Mihalis Yannakakis}, title = {Embedding Planar Graphs in Four Pages}, journal = jcss, volume = 38, year = 1989, pages = {36-67}} %Yap @book{Yap86, author = {H. P. Yap}, title = {Some Topics in Graph Theory}, address = {Cambridge, UK}, series = {London Mathematical Society Lecture Note Series}, volume = 108, year = 1986, publisher = {Cambridge Univ. Press}} %Ye %Yeh @article{Yeh06, author = {Roger K. Yeh}, title = {A survey on labeling graphs with a condition at distance two}, journal = dm, volume = 306, pages = {1217-1231}, year = 2006} %Yen @article{Yen02, author = {W. C. K. Yen}, title = {Bottleneck domination and bottleneck independent domination on graphs}, journal = jise, volume = 18, year = 2002, pages = {311-331}} %Yu @article{YuC94, author = {Chang-Wu Yu and Gen-Huey Chen}, title = {A theorem on permutation graphs with applications}, journal = {Information Sciences}, volume = 77, year = 1994, pages = {177-193}} %Z %Ze %Zei @article{ZeitlhoferW03, author = {Thomas Zeitlhofer and Bernhard Wess}, title = {List-coloring of interval graphs with application to register assignment for heterogeneous register-set architectures}, journal = {Signal Processing}, volume = 83, year = 2003, pages = {1411-1525}} %Zh %Zha @article{ZhangGW09, author = {Zhao Zhang and Xiaofeng Gao and Weili Wu}, title = {{PTAS} for connected vertex cover in unit disk graphs}, journal = tcs, volume = 410, year = 2009, pages = {5398-5402}} @book{ZhaoG04, author = {F. Zhao and L. Guibas}, title = {Wireless Sensor Networks: An Information Processing Approach}, publisher = {Morgan Kaufman}, year = 2004} @inproceedings{ZhaoCC07, author = {Jizhen Zhao and Dongsheng Che and Liming Cai}, title = {Comparative pathway annotation with protein-{DNA} interaction and operon information via graph tree decomposition}, booktitle = {Proceedings of Pacific Symposium on Biocomputing, PSB 2007}, pages = {496-507}, year = {2007}, volume ={12}} @Article{ZhaoMC08, author = {Jizhen Zhao and Russell L. Malmberg and Liming Cai}, title = {Rapid ab initio Prediction of {RNA} Pseudoknots via Graph Tree Decomposition}, journal = {Journal of Mathematical Biology}, year = {2008}, volume = 56, number = {1--2}, pages = {145--159}} %Zho %Zhou 1992 @inproceedings{ZhouNSN92, author = {X. Zhou and S. Nakano and H. Suzuki and T. Nishizeki}, title = {An efficient algorithm for edge-coloring series-parallel multigraphs}, editor = {I. Simon}, year = 1992, booktitle = latin92, publisher = lncs583, pages = {516-529}} @unpublished{ZhouNSN92a, author = {X. Zhou and S. Nakano and H. Suzuki and T. Nishizeki}, title = {Efficient Algorithm for Edge-Coloring Partial $k$-Trees}, year = 1992, institution = {Department of Information Engineering, Tohoku University}, address ={Sendai, Japan}, note = {Manuscript}} %Zhou 1993 @inproceedings{ZhouNN93, author = {X. Zhou and S. Nakano and T. Nishizeki}, title = {A linear algorithm for edge-coloring partial $k$-trees}, editor = {Thomas Lengauer}, booktitle = esa93, year = 1993, pages = {409-418}, publisher = lncs726 } %Zhou 1994 @inproceedings{ZhouN94, author = {X. Zhou and T. Nishizeki}, title = {An efficient algorithm for edge-ranking trees}, editor = {Jan van Leeuwen}, booktitle = esa94, year = 1994, pages = {118-129}, publisher = lncs855} %Zhou 1995 @inproceedings{ZhouN95, author = {X. Zhou and T. Nishizeki}, title = {Finding optimal edge-rankings of trees}, booktitle = soda95, year = 1995, pages = {122-131}} @article{ZhouN95a, author = {X. Zhou and T. Nishizeki}, title = {Optimal parallel algorithms for edge-coloring partial $k$-trees with bounded degrees}, journal = {IEICE Transactions on Fundamentals of Electronics, Communications and Computer Science}, volume = {E78-A}, pages = {463-469}, year = 1995} @article{ZhouNN95, author = {Xiao Zhou and Nobuaki Nagai and Takao Nishizeki}, title = {Generalized vertex-rankings of trees}, year = 1995, journal = ipl, volume = 56, pages = {321-328}} %Zhou 1996 @article{ZhouNN96, author = {Xiao Zhou and S. Nakano and Takao Nishizeki}, title = {Edge-coloring partial $k$-trees}, journal = ja, volume = 21, year = 1996, pages = {598-617}} @article{ZhouSN96, author = {Xiao Zhou and Hitoshi Suzuki and Takao Nishizeki}, title = {A linear algorithm for edge-coloring series-parallel multigraphs}, journal = ja, volume = 20, year = 1996, pages = {174-201}} @inproceedings{ZhouTN96, author = {Xiao Zhou and Syurei Tamura and Takao Nishizeki}, title = {Finding edge-disjoint paths in partial $k$-trees}, editor = {Tetsuo Asano and Yoshidie Igarashi and Hiroshi Nagamochi and Satoru Miyano and Subhash Suri}, booktitle = isaac96, publisher = lncs1178, year = 1996, pages = {203-212}} %Zhou 1997 @inproceedings{ZhouKN97, author = {Xiao Zhou and Md. Abul Kashem and Takao Nishizeki}, title = {Generalized edge-ranking of trees}, editor = {Fabrizio d'Amore and Paolo Giulio Franciosa and Alberto Marchetti-Spaccamela}, booktitle = wg96, pages = {390-404}, year = 1997, publisher = lncs1197} %Zhou 2000 @article{ZhouFN00, author = {X. Zhou and K. Fuse and Takao Nishizeki}, title = {A linear algorithm for finding $[g,f]$-colorings of partial $k$-trees}, journal = alg, volume = 27, pages = {227-243}, year = 2000} @article{ZhouKN00, author = {X. Zhou and Y. Kanari and Takao Nishizeki}, title = {Generalized vertex-colorings of partial $k$-trees}, journal = {IEICE Trans E.83-A}, volume = 4, year = 2000, pages = {671-677}} %Zhu @article{Zhu00, author = {Xuding Zhu}, title = {The game coloring number of pseudo partial $k$-trees}, journal = dam, volume = 215, year = 2000, pages = {245-262}} %Zm @article{ZmazekZ04, author = {Bla \~{Z}mazek and Janez \~{Z}erovnik}, title = {The obnoxious center problem on weighted cactus graphs}, journal = dam, volume = 136, pages = {377-386}, year = 2004} %%%% REFERENCES WITHOUT AUTHOR NAMES %%%% @misc{TreewidthLIB, key = {TreewidthLIB}, title= {TreewidthLIB}, year = {2004-- \ldots}, url = {http://www.cs.uu.nl/people/hansb/treewidthlib}, howpublished = {http://www.cs.uu.nl/people/hansb/treewidthlib} } @Misc{DIMACS_challenge2, key = {DIMACS}, title = {The Second {DIMACS} Implementation Challenge: {NP-Hard Problems: Maximum Clique, Graph Coloring, and Satisfiability}}, howpublished = {See http://dimacs.rutgers.edu/Challenges/}, year = {1992--1993} } @misc{Boost, key = {Boost}, title = {Boost {C}++ Libraries}, howpublished = {http://www.boost.org/}, year = {1999--2009} } @misc{Koster2008, key={ComputeTW}, author = {Arie M. C. A. Koster}, title={{ComputeTW} -- {A}n interactive platform for computing Treewidth of graphs}, year={2009}, note = {http://www.math2.rwth-aachen.de/{$\sim$}koster/ComputeTW} } biber-2.19/etc/parser.dlg000066400000000000000000000040031440117422400152630ustar00rootroot00000000000000<< /* parser.dlg -- DLG Description of scanner * * Generated from: bibtex.g * * Terence Parr, Will Cohen, and Hank Dietz: 1989-1994 * Purdue University Electrical Engineering * With AHPCRC, University of Minnesota * ANTLR Version 1.33 */ #include #define ANTLR_VERSION 133 #define ZZCOL #define USER_ZZSYN #include "config.h" #include "btparse.h" #include "attrib.h" #include "lex_auxiliary.h" #include "error.h" #include "my_dmalloc.h" extern char * InputFilename; /* for zzcr_ast call in pccts/ast.c */ #include "antlr.h" #include "ast.h" #include "tokens.h" #include "dlgdef.h" LOOKAHEAD void zzerraction() { (*zzerr)("invalid token"); zzadvance(); zzskip(); } >> %%START @ << NLA = 1; >> \@ << NLA = AT; at_sign (); >> \n << NLA = 3; newline (); >> \%~[\n]*\n << NLA = COMMENT; comment (); >> [\ \r\t]+ << NLA = 5; zzskip (); >> ~[\@\n\ \r\t]+ << NLA = 6; toplevel_junk (); >> %%LEX_ENTRY @ << NLA = 1; >> \n << NLA = 7; newline (); >> \%~[\n]*\n << NLA = COMMENT; comment (); >> [\ \r\t]+ << NLA = 8; zzskip (); >> [0-9]+ << NLA = NUMBER; >> [a-z0-9\!\$\&\*\+\-\.\/\:\;\<\>\?\[\]\^\_\`\|]+ << NLA = NAME; name (); >> \{ << NLA = LBRACE; lbrace (); >> \} << NLA = RBRACE; rbrace (); >> \( << NLA = ENTRY_OPEN; lparen (); >> \) << NLA = ENTRY_CLOSE; rparen (); >> = << NLA = EQUALS; >> \# << NLA = HASH; >> , << NLA = COMMA; >> \" << NLA = 18; start_string ('"'); >> %%LEX_STRING @ << NLA = 1; >> \n~[\n\{\}\(\)\"\\]* << NLA = 19; check_runaway_string (); >> [\r\t] << NLA = 20; zzreplchar (' '); zzmore (); >> \{ << NLA = 21; open_brace (); >> \} << NLA = 22; close_brace (); >> \( << NLA = 23; lparen_in_string (); >> \) << NLA = 24; rparen_in_string (); >> \" << NLA = STRING; quote_in_string (); >> ~[\n\{\}\(\)\"]+ << NLA = 26; zzmore (); >> %% biber-2.19/etc/test.tex000066400000000000000000000002771440117422400150110ustar00rootroot00000000000000\documentclass{article} \usepackage{fontspec} \usepackage{biblatex} \addbibresource{definitions.bib} \addbibresource{papers.bib} \begin{document} \nocite{*} \printbibliography \end{document} biber-2.19/etc/tugboat.bib000066400000000000000000122343571440117422400154460ustar00rootroot00000000000000%%% -*-BibTeX-*- %%% ==================================================================== %%% BibTeX-file{ %%% author = "Nelson H. F. Beebe", %%% version = "2.00", %%% date = "28 May 2015", %%% time = "06:37:28 MDT", %%% filename = "tugboat.bib", %%% address = "University of Utah %%% Department of Mathematics, 110 LCB %%% 155 S 1400 E RM 233 %%% Salt Lake City, UT 84112-0090 %%% USA", %%% telephone = "+1 801 581 5254", %%% FAX = "+1 801 581 4148", %%% URL = "http://www.math.utah.edu/~beebe", %%% checksum = "47123 73993 248072 2701551", %%% email = "beebe at math.utah.edu, beebe at acm.org, %%% beebe at computer.org (Internet)", %%% codetable = "ISO/ASCII", %%% keywords = "bibliography; BibTeX; TeX Users Group; %%% TUGboat", %%% license = "public domain", %%% supported = "yes", %%% docstring = "This is a COMPLETE bibliography of the journal %%% TUGboat (ISSN 0896-3207, LCCN Z253.4.T47T83), %%% the Communications of the TeX Users Group %%% (TUG). Publication began with volume 1, %%% number 1, in October 1980, and the journal %%% has three or four issues per annual volume. %%% %%% The journal has a Web site at %%% %%% http://www.tug.org/TUGboat/ %%% %%% At version 2.00, the COMPLETE year coverage %%% looked like this: %%% %%% 1980 ( 11) 1992 ( 136) 2004 ( 62) %%% 1981 ( 119) 1993 ( 107) 2005 ( 90) %%% 1982 ( 50) 1994 ( 129) 2006 ( 64) %%% 1983 ( 66) 1995 ( 86) 2007 ( 91) %%% 1984 ( 69) 1996 ( 101) 2008 ( 117) %%% 1985 ( 115) 1997 ( 95) 2009 ( 101) %%% 1986 ( 114) 1998 ( 113) 2010 ( 98) %%% 1987 ( 138) 1999 ( 134) 2011 ( 102) %%% 1988 ( 125) 2000 ( 84) 2012 ( 89) %%% 1989 ( 169) 2001 ( 97) 2013 ( 98) %%% 1990 ( 164) 2002 ( 71) 2014 ( 94) %%% 1991 ( 190) 2003 ( 122) 2015 ( 33) %%% %%% Article: 3644 %%% %%% Total entries: 3644 %%% %%% The journal Web site contains pointers to %%% issue contents, and PDF files of articles are %%% freely available, EXCEPT for a moving window %%% of about the last year, access to which %%% requires TUG membership. URLs for such files %%% contain the path component /members/. %%% %%% The master files for this bibliography are %%% maintained at %%% %%% http://www.math.utah.edu/pub/tex/bib/tugboat.* %%% http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat %%% %%% A brief journal table-of-contents is available at: %%% %%% http://www.math.utah.edu/pub/tex/bib/toc/tugboat.html %%% %%% The cross-referenced master index for the %%% journal is available at: %%% %%% http://www.math.utah.edu/pub/tex/bib/idx/tugboat/* %%% http://www.math.utah.edu/pub/tex/bib/idx/tugboat/index.html %%% %%% The TeX Users Group Web site is %%% %%% http://www.tug.org/ %%% %%% and the Comprehensive TeX Archive Network %%% (CTAN) master sites are at %%% %%% ftp://ftp.dante.de/tex-archive %%% ftp://ftp.tex.ac.uk/tex-archive %%% ftp://ctan.tug.org/tex-archive %%% %%% There are numerous mirrors of the CTAN %%% archive around the world: see %%% %%% ftp://ftp.dante.de/tex-archive/README.mirrors %%% ftp://ftp.tex.ac.uk/tex-archive/README.mirrors %%% ftp://ctan.tug.org/tex-archive/README.mirrors %%% %%% for a list. %%% %%% The checksum field above contains a CRC-16 %%% checksum as the first value, followed by the %%% equivalent of the standard UNIX wc (word %%% count) utility output of lines, words, and %%% characters. This is produced by Robert %%% Solovay's checksum utility.", %%% } %%% ==================================================================== @Preamble{"\input tugboat.def"} @Preamble{"\input path.sty"} @Preamble{"\hyphenation{ Jac-kow-ski Lud-wi-chow-ski Mik-la-vec Reut-en-auer }"} %%% ==================================================================== %%% Acknowledgement abbreviations: @String{ack-bnb = "Barbara N. Beeton, American Mathematical Society, P.O. Box 6248, Providence, RI 02940, USA, Tel: +1 401 455 4014, e-mail: \path|bnb@math.ams.org|"} @String{ack-nhfb = "Nelson H. F. Beebe, University of Utah, Department of Mathematics, 110 LCB, 155 S 1400 E RM 233, Salt Lake City, UT 84112-0090, USA, Tel: +1 801 581 5254, FAX: +1 801 581 4148, e-mail: \path|beebe@math.utah.edu|, \path|beebe@acm.org|, \path|beebe@computer.org| (Internet), URL: \path|http://www.math.utah.edu/~beebe/|"} %%% ==================================================================== %%% BibTeX database file for TUGboat created automatically with %%% %%% nawk -f tugboat.awk %%% %%% by beebe at airy.math.utah.edu on Fri Jul 13 10:24:20 MDT 2007 %%% %%% Input files: %%% tb0180.cnt %%% tb0281.cnt %%% tb0382.cnt %%% tb0483.cnt %%% tb0584.cnt %%% tb0685.cnt %%% tb0786.cnt %%% tb0887.cnt %%% tb0988.cnt %%% tb1089.cnt %%% tb1190.cnt %%% tb1291.cnt %%% tb1392.cnt %%% tb1493.cnt %%% tb1594.cnt %%% tb1695.cnt %%% tb1796.cnt %%% tb1897.cnt %%% tb1998.cnt %%% tb2099.cnt %%% tb2100.cnt %%% tb2201.cnt %%% tb2302.cnt %%% tb2403.cnt %%% tb2504.cnt %%% tb2605.cnt %%% %%% ==================================================================== %%% ==================================================================== %%% Journal abbreviations: @String{j-TUGboat = "TUGboat"} %%% ==================================================================== %%% Journal entries, sorted in publication order: @Article{Welland:TB1-1-2, author = "Robert Welland", title = "{Editor's Comments}", journal = j-TUGboat, volume = "1", number = "1", pages = "2--3", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01edit.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Palais:TB1-1-3, author = "Richard Palais", title = "{Message from the Chairman}", journal = j-TUGboat, volume = "1", number = "1", pages = "3--7", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Swanson:TB1-1-7, author = "Ellen Swanson", title = "{Publishing \& \TeX}", journal = j-TUGboat, volume = "1", number = "1", pages = "7--9", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01swanson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB1-1-10, author = "Michael Spivak", title = "{{\AmSTeX\Dash``A very friendly product}''}", journal = j-TUGboat, volume = "1", number = "1", pages = "10--11", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01spivak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB1-1-12, author = "Robert Morris", title = "{Minutes of the first TUG meeting, February 1980}", journal = j-TUGboat, volume = "1", number = "1", pages = "12--16", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01morris.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zabala:TB1-1-16, author = "Ignacio Zabala and Luis Trabb-Pardo", title = "{The status of the Pascal implementation of \TeX}", journal = j-TUGboat, volume = "1", number = "1", pages = "16--17", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01zabala.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB1-1-17, author = "David Fuchs", title = "{The format of {\TeX}'s DVI files}", journal = j-TUGboat, volume = "1", number = "1", pages = "17--19", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01fuchs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hodge:TB1-1-19, author = "Thea Hodge", title = "{University of Minnesota CDC Cyber site report}", journal = j-TUGboat, volume = "1", number = "1", pages = "19--20", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01hodge.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB1-1-20, author = "Barbara Beeton", title = "{Troubles with trace and Other oddities}", journal = j-TUGboat, volume = "1", number = "1", pages = "20--20", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01beeton.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Winograd:TB1-1-Appendix-A, author = "Terry Winograd and Bill Paxton", title = "{An indexing facility for \TeX}", journal = j-TUGboat, volume = "1", number = "1", pages = "Appendix A", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/winograd-paxton.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Emch:TB1-1-22, author = "G{\'e}rard Emch and Arnold Pizer", title = "Letters", journal = j-TUGboat, volume = "1", number = "1", pages = "22--23", month = oct, year = "1980", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb01-1/tb01emch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "1", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-1-2, author = "Anonymous", title = "Addresses of authors", journal = j-TUGboat, volume = "2", number = "1", pages = "2--2", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://tug.org/TUGboat/tb02-1/tb02titlepage.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Welland:TB2-1-3, author = "Robert Welland", title = "{Site Coordinators}", journal = j-TUGboat, volume = "2", number = "1", pages = "3--3", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Palais:TB2-1-3, author = "Richard Palais", title = "Chairman's report", journal = j-TUGboat, volume = "2", number = "1", pages = "3--5", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB2-1-5, author = "Robert Morris", title = "{Report on the January 1981 TUG Steering Committee meeting}", journal = j-TUGboat, volume = "2", number = "1", pages = "5--6", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB2-1-6, author = "Samuel B. Whidden", title = "{1980 TUG Treasurer's report}", journal = j-TUGboat, volume = "2", number = "1", pages = "6--6", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB2-1-6, author = "Robert Morris", title = "{Informal TUG session}", journal = j-TUGboat, volume = "2", number = "1", pages = "6--7", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB2-1-7, author = "Robert Morris", title = "{A position on {\TeX} maintenance}", journal = j-TUGboat, volume = "2", number = "1", pages = "7--8", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB2-1-9, author = "Samuel B. Whidden", title = "{{\TeX} support}", journal = j-TUGboat, volume = "2", number = "1", pages = "9--10", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kim:TB2-1-10, author = "Scott Kim", title = "{Update on Pascal \MF}", journal = j-TUGboat, volume = "2", number = "1", pages = "10--10", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02kim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB2-1-11, author = "David Fuchs", title = "{Erratum: The format of {\TeX}'s DVI files}", journal = j-TUGboat, volume = "2", number = "1", pages = "11--11", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02fuchszab.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zabala:TB2-1-11, author = "Ignacio Zabala", title = "{{\TeX-Pascal and Pascal compilers (a status report)}}", journal = j-TUGboat, volume = "2", number = "1", pages = "11--12", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02fuchszab.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB2-1-12, author = "David Fuchs", title = "{{\TeX} Font Metric files}", journal = j-TUGboat, volume = "2", number = "1", pages = "12--16", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02fuchstfm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sherrod:TB2-1-17, author = "Phil Sherrod and Alan Wright", title = "{{\TeX} support programs}", journal = j-TUGboat, volume = "2", number = "1", pages = "17--19", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02sherrod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lawson:TB2-1-20, author = "C. L. Lawson and I. Zabala and M. D{\'\i}az", title = "{{Brief functional characterization of the procedures in the {\TeX}/Pascal compilation unit, {\tt SYSDEP}}}", journal = j-TUGboat, volume = "2", number = "1", pages = "20--31", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02lawbrief.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lawson:TB2-1-32, author = "C. L. Lawson and I. Zabala and M. D{\'\i}az", title = "{{Detailed specifications of procedures in the {\TeX}/Pascal compilation unit, {\tt SYSDEP}}}", journal = j-TUGboat, volume = "2", number = "1", pages = "32--47", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02lawdetail.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Doherty:TB2-1-48, author = "Barry Doherty", title = "{Output devices: A new column}", journal = j-TUGboat, volume = "2", number = "1", pages = "48--48", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berns:TB2-1-48, author = "Eagle Berns", title = "{Status of {\TeX} on the Stanford 370/3033 systems}", journal = j-TUGboat, volume = "2", number = "1", pages = "48--48", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Doherty:TB2-1-48-2, author = "Barry Doherty and Barbara Beeton", title = "{AMS site report}", journal = j-TUGboat, volume = "2", number = "1", pages = "48--49", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Incerpi:TB2-1-49, author = "Janet Incerpi", title = "{The status of {\VAX}/{\TeX} at Brown}", journal = j-TUGboat, volume = "2", number = "1", pages = "49--50", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hodge:TB2-1-51, author = "T. D. Hodge", title = "{Report from the North Star, or, {\TeX} at the University of Minnesota}", journal = j-TUGboat, volume = "2", number = "1", pages = "51--51", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Stromquist:TB2-1-51, author = "Ralph Stromquist", title = "{{\TeX} is available for Univac 1100 systems}", journal = j-TUGboat, volume = "2", number = "1", pages = "51--51", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Totland:TB2-1-51, author = "Helge Totland", title = "{Report on the use of {\TeX} at Computas A/S, Norway; Nord 100 computer: 16 bit ``big mini''}", journal = j-TUGboat, volume = "2", number = "1", pages = "51--52", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB2-1-53, author = "Barbara Beeton", title = "{Disappearing digits; Undisciplined uppercase}", journal = j-TUGboat, volume = "2", number = "1", pages = "53--53", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB2-1-53-2, author = "Barbara Beeton", title = "How to prepare a file for publication in {\TUB}", journal = j-TUGboat, volume = "2", number = "1", pages = "53--54", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Diaz:TB2-1-55, author = "Max D{\'\i}az", title = "{\TeX} macro package", journal = j-TUGboat, volume = "2", number = "1", pages = "55--55", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02diaz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Keller:TB2-1-56, author = "Arthur M. Keller", title = "Anatomy of a {\TeX} macro package", journal = j-TUGboat, volume = "2", number = "1", pages = "56--86", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02kell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-1-87, author = "Lynne A. Price and Patrick Milligan", title = "{{\tt NOFILL}} program with {Pascal} source", journal = j-TUGboat, volume = "2", number = "1", pages = "87--97", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02pricenofill.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-1-98, author = "Lynne A. Price", title = "List macros", journal = j-TUGboat, volume = "2", number = "1", pages = "98--110", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02pricelist.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-1-111, author = "Lynne A. Price", title = "Table of contents macros", journal = j-TUGboat, volume = "2", number = "1", pages = "111--118", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02pricetoc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milligan:TB2-1-119, author = "Patrick Milligan and Lynne A. Price", title = "Utility macros", journal = j-TUGboat, volume = "2", number = "1", pages = "119--121", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02mill.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-1-122, author = "Lynne A. Price", title = "{Hebrew} letter (with source)", journal = j-TUGboat, volume = "2", number = "1", pages = "122--124", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02pricehebrew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-1-125, author = "Lynne A. Price", title = "Two slides", journal = j-TUGboat, volume = "2", number = "1", pages = "125--126", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02priceslides.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eck:TB2-1-127, author = "David Eck", title = "{Report from an early {\AmSTeX} user}", journal = j-TUGboat, volume = "2", number = "1", pages = "127--127", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hirst:TB2-1-127, author = "Graeme Hirst", title = "Letters", journal = j-TUGboat, volume = "2", number = "1", pages = "127--127", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-1-128, author = "Anonymous", title = "{Appendix A.\ \ Output samples from a paper by David Eck}", journal = j-TUGboat, volume = "2", number = "1", pages = "128--135", month = feb, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-1/tb02eck.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "2", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-2-2, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "2", number = "2", pages = "2--2", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03titlepage.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-2-3, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "2", number = "2", pages = "3--3", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Welland:TB2-2-3, author = "Robert Welland", title = "Editor's remarks", journal = j-TUGboat, volume = "2", number = "2", pages = "3--3", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB2-2-3, author = "Michael Spivak", title = "Chairman's report", journal = j-TUGboat, volume = "2", number = "2", pages = "3--4", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB2-2-4, author = "Robert Morris", title = "{Report on the May 1981 TUG Steering Committee meeting}", journal = j-TUGboat, volume = "2", number = "2", pages = "4--5", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB2-2-5, author = "Samuel B. Whidden", title = "{TUG Treasurer's report}", journal = j-TUGboat, volume = "2", number = "2", pages = "5--5", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB2-2-5, author = "Robert Morris", title = "{Proposal for institutional support of TUG}", journal = j-TUGboat, volume = "2", number = "2", pages = "5--6", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Doherty:TB2-2-6, author = "Barry Doherty", title = "{Report: {\TeX} Implementors' Workshop, Stanford, 14--15 May 1981}", journal = j-TUGboat, volume = "2", number = "2", pages = "6--7", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-2-8, author = "Anonymous", title = "Workshop attendees", journal = j-TUGboat, volume = "2", number = "2", pages = "8--8", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pierce:TB2-2-8, author = "Tom Pierce", title = "{Preliminary announcement: TUG meeting, Cincinnati, January 1982}", journal = j-TUGboat, volume = "2", number = "2", pages = "8--8", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milligan:TB2-2-9, author = "Patrick Milligan", title = "{Ask not what TUG can do for you, ask what you can do for TUG!}", journal = j-TUGboat, volume = "2", number = "2", pages = "9--10", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milligan:TB2-2-10, author = "Patrick Milligan", title = "A proposal for a machine independent tape interchange standard", journal = j-TUGboat, volume = "2", number = "2", pages = "10--12", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB2-2-12, author = "David Fuchs", title = "{The format of {\TeX}'s DVI files, Version I}", journal = j-TUGboat, volume = "2", number = "2", pages = "12--16", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fuchsdvi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zabala:TB2-2-16, author = "Ignacio Zabala", title = "{Some feedback from PTEX installations}", journal = j-TUGboat, volume = "2", number = "2", pages = "16--19", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03zab.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Liang:TB2-2-19, author = "Frank M. Liang", title = "{{\TeX} and hyphenation}", journal = j-TUGboat, volume = "2", number = "2", pages = "19--20", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03liang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Harris:TB2-2-21, author = "Kent S. Harris and Robert M. McClure", title = "{{\TeX} on small machines}", journal = j-TUGboat, volume = "2", number = "2", pages = "21--24", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03harris.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB2-2-25, author = "David Fuchs", title = "{Output device news flash (APS-5 and Linotron 202)}", journal = j-TUGboat, volume = "2", number = "2", pages = "25--25", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fuchsout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-2-25, author = "Anonymous", title = "Summary of computing equipment and output devices", journal = j-TUGboat, volume = "2", number = "2", pages = "25--25", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fuchsout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Trabb-Pardo:TB2-2-26, author = "Luis Trabb-Pardo", title = "{Imagen (Canon LBP-10)}", journal = j-TUGboat, volume = "2", number = "2", pages = "26--27", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03imagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hodge:TB2-2-28, author = "Thea Hodge and Michael Frisch", title = "{{\TeX} under the North Star}", journal = j-TUGboat, volume = "2", number = "2", pages = "28--28", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sherrod:TB2-2-28, author = "Phil Sherrod", title = "{DECSystem-10/20 Implementation Workshop announcement}", journal = j-TUGboat, volume = "2", number = "2", pages = "28--29", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB2-2-29, author = "Barbara Beeton", title = "{AMS site report}", journal = j-TUGboat, volume = "2", number = "2", pages = "29--29", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milligan:TB2-2-29, author = "Patrick Milligan", title = "{\TeX} at the {1981 Spring DECUS U.S.\ Symposium}", journal = j-TUGboat, volume = "2", number = "2", pages = "29--29", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schwab:TB2-2-29, author = "Rachel Schwab", title = "{{\TeX} at NIH}", journal = j-TUGboat, volume = "2", number = "2", pages = "29--30", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kelly:TB2-2-30, author = "Bill Kelly", title = "{An implementation report for the Univac 1100}", journal = j-TUGboat, volume = "2", number = "2", pages = "30--33", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB2-2-33, author = "Monte Nichols", title = "{{Availability of Oregon Software implementation of {\TeX} for the {\VAX}/VMS}}", journal = j-TUGboat, volume = "2", number = "2", pages = "33--34", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB2-2-34, author = "Barry Smith", title = "{{{\TeX} for {\VAX}/VMS}}", journal = j-TUGboat, volume = "2", number = "2", pages = "34--34", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Doherty:TB2-2-34, author = "Barry C. W. Doherty", title = "{TUG Font Committee}", journal = j-TUGboat, volume = "2", number = "2", pages = "34--35", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hickey:TB2-2-35, author = "Thomas B. Hickey", title = "{The status of {\MF} at OCLC}", journal = j-TUGboat, volume = "2", number = "2", pages = "35--38", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LeVeque:TB2-2-39, author = "William J. LeVeque", title = "{Font development at the {\AMS}}", journal = j-TUGboat, volume = "2", number = "2", pages = "39--40", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whitney:TB2-2-40, author = "Ronald Whitney", title = "{{\tt TPHON}}", journal = j-TUGboat, volume = "2", number = "2", pages = "40--40", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Doherty:TB2-2-40, author = "Barry Doherty and Ronald Whitney", title = "Proofmode and magnification", journal = j-TUGboat, volume = "2", number = "2", pages = "40--42", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB2-2-42, author = "Barbara Beeton", title = "{Uppercase update; Fickle fonts}", journal = j-TUGboat, volume = "2", number = "2", pages = "42--43", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-2-43, author = "Lynne Price", title = "{Greetings from the Editor}", journal = j-TUGboat, volume = "2", number = "2", pages = "43--43", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-2-43, author = "Anonymous", title = "Macros on microfiche", journal = j-TUGboat, volume = "2", number = "2", pages = "43--43", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milligan:TB2-2-43, author = "Patrick Milligan", title = "{Erratum: {\tt NOFILL} program}", journal = j-TUGboat, volume = "2", number = "2", pages = "43--44", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03mill.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milligan:TB2-2-44, author = "Patrick Milligan", title = "{{\TeX} macros for automatic font code allocation}", journal = j-TUGboat, volume = "2", number = "2", pages = "44--45", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03mill.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McKay:TB2-2-46, author = "Brendan McKay", title = "A macro menagerie", journal = j-TUGboat, volume = "2", number = "2", pages = "46--49", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03mckay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB2-2-50, author = "Michael Spivak", title = "Macro madness", journal = j-TUGboat, volume = "2", number = "2", pages = "50--54", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03spivak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Diaz:TB2-2-Appendix-A, author = "Max D{\'\i}az", title = "{F{\'a}cil {\TeX}}", journal = j-TUGboat, volume = "2", number = "2", pages = "Appendix A", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-2-54, author = "Lynne Price", title = "{Greetings from the Editor}", journal = j-TUGboat, volume = "2", number = "2", pages = "54--54", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03priceprob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-2-54, author = "Anonymous", title = "{Problems from the {\TeX}arcana course}", journal = j-TUGboat, volume = "2", number = "2", pages = "54--56", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03priceprob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Stovall:TB2-2-57, author = "Johnny Stovall", title = "Balancing columns of text and translation", journal = j-TUGboat, volume = "2", number = "2", pages = "57--57", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03misc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB2-2-57, author = "Michael Spivak", title = "Input-dependent macro redefinition", journal = j-TUGboat, volume = "2", number = "2", pages = "57--57", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03misc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-2-57, author = "Lynne Price", title = "Letters", journal = j-TUGboat, volume = "2", number = "2", pages = "57--58", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03misc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-2-58, author = "Lynne Price", title = "Dreamboat", journal = j-TUGboat, volume = "2", number = "2", pages = "58--58", month = jul, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-2/tb03misc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "3", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-3-2, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "2", number = "3", pages = "2--2", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-3-3, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "2", number = "3", pages = "3--3", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB2-3-3, author = "Michael Spivak", title = "{Message from the Chairman}", journal = j-TUGboat, volume = "2", number = "3", pages = "3--4", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB2-3-4, author = "Samuel B. Whidden", title = "{TUG Treasurer's report}", journal = j-TUGboat, volume = "2", number = "3", pages = "4--4", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB2-3-5, author = "Donald Knuth", title = "The current state of things", journal = j-TUGboat, volume = "2", number = "3", pages = "5--6", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pierce:TB2-3-7, author = "Tom Pierce", title = "{{\TUG} Winter 1982 meeting, January 11--12, 1982, Cincinnati, Ohio}", journal = j-TUGboat, volume = "2", number = "3", pages = "7--7", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Samuel:TB2-3-7, author = "Arthur Samuel", title = "{Pascal}-coded {\TeX} errata", journal = j-TUGboat, volume = "2", number = "3", pages = "7--8", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04samuel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB2-3-8, author = "David Fuchs", title = "The format of {PXL} files", journal = j-TUGboat, volume = "2", number = "3", pages = "8--12", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04fuchspxl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sauter:TB2-3-13, author = "John Sauter", title = "{Sample of output from an IDS-640}", journal = j-TUGboat, volume = "2", number = "3", pages = "13--13", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04sauter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thedford:TB2-3-14, author = "Rilla Thedford", title = "Output device index", journal = j-TUGboat, volume = "2", number = "3", pages = "14--14", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mooney:TB2-3-14, author = "Jim Mooney", title = "{A Varian output driver in {\VAX}/VMS Fortran}", journal = j-TUGboat, volume = "2", number = "3", pages = "14--15", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Murphy:TB2-3-15, author = "Timothy Murphy", title = "{Diabolic {\TeX}}", journal = j-TUGboat, volume = "2", number = "3", pages = "15--21", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04murdiablo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB2-3-21, author = "David Fuchs", title = "{News from the home front (Stanford)}", journal = j-TUGboat, volume = "2", number = "3", pages = "21--22", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Frisch:TB2-3-22, author = "Michael Frisch", title = "{{\TeX} under the North Star}", journal = j-TUGboat, volume = "2", number = "3", pages = "22--23", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB2-3-23, author = "Barbara Beeton", title = "{A {\TUB} tour: Excerpts from the {\TeX}nician's log}", journal = j-TUGboat, volume = "2", number = "3", pages = "23--25", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB2-3-25, author = "Lance Carnes", title = "{{\TeX} for the HP3000}", journal = j-TUGboat, volume = "2", number = "3", pages = "25--26", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plass:TB2-3-26, author = "Susan Plass", title = "{{\TeX} for the IBM 370}", journal = j-TUGboat, volume = "2", number = "3", pages = "26--27", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rosenschein:TB2-3-27, author = "Jeffrey S. Rosenschein", title = "{{\TeX} in Israel}", journal = j-TUGboat, volume = "2", number = "3", pages = "27--28", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rodgers:TB2-3-28, author = "David Rodgers", title = "{{\TeX} at the University of Michigan, summary of progress}", journal = j-TUGboat, volume = "2", number = "3", pages = "28--29", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB2-3-29, author = "Robert Morris", title = "{{\VAX} on UNIX}", journal = j-TUGboat, volume = "2", number = "3", pages = "29--29", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackson:TB2-3-29, author = "Calvin Jackson", title = "{{\TeX} at CalTech}", journal = j-TUGboat, volume = "2", number = "3", pages = "29--32", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Incerpi:TB2-3-32, author = "Janet Incerpi", title = "{The status of {\VAX}/{\TeX} at Brown}", journal = j-TUGboat, volume = "2", number = "3", pages = "32--32", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB2-3-32, author = "Monte C. Nichols", title = "{{\VAX}/VMS site report}", journal = j-TUGboat, volume = "2", number = "3", pages = "32--32", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Blair:TB2-3-32, author = "John Blair", title = "{Enhancements of {\VAX}/VMS {\TeX} at Calma}", journal = j-TUGboat, volume = "2", number = "3", pages = "32--34", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sauter:TB2-3-34, author = "John Sauter", title = "{``Poor man's'' {\TeX}}", journal = j-TUGboat, volume = "2", number = "3", pages = "34--35", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whitney:TB2-3-35, author = "Ronald Whitney", title = "Font update", journal = j-TUGboat, volume = "2", number = "3", pages = "35--35", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04whitney.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB2-3-35, author = "Barbara Beeton", title = "Don't just {\tt\char`\\let} {\TeX} hang, {\tt\char`\\raise} or {\tt\char`\\lower} it", journal = j-TUGboat, volume = "2", number = "3", pages = "35--35", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-3-36, author = "Lynne Price", title = "Editor's introduction", journal = j-TUGboat, volume = "2", number = "3", pages = "36--36", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-3-36, author = "Anonymous", title = "{{\TUB} macro index}", journal = j-TUGboat, volume = "2", number = "3", pages = "36--37", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Murphy:TB2-3-37, author = "Timothy Murphy", title = "{{Bubbles: A {\TeX}tension in search of a {\TeX}pert}}", journal = j-TUGboat, volume = "2", number = "3", pages = "37--38", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04murbub.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plass:TB2-3-39, author = "Michael F. Plass", title = "{Charting your grammar with {\TeX}}", journal = j-TUGboat, volume = "2", number = "3", pages = "39--56", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04plass.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB2-3-57, author = "Monte Nichols and Barbara Beeton", title = "{Chemical notation using {\TeX}}", journal = j-TUGboat, volume = "2", number = "3", pages = "57--58", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04nich.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB2-3-58, author = "Lynne Price", title = "Problems", journal = j-TUGboat, volume = "2", number = "3", pages = "58--61", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04priceprob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-3-61, author = "Anonymous", title = "{Problems from the {\TeX}arcana class: Answers, and another problem}", journal = j-TUGboat, volume = "2", number = "3", pages = "61--65", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04priceprob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cole:TB2-3-66, author = "J. M. Cole", title = "Letters et alia", journal = j-TUGboat, volume = "2", number = "3", pages = "66--66", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04cole.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sannella:TB2-3-66, author = "Michael Sannella", title = "{Formatting a book with {\TeX}: Experiences and observations}", journal = j-TUGboat, volume = "2", number = "3", pages = "66--74", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb02-3/tb04sann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-3-xx, author = "Anonymous", title = "{Instructions for submitting {\TUB} articles on magnetic tape}", journal = j-TUGboat, volume = "2", number = "3", pages = "??--??", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB2-3-xx-2, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "2", number = "3", pages = "??--??", month = nov, year = "1981", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "4", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-2, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "3", number = "1", pages = "2--2", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-3, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "3", number = "1", pages = "3--3", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB3-1-3, author = "Barbara Beeton", title = "Statement of editorial policy", journal = j-TUGboat, volume = "3", number = "1", pages = "3--4", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morris:TB3-1-4, author = "Robert Morris", title = "{Report on the January 1981 TUG {\SC} meeting}", journal = j-TUGboat, volume = "3", number = "1", pages = "4--5", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-xx, author = "Anonymous", title = "{TUG Winter meeting, January 11--12, 1982, Cincinnati, Ohio}", journal = j-TUGboat, volume = "3", number = "1", pages = "??--??", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McGaffey:TB3-1-7, author = "Robert McGaffey and Keith Penny", title = "{Open letter to TUG}", journal = j-TUGboat, volume = "3", number = "1", pages = "7--9", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05mcgaffey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB3-1-10, author = "Lynne A. Price", title = "{Report on the ANSI X3J6 meeting}", journal = j-TUGboat, volume = "3", number = "1", pages = "10--10", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05pricex3j6.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB3-1-10, author = "Donald Knuth", title = "{{Fixed-point glue setting\Dash an example of {\tt WEB}}}", journal = j-TUGboat, volume = "3", number = "1", pages = "10--27", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05knuth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Frisch:TB3-1-28, author = "Michael J. Frisch", title = "{{CDC {\TeX}}}", journal = j-TUGboat, volume = "3", number = "1", pages = "28--28", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB3-1-28, author = "Lance Carnes", title = "{HP3000 site report}", journal = j-TUGboat, volume = "3", number = "1", pages = "28--29", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Canzii:TB3-1-29, author = "G. Canzii and D. Lucarella and A. Pilenga", title = "{{\TeX} at the University of Milan}", journal = j-TUGboat, volume = "3", number = "1", pages = "29--29", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Aiello:TB3-1-30, author = "L. Aiello and S. Pavan", title = "{\TeX} news from {Pisa}", journal = j-TUGboat, volume = "3", number = "1", pages = "30--31", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB3-1-32, author = "Monte C. Nichols", title = "{{\VAX}/VMS site report}", journal = j-TUGboat, volume = "3", number = "1", pages = "32--32", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB3-1-32, author = "Lance Carnes", title = "Editor's introduction", journal = j-TUGboat, volume = "3", number = "1", pages = "32--32", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB3-1-33, author = "Barbara Beeton", title = "Another hangup", journal = j-TUGboat, volume = "3", number = "1", pages = "33--33", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB3-1-33, author = "Lynne Price", title = "Editor's introduction", journal = j-TUGboat, volume = "3", number = "1", pages = "33--33", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-33, author = "Anonymous", title = "{{\TUB} macro index}", journal = j-TUGboat, volume = "3", number = "1", pages = "33--35", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeman:TB3-1-35, author = "Roger L. Beeman", title = "Display of a font in table form", journal = j-TUGboat, volume = "3", number = "1", pages = "35--38", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05beemanfont.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeman:TB3-1-39, author = "Roger L. Beeman", title = "Seating charts", journal = j-TUGboat, volume = "3", number = "1", pages = "39--42", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05beemanseat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-43, author = "Anonymous", title = "{Problems from the {\TeX}arcana class: Answer to the challenge problem}", journal = j-TUGboat, volume = "3", number = "1", pages = "43--44", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05prob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB3-1-xx, author = "Samuel B. Whidden", title = "{TUG financial reports}", journal = j-TUGboat, volume = "3", number = "1", pages = "45--47", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-1/tb05treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-xx-2, author = "Anonymous", title = "{Instructions for submitting {\TUB} articles on magnetic tape}", journal = j-TUGboat, volume = "3", number = "1", pages = "??--??", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-1-xx-3, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "3", number = "1", pages = "??--??", month = mar, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "5", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-2, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "3", number = "2", pages = "2--2", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-3, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "3", number = "2", pages = "3--3", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-4, author = "Anonymous", title = "{The {\TeX} logo: An important note}", journal = j-TUGboat, volume = "3", number = "2", pages = "4--4", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plass:TB3-2-4, author = "Susan Plass", title = "{Report on business meetings, TUG Summer meeting, Stanford University, July 25--27, 1982}", journal = j-TUGboat, volume = "3", number = "2", pages = "4--5", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-xx, author = "Anonymous", title = "{TUG Summer meeting and {\TeX}82 short course, Stanford University, July 25--30, 1982}", journal = j-TUGboat, volume = "3", number = "2", pages = "??--??", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB3-2-7, author = "Pierre A. MacKay", title = "{An informal interchange format for {\TeX} files}", journal = j-TUGboat, volume = "3", number = "2", pages = "7--8", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06mackay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whitney:TB3-2-9, author = "Ron Whitney", title = "{Introduction to {\TeX} and TUG for new users}", journal = j-TUGboat, volume = "3", number = "2", pages = "9--12", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06whitney.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-113, author = "Anonymous", title = "{\TeX}82 memory structure", journal = j-TUGboat, volume = "3", number = "2", pages = "13--13", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06software.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB3-2-14, author = "David Fuchs", title = "The format of {\TeX}'s {DVI} files", journal = j-TUGboat, volume = "3", number = "2", pages = "14--19", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06software.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thedford:TB3-2-20, author = "Rilla J. Thedford", title = "Output devices", journal = j-TUGboat, volume = "3", number = "2", pages = "20--20", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB3-2-20, author = "David Fuchs", title = "{News from Stanford}", journal = j-TUGboat, volume = "3", number = "2", pages = "20--21", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plass:TB3-2-21, author = "Susan Plass", title = "{Fixes to known bugs in {\TeX}370}", journal = j-TUGboat, volume = "3", number = "2", pages = "21--22", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Grosso:TB3-2-22, author = "Paul Grosso", title = "{{\TeX} installation at the University of Michigan}", journal = j-TUGboat, volume = "3", number = "2", pages = "22--23", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB3-2-23, author = "Monte C. Nichols and David Kellerman", title = "{{\VAX}/VMS site report}", journal = j-TUGboat, volume = "3", number = "2", pages = "23--23", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB3-2-24, author = "Lance Carnes", title = "Editor's introduction", journal = j-TUGboat, volume = "3", number = "2", pages = "24--24", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06carnes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mong:TB3-2-25, author = "Sao Khai Mong", title = "{{A Fortran version of {\MF}}}", journal = j-TUGboat, volume = "3", number = "2", pages = "25--25", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06mbj.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB3-2-25, author = "Barbara Beeton", title = "Charting the generation gulf", journal = j-TUGboat, volume = "3", number = "2", pages = "25--26", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06mbj.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackson:TB3-2-26, author = "Calvin Jackson", title = "Font codes in popular use", journal = j-TUGboat, volume = "3", number = "2", pages = "26--26", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06mbj.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB3-2-27, author = "Lynne Price", title = "Editor's introduction", journal = j-TUGboat, volume = "3", number = "2", pages = "27--27", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-27, author = "Anonymous", title = "{{\TUB} macro index}", journal = j-TUGboat, volume = "3", number = "2", pages = "27--28", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06pricemac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB3-2-28, author = "Barbara Beeton", title = "Multi-column output format", journal = j-TUGboat, volume = "3", number = "2", pages = "28--33", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB3-2-34, author = "Leslie Lamport", title = "{Some {\TeX} programming hacks}", journal = j-TUGboat, volume = "3", number = "2", pages = "34--36", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06lamport.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB3-2-36, author = "Barbara Beeton", title = "{Unblocking an {\AmSTeX} tape}", journal = j-TUGboat, volume = "3", number = "2", pages = "36--37", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06beetape.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Blanford:TB3-2-38, author = "Mark Blanford", title = "Paragraphs in tables", journal = j-TUGboat, volume = "3", number = "2", pages = "38--38", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06prob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-38, author = "Anonymous", title = "Hanging punctuation", journal = j-TUGboat, volume = "3", number = "2", pages = "38--38", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06prob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB3-2-xx, author = "Samuel B. Whidden", title = "{TUG financial reports}", journal = j-TUGboat, volume = "3", number = "2", pages = "39--41", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb03-2/tb06treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB3-2-xx-2, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "3", number = "2", pages = "??--??", month = oct, year = "1982", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "6", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-2, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "4", number = "1", pages = "2--2", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-3, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "4", number = "1", pages = "3--3", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-4, author = "Anonymous", title = "{Library subscriptions\Dash What are they?}", journal = j-TUGboat, volume = "4", number = "1", pages = "4--4", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB4-1-4, author = "Michael Spivak", title = "{{Users' Course in {\AmSTeX}}}", journal = j-TUGboat, volume = "4", number = "1", pages = "4--4", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB4-1-xx, author = "Samuel B. Whidden", title = "{TUG financial reports}", journal = j-TUGboat, volume = "4", number = "1", pages = "??--??", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB4-1-6, author = "David Fuchs", title = "{{\TeX}hax summary}", journal = j-TUGboat, volume = "4", number = "1", pages = "6--9", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07fuchs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-10, author = "Anonymous", title = "{Chart: Output devices and computers}", journal = j-TUGboat, volume = "4", number = "1", pages = "10--10", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-10-2, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "4", number = "1", pages = "10--10", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB4-1-11, author = "Nelson H. F. Beebe", title = "Low-cost downloadable font devices", journal = j-TUGboat, volume = "4", number = "1", pages = "11--12", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ion:TB4-1-12, author = "Patrick Ion and Bill Hall and Rilla J. Thedford", title = "{{\TeX} on the OSP130}", journal = j-TUGboat, volume = "4", number = "1", pages = "12--12", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-13, author = "Anonymous", title = "{Sample output from Florida Data OSP 130}", journal = j-TUGboat, volume = "4", number = "1", pages = "13--13", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB4-1-14, author = "David Fuchs", title = "News from all over", journal = j-TUGboat, volume = "4", number = "1", pages = "14--15", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bunner:TB4-1-16, author = "Irene J. Bunner and John D. Johnson", title = "{{\TeX} on the HP-1000}", journal = j-TUGboat, volume = "4", number = "1", pages = "16--16", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB4-1-17, author = "Richard Furuta and Pierre MacKay", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "4", number = "1", pages = "17--18", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Curtis:TB4-1-18, author = "Pavel Curtis and Howard Trickey", title = "{{Porting {\TeX} to {\VAX}/UNIX}}", journal = j-TUGboat, volume = "4", number = "1", pages = "18--20", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB4-1-21, author = "Pierre MacKay and Richard Furuta", title = "{\TeX} at the {University of Washington: Tops-20, Unix, Versatec, and the Monolithic}", journal = j-TUGboat, volume = "4", number = "1", pages = "21--22", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB4-1-22, author = "Monte C. Nichols", title = "{{\VAX}/VMS site report}", journal = j-TUGboat, volume = "4", number = "1", pages = "22--22", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Krapp:TB4-1-23, author = "David Krapp", title = "{{{\TeX} at Calma R\thinspace\&\thinspace D}}", journal = j-TUGboat, volume = "4", number = "1", pages = "23--23", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Naugle:TB4-1-23, author = "Norman Naugle and Bart Childs", title = "{{\TeX} at Texas A\thinspace\&\thinspace M University}", journal = j-TUGboat, volume = "4", number = "1", pages = "23--23", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB4-1-24, author = "Lance Carnes", title = "Editor's introduction", journal = j-TUGboat, volume = "4", number = "1", pages = "24--24", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07carnes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guthery:TB4-1-25, author = "Scott Guthery", title = "Pictures are just big letters", journal = j-TUGboat, volume = "4", number = "1", pages = "25--25", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07guth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB4-1-26, author = "Georgia K. M. Tobin", title = "Computer calligraphy", journal = j-TUGboat, volume = "4", number = "1", pages = "26--32", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-33, author = "Anonymous", title = "{Announcement: {\sl Fifth ATypI Working Seminar}, The computer and the hand in type design: The aesthetics and technology of digital letterforms}", journal = j-TUGboat, volume = "4", number = "1", pages = "33--33", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07atypi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-33-2, author = "Anonymous", title = "{\TUB} macro index", journal = j-TUGboat, volume = "4", number = "1", pages = "33--35", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07atypi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB4-1-35, author = "Barbara Beeton", title = "{How to build a {\tt\bs strut}}", journal = j-TUGboat, volume = "4", number = "1", pages = "35--36", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB4-1-36, author = "Barbara Beeton", title = "Determining hashtable size and other quantities", journal = j-TUGboat, volume = "4", number = "1", pages = "36--37", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mohr:TB4-1-37, author = "August Mohr", title = "Some layout macros", journal = j-TUGboat, volume = "4", number = "1", pages = "37--38", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07mm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McClure:TB4-1-38, author = "Robert M. McClure", title = "Testing the widths of a font", journal = j-TUGboat, volume = "4", number = "1", pages = "38--38", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07mm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-39, author = "Anonymous", title = "Hanging punctuation", journal = j-TUGboat, volume = "4", number = "1", pages = "39--39", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07prob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Code:TB4-1-40, author = "Maria Code", title = "{How to obtain {\TeX}82 on tape}", journal = j-TUGboat, volume = "4", number = "1", pages = "40--40", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-40, author = "Anonymous", title = "{Announcement: {\sl Manipulation de Documents\Dash Journ{\'e}es Francophones}}", journal = j-TUGboat, volume = "4", number = "1", pages = "40--40", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Siegman:TB4-1-41, author = "A. E. Siegman", title = "{{\TeX} as a programming language?}", journal = j-TUGboat, volume = "4", number = "1", pages = "41--42", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07sieg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-43, author = "Anonymous", title = "{Textset, Inc.\Dash A service for {\TeX} users}", journal = j-TUGboat, volume = "4", number = "1", pages = "43--43", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-44, author = "Anonymous", title = "{Quality Micro Systems\Dash Lasergrafix 1200}", journal = j-TUGboat, volume = "4", number = "1", pages = "44--44", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-45, author = "Anonymous", title = "{{\TeX82 order form}}", journal = j-TUGboat, volume = "4", number = "1", pages = "45--46", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-1/tb07misc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-1-47, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "4", number = "1", pages = "47--48", month = apr, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "7", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-50, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "4", number = "2", pages = "50--50", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08addresses.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-551, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "4", number = "2", pages = "51--51", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08ann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB4-2-52, author = "Pierre MacKay", title = "Message from the {President}", journal = j-TUGboat, volume = "4", number = "2", pages = "52--53", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-55, author = "Anonymous", title = "{Summary of the technical program, July 1983 TUG meeting}", journal = j-TUGboat, volume = "4", number = "2", pages = "55--57", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-57, author = "Anonymous", title = "{Participants, TUG meeting and {\AmSTeX}82 short course}", journal = j-TUGboat, volume = "4", number = "2", pages = "57--69", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plass:TB4-2-59, author = "Susan Plass", title = "{Final report of the Bylaws Committee}", journal = j-TUGboat, volume = "4", number = "2", pages = "59--59", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-60, author = "Anonymous", title = "{{\TUG}\Dash TUG Operating Procedures}", journal = j-TUGboat, volume = "4", number = "2", pages = "60--61", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08tugopproc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB4-2-62, author = "Samuel B. Whidden", title = "{TUG Treasurer's report}", journal = j-TUGboat, volume = "4", number = "2", pages = "62--63", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB4-2-63, author = "Lynne Price", title = "{Report on ANSI X3J6}", journal = j-TUGboat, volume = "4", number = "2", pages = "63--64", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08price-ansi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB4-2-64, author = "Donald Knuth", title = "A note on hyphenation", journal = j-TUGboat, volume = "4", number = "2", pages = "64--65", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB4-2-65, author = "David Fuchs", title = "{{{\TeX} vs.\ INI\TeX}}", journal = j-TUGboat, volume = "4", number = "2", pages = "65--66", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08fuchs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB4-2-66, author = "David Fuchs", title = "{{\TeX}hax summary}", journal = j-TUGboat, volume = "4", number = "2", pages = "66--70", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08fuchs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-71, author = "Anonymous", title = "{Chart: Output devices and computers}", journal = j-TUGboat, volume = "4", number = "2", pages = "71--71", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB4-2-72, author = "David Fuchs", title = "{News from the {\TeX} Project}", journal = j-TUGboat, volume = "4", number = "2", pages = "72--73", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mallett:TB4-2-73, author = "Rick Mallett", title = "{{\TeX}82 on CP-6}", journal = j-TUGboat, volume = "4", number = "2", pages = "73--74", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plass:TB4-2-74, author = "Susan Plass", title = "{IBM site report}", journal = j-TUGboat, volume = "4", number = "2", pages = "74--74", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB4-2-74, author = "Richard Furuta", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "4", number = "2", pages = "74--75", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB4-2-75, author = "Monte C. Nichols", title = "{{\VAX}/VMS site report}", journal = j-TUGboat, volume = "4", number = "2", pages = "75--76", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mooney:TB4-2-76, author = "Jim Mooney", title = "{Revised Varian output driver in {\VAX}/VMS Fortran}", journal = j-TUGboat, volume = "4", number = "2", pages = "76--76", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB4-2-76, author = "Pierre MacKay", title = "{{\TeX} for Arabic script}", journal = j-TUGboat, volume = "4", number = "2", pages = "76--96", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08mackay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB4-2-77, author = "Lance Carnes", title = "{Table of ``small'' {\TeX} implementations}", journal = j-TUGboat, volume = "4", number = "2", pages = "77--7", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08carnes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB4-2-78, author = "Lynne Price", title = "{Problems from the TUG meeting: Framed slides; Multiple marks}", journal = j-TUGboat, volume = "4", number = "2", pages = "78--79", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08price.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-79, author = "Anonymous", title = "{{\TUB} macro index}", journal = j-TUGboat, volume = "4", number = "2", pages = "79--80", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08tubmacidx.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sterken:TB4-2-80, author = "Jim Sterken", title = "First line of paragraph", journal = j-TUGboat, volume = "4", number = "2", pages = "80--81", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08sterken.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB4-2-103, author = "Michael Spivak", title = "{Summary of {\AmSTeX}}", journal = j-TUGboat, volume = "4", number = "2", pages = "103--126", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08spivak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-127, author = "Anonymous", title = "{Textset, Inc.}", journal = j-TUGboat, volume = "4", number = "2", pages = "127--127", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-127-2, author = "Anonymous", title = "{{\TeX} lectures on tape}", journal = j-TUGboat, volume = "4", number = "2", pages = "127--127", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-128, author = "Anonymous", title = "{Imagen Corporation\Dash Intelligent page printer systems}", journal = j-TUGboat, volume = "4", number = "2", pages = "128--128", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb04-2/tb08ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-129, author = "Anonymous", title = "{{\TeX}82 Order Form}", journal = j-TUGboat, volume = "4", number = "2", pages = "129--130", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB4-2-131, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "4", number = "2", pages = "131--132", month = sep, year = "1983", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "8", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-2, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "5", number = "1", pages = "2--2", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-3, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "5", number = "1", pages = "3--3", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB5-1-4, author = "Pierre MacKay", title = "Message from the {President}", journal = j-TUGboat, volume = "5", number = "1", pages = "4--4", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB5-1-4, author = "Donald E. Knuth", title = "{{\TeX} incunabula}", journal = j-TUGboat, volume = "5", number = "1", pages = "4--11", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB5-1-12, author = "Samuel B. Whidden", title = "{TUG 1983 financial report with comparisons}", journal = j-TUGboat, volume = "5", number = "1", pages = "12--13", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-13, author = "Anonymous", title = "{Preliminary program\Dash {August} 1984 Stanford meeting}", journal = j-TUGboat, volume = "5", number = "1", pages = "13--14", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09meet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Canzii:TB5-1-14, author = "G. Canzii and F. Genolini and D. Lucarella", title = "{Hyphenation of Italian words}", journal = j-TUGboat, volume = "5", number = "1", pages = "14--15", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09canzii.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-15, author = "Anonymous", title = "Hyphenation exception log", journal = j-TUGboat, volume = "5", number = "1", pages = "15--15", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09canzii.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-16, author = "Anonymous", title = "{Chart: Output devices and computers}", journal = j-TUGboat, volume = "5", number = "1", pages = "16--16", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-17, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "5", number = "1", pages = "17--17", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haus:TB5-1-17, author = "Goffredo Haus", title = "{How to tame your phototypesetter by {\TeX}}", journal = j-TUGboat, volume = "5", number = "1", pages = "17--17", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Noot:TB5-1-18, author = "Han Noot", title = "{DVI-code to the Harris 7500}", journal = j-TUGboat, volume = "5", number = "1", pages = "18--21", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB5-1-22, author = "David Fuchs", title = "{News from the {\TeX} Project}", journal = j-TUGboat, volume = "5", number = "1", pages = "22--23", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lofstedt:TB5-1-23, author = "Benedict L{\o}fstedt", title = "{CDC {\TeX} at RECAU}", journal = j-TUGboat, volume = "5", number = "1", pages = "23--23", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB5-1-24, author = "Dean Guenther and Alan Hagen-Wittbecker and Janene Winter", title = "{\TeX} at {Washington State University}", journal = j-TUGboat, volume = "5", number = "1", pages = "24--5", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB5-1-26, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "5", number = "1", pages = "26--26", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB5-1-26-2, author = "Bart Childs", title = "Prime site report", journal = j-TUGboat, volume = "5", number = "1", pages = "26--26", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB5-1-27, author = "Richard Furuta", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "5", number = "1", pages = "27--28", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rodgers:TB5-1-28, author = "D. L. Rodgers and J. J. Sterken and P. Grosso", title = "{{\TeX} 1.0 on Sun workstations}", journal = j-TUGboat, volume = "5", number = "1", pages = "28--29", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nichols:TB5-1-29, author = "Monte C. Nichols", title = "{{\VAX}/{VMS} site report}", journal = j-TUGboat, volume = "5", number = "1", pages = "29--30", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kellerman:TB5-1-30, author = "David Kellerman and Barry Smith", title = "{Notice to {\VAX}/{VMS} users}", journal = j-TUGboat, volume = "5", number = "1", pages = "30--30", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-31, author = "Anonymous", title = "{Metafont Generic Font file format}", journal = j-TUGboat, volume = "5", number = "1", pages = "31--33", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09gf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-34, author = "Anonymous", title = "{Gray fonts for Metafont proofs}", journal = j-TUGboat, volume = "5", number = "1", pages = "34--35", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09gray.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB5-1-36, author = "Georgia K. M. Tobin", title = "{The OCLC Roman family of fonts}", journal = j-TUGboat, volume = "5", number = "1", pages = "36--46", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB5-1-47, author = "Lance Carnes", title = "{Table of ``small'' {\TeX} implementations}", journal = j-TUGboat, volume = "5", number = "1", pages = "47--47", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09carnes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB5-1-48, author = "Barbara Beeton", title = "{{\tt\bs relax} and watch the numbers}", journal = j-TUGboat, volume = "5", number = "1", pages = "48--48", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Daniels:TB5-1-49, author = "Susan Daniels", title = "{The HP {\TeX} macros}", journal = j-TUGboat, volume = "5", number = "1", pages = "49--66", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09daniels.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB5-1-67, author = "Don Knuth", title = "Comments on quality in publishing", journal = j-TUGboat, volume = "5", number = "1", pages = "67--67", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-67, author = "Anonymous", title = "Classified", journal = j-TUGboat, volume = "5", number = "1", pages = "67--67", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-68, author = "Anonymous", title = "{Textset, Inc.}", journal = j-TUGboat, volume = "5", number = "1", pages = "68--68", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-69, author = "Anonymous", title = "{{\TeX}82 Order Form}", journal = j-TUGboat, volume = "5", number = "1", pages = "69--70", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-1/tb09backm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-1-71, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "5", number = "1", pages = "71--72", month = may, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "9", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-74, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "5", number = "2", pages = "74--74", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-75, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "5", number = "2", pages = "75--75", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB5-2-76, author = "Pierre MacKay", title = "Message from the {President}", journal = j-TUGboat, volume = "5", number = "2", pages = "76--76", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Welland:TB5-2-77, author = "Robert Welland", title = "{Report of the Publications Committee}", journal = j-TUGboat, volume = "5", number = "2", pages = "77--77", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Keller:TB5-2-77, author = "Arthur Keller", title = "{Report of the Special Projects Committee}", journal = j-TUGboat, volume = "5", number = "2", pages = "77--78", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB5-2-78, author = "Barbara Beeton", title = "{Submitting items to {\TUB}}", journal = j-TUGboat, volume = "5", number = "2", pages = "78--78", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Southall:TB5-2-79, author = "Richard Southall", title = "First principles of typographic design for document production", journal = j-TUGboat, volume = "5", number = "2", pages = "79--90", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10south.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jurgensen:TB5-2-91, author = "Helmut J{\"u}rgensen", title = "Editor's introduction", journal = j-TUGboat, volume = "5", number = "2", pages = "91--91", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10jurg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Desarmenien:TB5-2-91, author = "Jacques D{\'e}sarm{\'e}nien", title = "{How to run {\TeX} in a French environment: Hyphenation, fonts, typography}", journal = j-TUGboat, volume = "5", number = "2", pages = "91--102", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10desarm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schulze:TB5-2-103, author = "Bernd Schulze", title = "{German hyphenation and {\it Umlaut\/}s in {\TeX}}", journal = j-TUGboat, volume = "5", number = "2", pages = "103--104", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10schulze.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB5-2-105, author = "Donald E. Knuth", title = "{A course on {\MF} programming}", journal = j-TUGboat, volume = "5", number = "2", pages = "105--118", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hobby:TB5-2-119, author = "John D. Hobby and Gu Guoan", title = "{A Chinese meta-font}", journal = j-TUGboat, volume = "5", number = "2", pages = "119--136", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10hobby.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-137, author = "Anonymous", title = "{Chart: Output devices and computers}", journal = j-TUGboat, volume = "5", number = "2", pages = "137--137", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-138, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "5", number = "2", pages = "138--138", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB5-2-138, author = "Tom Rokicki", title = "{{\tt Dvi\_QMS}: an example of a driver}", journal = j-TUGboat, volume = "5", number = "2", pages = "138--139", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB5-2-139, author = "Tom Rokicki", title = "{\tt\char`\\special}", journal = j-TUGboat, volume = "5", number = "2", pages = "139--140", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB5-2-141, author = "David Fuchs", title = "{News from the {\TeX} Project}", journal = j-TUGboat, volume = "5", number = "2", pages = "141--141", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-141, author = "Anonymous", title = "{{\TeX} users' activity in Germany}", journal = j-TUGboat, volume = "5", number = "2", pages = "141--141", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crawford:TB5-2-141, author = "John Crawford", title = "Prime site report", journal = j-TUGboat, volume = "5", number = "2", pages = "141--141", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB5-2-142, author = "Richard Furuta", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "5", number = "2", pages = "142--142", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB5-2-142, author = "Barry Smith", title = "{{\VAX}/{VMS} site report}", journal = j-TUGboat, volume = "5", number = "2", pages = "142--142", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Felippa:TB5-2-143, author = "Carlos A. Felippa", title = "{Feedback from {\TeX} users at Lockheed}", journal = j-TUGboat, volume = "5", number = "2", pages = "143--144", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB5-2-145, author = "Lance Carnes", title = "{Table of ``small'' {\TeX} implementations}", journal = j-TUGboat, volume = "5", number = "2", pages = "145--145", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10carnes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB5-2-146, author = "Malcolm Clark", title = "{Mathematical communication with a deaf and blind student using {\TeX}}", journal = j-TUGboat, volume = "5", number = "2", pages = "146--146", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10lettnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-146, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "5", number = "2", pages = "146--146", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10lettnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-147, author = "Anonymous", title = "{Call for papers: {\TeX} for scientific documentation, Varenna, Italy, May 16--17, 1985}", journal = j-TUGboat, volume = "5", number = "2", pages = "147--147", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10lettnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB5-2-148, author = "Samuel B. Whidden", title = "{{\TUG} 1984 financial report with comparisons}", journal = j-TUGboat, volume = "5", number = "2", pages = "148--149", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10tugbus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dupree:TB5-2-149, author = "Chuck Dupree", title = "{Report of the August 1984 {\SC} meeting}", journal = j-TUGboat, volume = "5", number = "2", pages = "149--152", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10tugbus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-153, author = "Anonymous", title = "{Profile of {\TeX} installations available to TUG members}", journal = j-TUGboat, volume = "5", number = "2", pages = "153--155", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10instprof.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-156, author = "Anonymous", title = "{Talaris talks {\TeX}}", journal = j-TUGboat, volume = "5", number = "2", pages = "156--157", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-158, author = "Anonymous", title = "{Quality Micro Systems, Inc.}", journal = j-TUGboat, volume = "5", number = "2", pages = "158--158", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-159, author = "Anonymous", title = "{Textset, Inc.}", journal = j-TUGboat, volume = "5", number = "2", pages = "159--159", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-160, author = "Anonymous", title = "{The Metafoundry}", journal = j-TUGboat, volume = "5", number = "2", pages = "160--160", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-160-2, author = "Anonymous", title = "{Instructors wanted for TUG courses}", journal = j-TUGboat, volume = "5", number = "2", pages = "160--160", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-161, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "5", number = "2", pages = "161--164", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10backm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-165, author = "Anonymous", title = "{Order form for {\AMS} publications}", journal = j-TUGboat, volume = "5", number = "2", pages = "165--166", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10backm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB5-2-167, author = "Anonymous", title = "{{\TeX}82 order form}", journal = j-TUGboat, volume = "5", number = "2", pages = "167--168", month = nov, year = "1984", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb05-2/tb10backm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "10", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-2, author = "Anonymous", title = "{Addresses of Officers, Authors and Others}", journal = j-TUGboat, volume = "6", number = "1", pages = "2--2", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-3, author = "Anonymous", title = "{Official Announcements}", journal = j-TUGboat, volume = "6", number = "1", pages = "3--3", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB6-1-4, author = "Pierre MacKay", title = "Message from the {President}", journal = j-TUGboat, volume = "6", number = "1", pages = "4--4", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beck:TB6-1-4, author = "Lawrence A. Beck", title = "{ANSI X3V1.8 Liaison Report to the {\TUG}}", journal = j-TUGboat, volume = "6", number = "1", pages = "4--5", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-5, author = "Anonymous", title = "{Acknowledgement of Contributions}", journal = j-TUGboat, volume = "6", number = "1", pages = "5--5", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Southall:TB6-1-6, author = "Richard Southall", title = "{First principles of typographic design for document production: Corrigenda}", journal = j-TUGboat, volume = "6", number = "1", pages = "6--6", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eppstein:TB6-1-7, author = "Maureen Eppstein", title = "Editor's introduction", journal = j-TUGboat, volume = "6", number = "1", pages = "7--7", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11meppstein.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-8, author = "Anonymous", title = "Generic font file format", journal = j-TUGboat, volume = "6", number = "1", pages = "8--12", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11gf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB6-1-12, author = "G. K. M. Tobin", title = "A bit of doggerel", journal = j-TUGboat, volume = "6", number = "1", pages = "12--12", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-13, author = "Anonymous", title = "{Chart: Output devices and computers}", journal = j-TUGboat, volume = "6", number = "1", pages = "13--15", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB6-1-15, author = "Richard Furuta", title = "{Device drivers included on the UNIX {\TeX} distribution tape}", journal = j-TUGboat, volume = "6", number = "1", pages = "15--15", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-15, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "6", number = "1", pages = "15--15", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Luvisetto:TB6-1-15, author = "M. L. Luvisetto and E. Ugolini", title = "{A {\TeX}82 spooler for VT and dot matrix printers}", journal = j-TUGboat, volume = "6", number = "1", pages = "15--16", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-16, author = "Anonymous", title = "{How to get the latest news via {\TeX}hax}", journal = j-TUGboat, volume = "6", number = "1", pages = "16--17", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crawford:TB6-1-17, author = "John Crawford", title = "Prime site report", journal = j-TUGboat, volume = "6", number = "1", pages = "17--17", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB6-1-18, author = "Richard Furuta", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "6", number = "1", pages = "18--20", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB6-1-20, author = "Barry Smith", title = "{{\VAX/VMS site report}}", journal = j-TUGboat, volume = "6", number = "1", pages = "20--20", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cumiskey:TB6-1-21, author = "James A. Cumiskey", title = "{{\TeX} for tourists}", journal = j-TUGboat, volume = "6", number = "1", pages = "21--25", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB6-1-26, author = "Lance Carnes", title = "{Table of ``small'' {\TeX} implementations}", journal = j-TUGboat, volume = "6", number = "1", pages = "26--26", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11small.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Company:TB6-1-27, author = "Addison-Wesley Publishing Company", title = "{{\TeX} now on microcomputers}", journal = j-TUGboat, volume = "6", number = "1", pages = "27--28", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11small.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB6-1-28, author = "Lance Carnes", title = "{PC\thinspace\TeX}", journal = j-TUGboat, volume = "6", number = "1", pages = "28--29", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11small.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Platt:TB6-1-29, author = "Craig Platt", title = "Macros for two-column format", journal = j-TUGboat, volume = "6", number = "1", pages = "29--30", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11platt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eppstein:TB6-1-31, author = "David Eppstein", title = "{Trees in {\TeX}}", journal = j-TUGboat, volume = "6", number = "1", pages = "31--35", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11deppstein.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB6-1-36, author = "Donald E. Knuth", title = "Recipes and fractions", journal = j-TUGboat, volume = "6", number = "1", pages = "36--38", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-38, author = "Anonymous", title = "{{\TeX}, the program}", journal = j-TUGboat, volume = "6", number = "1", pages = "38--38", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-39, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "6", number = "1", pages = "39--39", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-39-2, author = "Anonymous", title = "{Conference: {\TeX} for scientific documentation, Como, Italy, May 16--17, 1985}", journal = j-TUGboat, volume = "6", number = "1", pages = "39--39", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-39-3, author = "Anonymous", title = "{TUG Annual Meeting, Stanford University, August 14--16, 1985}", journal = j-TUGboat, volume = "6", number = "1", pages = "39--39", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-40, author = "Anonymous", title = "{{\TeX} and {\MF} reports available from Stanford Computer Science Department}", journal = j-TUGboat, volume = "6", number = "1", pages = "40--40", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-41, author = "Anonymous", title = "{Textset, Inc.\Dash {\TeX} and the IBM PC, \TeX-to-PostScript}", journal = j-TUGboat, volume = "6", number = "1", pages = "41--41", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-42, author = "Anonymous", title = "{Addison-Wesley\Dash Micro{\TeX}}", journal = j-TUGboat, volume = "6", number = "1", pages = "42--42", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-43, author = "Anonymous", title = "{TUG\Dash {\TeX} Lectures on Tape}", journal = j-TUGboat, volume = "6", number = "1", pages = "43--43", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-44, author = "Anonymous", title = "{Textset, Inc.\Dash Professional {\TeX}ware}", journal = j-TUGboat, volume = "6", number = "1", pages = "44--44", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-445, author = "Anonymous", title = "Talaris", journal = j-TUGboat, volume = "6", number = "1", pages = "445", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-446, author = "Anonymous", title = "{Personal {\TeX}, Inc.\Dash PC\thinspace{\TeX}}", journal = j-TUGboat, volume = "6", number = "1", pages = "446", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-1/tb11ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-cover-3, author = "Anonymous", title = "{Intergraph Corporation}", journal = j-TUGboat, volume = "6", number = "1", pages = "Cover 3", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-47, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "6", number = "1", pages = "47--48", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-49, author = "Anonymous", title = "{Order form for {\AMS} publications}", journal = j-TUGboat, volume = "6", number = "1", pages = "49--50", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-1-51, author = "Anonymous", title = "{{\TeX}82 order form}", journal = j-TUGboat, volume = "6", number = "1", pages = "51--52", month = mar, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "11", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-54, author = "Anonymous", title = "{Addresses of Officers, Authors and Others}", journal = j-TUGboat, volume = "6", number = "2", pages = "54--54", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-55, author = "Anonymous", title = "{Official Announcements}", journal = j-TUGboat, volume = "6", number = "2", pages = "55--55", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-56, author = "Anonymous", title = "{TUG 1985 Annual Meeting, Stanford University, August 12--14, 1985}", journal = j-TUGboat, volume = "6", number = "2", pages = "56--56", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jurgensen:TB6-2-56, author = "Helmut J{\"u}rgensen", title = "Editor's message", journal = j-TUGboat, volume = "6", number = "2", pages = "56--56", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ferguson:TB6-2-57, author = "Michael J. Ferguson", title = "{A multilingual {\mtex}}", journal = j-TUGboat, volume = "6", number = "2", pages = "57--58", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ferguson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB6-2-59, author = "Barbara Beeton", title = "Mathematical symbols and cyrillic fonts ready for distribution", journal = j-TUGboat, volume = "6", number = "2", pages = "59--63", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-64, author = "Anonymous", title = "{Chart: Output devices and computers}", journal = j-TUGboat, volume = "6", number = "2", pages = "64--66", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-66, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "6", number = "2", pages = "66--66", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spragens:TB6-2-66, author = "Alan Spragens", title = "{Graphics commands for {\TeX}\Dash Discussion in {\TeX}hax conference}", journal = j-TUGboat, volume = "6", number = "2", pages = "66--68", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12spragens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Naugle:TB6-2-69, author = "Norman W. Naugle and Tomas G. Rokicki", title = "{Miscellaneous activity at Texas A\&M}", journal = j-TUGboat, volume = "6", number = "2", pages = "69--72", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12naugle.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-73, author = "Anonymous", title = "{{\TeX}hax activity at Spring DECUS}", journal = j-TUGboat, volume = "6", number = "2", pages = "73--73", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spragens:TB6-2-73, author = "Alan Spragens", title = "{CMS {\TeX} site report}", journal = j-TUGboat, volume = "6", number = "2", pages = "73--75", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Riesel:TB6-2-76, author = "Hans Riesel", title = "{Report on experience with {\TeX}80}", journal = j-TUGboat, volume = "6", number = "2", pages = "76--79", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Marriott:TB6-2-80, author = "Gregory Marriott", title = "{A {\TeX}82 implementation on the HP9000 series 500}", journal = j-TUGboat, volume = "6", number = "2", pages = "80--80", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB6-2-81, author = "Richard Furuta", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "6", number = "2", pages = "81--81", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB6-2-81, author = "Barry Smith", title = "{{\VAX}/VMS site report}", journal = j-TUGboat, volume = "6", number = "2", pages = "81--81", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB6-2-82, author = "Lance Carnes", title = "{Table of ``small'' {\TeX} implementations}", journal = j-TUGboat, volume = "6", number = "2", pages = "82--82", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12small.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hendrickson:TB6-2-83, author = "Amy Hendrickson", title = "Some diagonal line hacks", journal = j-TUGboat, volume = "6", number = "2", pages = "83--86", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12hendiag.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hendrickson:TB6-2-86, author = "Amy Hendrickson", title = "A (possibly) totally useless macro", journal = j-TUGboat, volume = "6", number = "2", pages = "86--86", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12henduseless.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mohr:TB6-2-87, author = "August Mohr", title = "{Multi-column layout in {\TeX}80}", journal = j-TUGboat, volume = "6", number = "2", pages = "87--95", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12mohr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bonnetain:TB6-2-96, author = "Jean-Luc Bonnetain", title = "{Author vs.\ proofreader}", journal = j-TUGboat, volume = "6", number = "2", pages = "96--96", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Greene:TB6-2-96, author = "John Greene", title = "{Transatlantic {\TeX}}", journal = j-TUGboat, volume = "6", number = "2", pages = "96--96", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-97, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "6", number = "2", pages = "97--97", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-98, author = "Anonymous", title = "{International Conference on Text Processing and Document Manipulation, Nottingham, England, April 14--16, 1986}", journal = j-TUGboat, volume = "6", number = "2", pages = "98--98", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-98-2, author = "Anonymous", title = "{PROTEXT II, Dublin, Ireland, October 21--25, 1985}", journal = j-TUGboat, volume = "6", number = "2", pages = "98--98", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB6-2-99, author = "Samuel B. Whidden", title = "{TUG 1984 financial report with comparisons}", journal = j-TUGboat, volume = "6", number = "2", pages = "99--100", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-100, author = "Anonymous", title = "{The Metafoundry\Dash Introducing {\smc mf medley}}", journal = j-TUGboat, volume = "6", number = "2", pages = "100--100", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-101, author = "Anonymous", title = "{{\TeX} and {\MF} reports available from the Stanford Computer Science Department}", journal = j-TUGboat, volume = "6", number = "2", pages = "101--101", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-102, author = "Anonymous", title = "{Addison-Wesley\Dash Micro{\TeX}}", journal = j-TUGboat, volume = "6", number = "2", pages = "102--102", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-103, author = "Anonymous", title = "{Textset, Inc.}", journal = j-TUGboat, volume = "6", number = "2", pages = "103--103", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-104, author = "Anonymous", title = "{Personal {\TeX}, Inc.\Dash PC\thinspace{\TeX} is here}", journal = j-TUGboat, volume = "6", number = "2", pages = "104--104", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-2/tb12ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-cover-3, author = "Anonymous", title = "{{\TeX} lectures on tape}", journal = j-TUGboat, volume = "6", number = "2", pages = "Cover 3", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-105, author = "Anonymous", title = "Membership application and order form", journal = j-TUGboat, volume = "6", number = "2", pages = "105--106", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-2-107, author = "Anonymous", title = "{{\TeX}82 order form}", journal = j-TUGboat, volume = "6", number = "2", pages = "107--108", month = jul, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "12", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-110, author = "Anonymous", title = "Addresses of officers, authors and others", journal = j-TUGboat, volume = "6", number = "3", pages = "110--110", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-111, author = "Anonymous", title = "Official announcements", journal = j-TUGboat, volume = "6", number = "3", pages = "111--111", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13ann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB6-3-112, author = "Pierre MacKay", title = "Message from the outgoing {President}", journal = j-TUGboat, volume = "6", number = "3", pages = "112--113", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB6-3-113, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "6", number = "3", pages = "113--114", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-114, author = "Anonymous", title = "Statement of principles", journal = j-TUGboat, volume = "6", number = "3", pages = "114--114", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB6-3-115, author = "Tomas Rokicki", title = "{Packed ({\tt PK}) font file format}", journal = j-TUGboat, volume = "6", number = "3", pages = "115--120", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13pk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-121, author = "Anonymous", title = "Hyphenation exception log", journal = j-TUGboat, volume = "6", number = "3", pages = "121--121", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB6-3-122, author = "Georgia K. M. Tobin", title = "Editor's introduction", journal = j-TUGboat, volume = "6", number = "3", pages = "122--123", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB6-3-124, author = "Barbara Beeton", title = "Mathematical symbols and cyrillic fonts ready for distribution (revised)", journal = j-TUGboat, volume = "6", number = "3", pages = "124--128", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13beetcyr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-129, author = "Anonymous", title = "{Charts: Output devices and computers}", journal = j-TUGboat, volume = "6", number = "3", pages = "129--131", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-131, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "6", number = "3", pages = "131--131", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-131-2, author = "Anonymous", title = "{The {\TeX} directories at the ``source''\Dash Stanford}", journal = j-TUGboat, volume = "6", number = "3", pages = "131--132", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-132, author = "Anonymous", title = "{{\TeX} in the UK and Ireland: \TeX line}", journal = j-TUGboat, volume = "6", number = "3", pages = "132--132", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB6-3-132, author = "Bart Childs", title = "{Data General distribution news}", journal = j-TUGboat, volume = "6", number = "3", pages = "132--133", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Platt:TB6-3-133, author = "Craig Platt", title = "{MVS {\TeX} site report}", journal = j-TUGboat, volume = "6", number = "3", pages = "133--134", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB6-3-134, author = "Dean Guenther", title = "{{\TeX} at Washington State University}", journal = j-TUGboat, volume = "6", number = "3", pages = "134--134", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hayashi:TB6-3-135, author = "Tsunetoshi Hayashi", title = "{Reports on {\TeX} implementation at HUCC}", journal = j-TUGboat, volume = "6", number = "3", pages = "135--136", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Furuta:TB6-3-137, author = "Richard Furuta", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "6", number = "3", pages = "137--138", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB6-3-139, author = "Barry Smith", title = "{{\VAX/VMS site report}}", journal = j-TUGboat, volume = "6", number = "3", pages = "139--139", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-139, author = "Anonymous", title = "{Table of ``small'' {\TeX} implementations}", journal = j-TUGboat, volume = "6", number = "3", pages = "139--139", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13small.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pfeffer:TB6-3-140, author = "Mitch Pfeffer and Alan Hoenig", title = "{Assembling a moderately-priced, high-performance clone of the IBM PC for running \TeX}", journal = j-TUGboat, volume = "6", number = "3", pages = "140--145", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13pfeffer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB6-3-146, author = "Barbara Beeton", title = "{Review: The Boston Computer Society's IBM PC \& compatibles technical word processor review}", journal = j-TUGboat, volume = "6", number = "3", pages = "146--149", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13beetrev.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB6-3-150, author = "Barbara Beeton", title = "{The {\tt PLAIN} truth: {\tt\bs buildrel}}", journal = j-TUGboat, volume = "6", number = "3", pages = "150--150", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13beetplain.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB6-3-150, author = "Leslie Lamport", title = "{Announcement of {\LaTeX} Version 2.09}", journal = j-TUGboat, volume = "6", number = "3", pages = "150--151", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13lamport.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Leban:TB6-3-151, author = "Bruce Leban", title = "{A solution to the tower of Hanoi problem using {\TeX}}", journal = j-TUGboat, volume = "6", number = "3", pages = "151--154", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13leban.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cameron:TB6-3-155, author = "A. G. W. Cameron", title = "Wiggly lines", journal = j-TUGboat, volume = "6", number = "3", pages = "155--155", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13cameron.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wonneberger:TB6-3-156, author = "Reinhard Wonneberger", title = "{Stream lists and related list types for {\LaTeX}}", journal = j-TUGboat, volume = "6", number = "3", pages = "156--157", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13wonneberger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-158, author = "Anonymous", title = "{{\LaTeX} command summary (Version 2.05) available from TUG}", journal = j-TUGboat, volume = "6", number = "3", pages = "158--158", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hendricks:TB6-3-158, author = "Rick Hendricks", title = "{Inquiry: Historical compilations}", journal = j-TUGboat, volume = "6", number = "3", pages = "158--158", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hornbach:TB6-3-158, author = "Kathy Hornbach", title = "{Inquiry: 35mm slides with Sli{\TeX}}", journal = j-TUGboat, volume = "6", number = "3", pages = "158--158", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-159, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "6", number = "3", pages = "159--159", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-159-2, author = "Anonymous", title = "Acknowledgement of contributions", journal = j-TUGboat, volume = "6", number = "3", pages = "159--159", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-160, author = "Anonymous", title = "{{\TeX} for Scientific Documentation, Strasbourg, France, June 19--21, 1986}", journal = j-TUGboat, volume = "6", number = "3", pages = "160--160", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-cover-3, author = "Anonymous", title = "{TUG Annual Meeting, Tufts University, July 28--31, 1986}", journal = j-TUGboat, volume = "6", number = "3", pages = "Cover 3", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB6-3-161, author = "Samuel B. Whidden", title = "{Proposed TUG 1986 budget}", journal = j-TUGboat, volume = "6", number = "3", pages = "161--161", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-162, author = "Anonymous", title = "{Addison-Wesley\Dash Micro{\TeX}}", journal = j-TUGboat, volume = "6", number = "3", pages = "162--162", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-163, author = "Anonymous", title = "{Textset, Inc.}", journal = j-TUGboat, volume = "6", number = "3", pages = "163--163", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-164, author = "Anonymous", title = "{TUG\Dash {\TeX} lectures on videotape}", journal = j-TUGboat, volume = "6", number = "3", pages = "164--165", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-166, author = "Anonymous", title = "{Personal {\TeX}, Inc.\Dash PC\thinspace{\TeX}}", journal = j-TUGboat, volume = "6", number = "3", pages = "166--166", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb06-3/tb13ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-167, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "6", number = "3", pages = "167--168", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-169, author = "Anonymous", title = "{TUG order form}", journal = j-TUGboat, volume = "6", number = "3", pages = "169--172", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB6-3-173, author = "Anonymous", title = "{{\TeX}82 order form}", journal = j-TUGboat, volume = "6", number = "3", pages = "173--174", month = nov, year = "1985", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "13", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-4, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "7", number = "1", pages = "4--5", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-6, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "7", number = "1", pages = "6--6", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB7-1-7, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "7", number = "1", pages = "7--7", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-7, author = "Anonymous", title = "Acknowledgment of contributions", journal = j-TUGboat, volume = "7", number = "1", pages = "7--7", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-7-2, author = "Anonymous", title = "{Donald E. Knuth Scholarship}", journal = j-TUGboat, volume = "7", number = "1", pages = "7--7", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-8, author = "Anonymous", title = "Special credits for this issue", journal = j-TUGboat, volume = "7", number = "1", pages = "8--8", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-8-2, author = "Anonymous", title = "{Conference: \TeX\ for Scientific Documentation}", journal = j-TUGboat, volume = "7", number = "1", pages = "8--8", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-8-3, author = "Anonymous", title = "{\TeX} Courses", journal = j-TUGboat, volume = "7", number = "1", pages = "8--9", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-9, author = "Anonymous", title = "{Software Column: Call for Papers}", journal = j-TUGboat, volume = "7", number = "1", pages = "9--10", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-10, author = "Anonymous", title = "{Addenda: The BCS Word Processor Review}", journal = j-TUGboat, volume = "7", number = "1", pages = "10--10", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB7-1-11, author = "Leslie Lamport", title = "{\LaTeX} input to {ACM} journals", journal = j-TUGboat, volume = "7", number = "1", pages = "11--11", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Howell:TB7-1-11, author = "Gordon Howell", title = "Translators to generate {\TeX} files", journal = j-TUGboat, volume = "7", number = "1", pages = "11--11", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuchs:TB7-1-12, author = "David Fuchs", title = "{News from the \TeX\ Project}", journal = j-TUGboat, volume = "7", number = "1", pages = "12--12", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB7-1-12, author = "Jim Fox", title = "{CDC Cyber Site Report}", journal = j-TUGboat, volume = "7", number = "1", pages = "12--12", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB7-1-12, author = "Bart Childs", title = "{Data General Site Report}", journal = j-TUGboat, volume = "7", number = "1", pages = "12--12", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB7-1-13, author = "Barry Smith", title = "{Macintosh Site Report}", journal = j-TUGboat, volume = "7", number = "1", pages = "13--13", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB7-1-13, author = "Pierre MacKay", title = "{UNIX\ Site Report}", journal = j-TUGboat, volume = "7", number = "1", pages = "13--14", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB7-1-15, author = "Barry Smith", title = "{VAX/VMS Site Report}", journal = j-TUGboat, volume = "7", number = "1", pages = "15--15", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB7-1-15, author = "Leslie Lamport", title = "{{\LaTeX} News}", journal = j-TUGboat, volume = "7", number = "1", pages = "15--16", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ferguson:TB7-1-16, author = "Michael Ferguson", title = "{Multilingual \mtex\ update}", journal = j-TUGboat, volume = "7", number = "1", pages = "16--16", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14short.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Auerbach:TB7-1-17, author = "Alan Auerbach", title = "Automatic page sizing", journal = j-TUGboat, volume = "7", number = "1", pages = "17--17", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-17, author = "Anonymous", title = "{Where to find \TeX\ file descriptions}", journal = j-TUGboat, volume = "7", number = "1", pages = "17--17", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB7-1-18, author = "B. Beeton", title = "{The PLAIN truth: {\tt\bs displaylines}, {\tt\bs ialign}}", journal = j-TUGboat, volume = "7", number = "1", pages = "18--19", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Appelt:TB7-1-20, author = "W. Appelt and K. Horn", title = "{Multiple changefiles in {\tt WEB}}", journal = j-TUGboat, volume = "7", number = "1", pages = "20--21", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14appelt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damerell:TB7-1-22, author = "R. M. Damerell", title = "{Error detecting changes to TANGLE}", journal = j-TUGboat, volume = "7", number = "1", pages = "22--24", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14damerell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Trevorrow:TB7-1-25, author = "A. Trevorrow", title = "{DVIto\kern-.15em VDU: A \TeX\ page previewer}", journal = j-TUGboat, volume = "7", number = "1", pages = "25--36", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14trevorrow.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Varian:TB7-1-37, author = "H. Varian and J. Sterken", title = "{MacDraw pictures in \TeX\ documents}", journal = j-TUGboat, volume = "7", number = "1", pages = "37--40", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14varian.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Maus:TB7-1-41, author = "D. Maus and B. Baker", title = "{DVILASER/PS extensions to \LaTeX}", journal = j-TUGboat, volume = "7", number = "1", pages = "41--47", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14maus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fina:TB7-1-48, author = "P. Fina", title = "{Results of the 1985 TUG Questionnaire}", journal = j-TUGboat, volume = "7", number = "1", pages = "48--50", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14fina.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB7-1-51, author = "A. Hoenig and M. Pfeffer", title = "{{\TeX} text editors for the IBM PC}", journal = j-TUGboat, volume = "7", number = "1", pages = "51--54", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Senn:TB7-1-55, author = "M. Senn", title = "{{\TeX} output previewers}", journal = j-TUGboat, volume = "7", number = "1", pages = "55--56", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14senn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB7-1-57, author = "B. Beeton", title = "{{\TeX} output devices}", journal = j-TUGboat, volume = "7", number = "1", pages = "57--66", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB7-1-67, author = "B. Beeton", title = "{Memory Sizes in Various Implementations of \TeX}", journal = j-TUGboat, volume = "7", number = "1", pages = "67--70", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14mem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB7-1-71, author = "L. Carnes", title = "{``Small'' {\TeX} implementations}", journal = j-TUGboat, volume = "7", number = "1", pages = "71--72", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14small.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-73, author = "Anonymous", title = "{Institutional Members}", journal = j-TUGboat, volume = "7", number = "1", pages = "73--74", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-1/tb14instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-1-88, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "7", number = "1", pages = "88--88", month = mar, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "14", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-91, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "7", number = "2", pages = "91--92", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB7-2-93, author = "Barbara Beeton", title = "Comments on the format of this issue", journal = j-TUGboat, volume = "7", number = "2", pages = "93--93", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB7-2-93-2, author = "Barbara Beeton", title = "{{\sl Computers \& Typesetting\/} coming out party}", journal = j-TUGboat, volume = "7", number = "2", pages = "93--93", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gordon:TB7-2-93, author = "Peter Gordon", title = "{Introducing Donald Knuth and {\sl Computers \& Typesetting}}", journal = j-TUGboat, volume = "7", number = "2", pages = "93--95", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15gordon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB7-2-95, author = "Donald Knuth", title = "{Remarks to celebrate the publication of {\sl Computers \& Typesetting}}", journal = j-TUGboat, volume = "7", number = "2", pages = "95--98", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackson:TB7-2-98, author = "Cal Jackson", title = "{Comments on document design prompted by the new {\TUB} format}", journal = j-TUGboat, volume = "7", number = "2", pages = "98--99", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15jackson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hornbach:TB7-2-99, author = "Kathy Hornbach", title = "{{\VAX\ Language Sensitive Editor Templates and Guide for use with \LaTeX}}", journal = j-TUGboat, volume = "7", number = "2", pages = "99--99", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15hornbach.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB7-2-100, author = "Georgia K. M. Tobin", title = "Font Forum", journal = j-TUGboat, volume = "7", number = "2", pages = "100--101", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB7-2-101, author = "Donald E. Knuth", title = "{The {\TeX} logo in various fonts}", journal = j-TUGboat, volume = "7", number = "2", pages = "101--102", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15knutlogo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB7-2-102, author = "Alan Hoenig", title = "{Meta-\MF: An exhibit at the Cooper Union, NYC}", journal = j-TUGboat, volume = "7", number = "2", pages = "102--102", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-102, author = "Anonymous", title = "Addenda to the output device charts", journal = j-TUGboat, volume = "7", number = "2", pages = "102--102", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB7-2-103, author = "Tomas Rokicki", title = "{\TeX} on the {Amiga}", journal = j-TUGboat, volume = "7", number = "2", pages = "103--103", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB7-2-103, author = "Jim Fox", title = "{CDC Cyber site report}", journal = j-TUGboat, volume = "7", number = "2", pages = "103--103", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crawford:TB7-2-103, author = "John Crawford", title = "{Prime 50 Series site report}", journal = j-TUGboat, volume = "7", number = "2", pages = "103--103", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pfeffer:TB7-2-104, author = "Mitch Pfeffer and Alan Hoenig", title = "{The Sperry IT: An IBM AT compatible}", journal = j-TUGboat, volume = "7", number = "2", pages = "104--105", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15pfeffer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ferguson:TB7-2-106, author = "Michael J. Ferguson", title = "{Table Making with INRS\TeX}", journal = j-TUGboat, volume = "7", number = "2", pages = "106--109", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ferg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Becker:TB7-2-109, author = "Helmut Becker", title = "{WEB system extensions}", journal = j-TUGboat, volume = "7", number = "2", pages = "109--109", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kennedy:TB7-2-109, author = "John Kennedy", title = "Drama scripts", journal = j-TUGboat, volume = "7", number = "2", pages = "109--109", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fernandez:TB7-2-110, author = "Sylvester Fernandez", title = "Marking changes in revised documents", journal = j-TUGboat, volume = "7", number = "2", pages = "110--110", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Alexander:TB7-2-110, author = "James Alexander", title = "{Side-by-side source/output samples; First-line special handling}", journal = j-TUGboat, volume = "7", number = "2", pages = "110--110", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kleine:TB7-2-111, author = "Karl Kleine", title = "{Customized editors for \TeX}", journal = j-TUGboat, volume = "7", number = "2", pages = "111--111", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ludden:TB7-2-111, author = "Jim Ludden", title = "Post-{\LaTeX} Index Formatting", journal = j-TUGboat, volume = "7", number = "2", pages = "111--111", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB7-2-111, author = "Mike Spivak", title = "Letters", journal = j-TUGboat, volume = "7", number = "2", pages = "111--111", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15spivak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-112, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "7", number = "2", pages = "112--112", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-113, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "7", number = "2", pages = "113--114", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-115, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "7", number = "2", pages = "115--116", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-117, author = "Anonymous", title = "{{\TeX82 order form}}", journal = j-TUGboat, volume = "7", number = "2", pages = "117--118", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-119, author = "Anonymous", title = "{Addison-Wesley\Dash Computers \& Typesetting}", journal = j-TUGboat, volume = "7", number = "2", pages = "119--119", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-120, author = "Anonymous", title = "{Personal \TeX, Inc.\Dash{\TeX} for the PC}", journal = j-TUGboat, volume = "7", number = "2", pages = "120--120", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-121, author = "Anonymous", title = "{Talaris\Dash Talaris 810}", journal = j-TUGboat, volume = "7", number = "2", pages = "121--121", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-122, author = "Anonymous", title = "{Computer Composition Corporation\Dash Typesetting services}", journal = j-TUGboat, volume = "7", number = "2", pages = "122--122", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-123, author = "Anonymous", title = "{Textset, Inc.\Dash New directions}", journal = j-TUGboat, volume = "7", number = "2", pages = "123--123", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-124, author = "Anonymous", title = "{FTL systems Inc.\Dash {\TeX} for the Macintosh}", journal = j-TUGboat, volume = "7", number = "2", pages = "124--124", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-2/tb15ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-2-cover-3, author = "Anonymous", title = "{Addison-Wesley\Dash {\TeX} news}", journal = j-TUGboat, volume = "7", number = "2", pages = "Cover 3", month = jun, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "15", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-127, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "7", number = "3", pages = "127--128", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB7-3-129, author = "Bart Childs", title = "Message from the {President}", journal = j-TUGboat, volume = "7", number = "3", pages = "129--130", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-130, author = "Anonymous", title = "{Donald E. Knuth Scholarship}", journal = j-TUGboat, volume = "7", number = "3", pages = "130--130", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB7-3-131, author = "Pierre MacKay", title = "{1987 Annual Meeting, Call for papers: {\TeX} for the Humanities}", journal = j-TUGboat, volume = "7", number = "3", pages = "131--131", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beck:TB7-3-132, author = "Lawrence A. Beck", title = "{Report from ANSI X3V1}", journal = j-TUGboat, volume = "7", number = "3", pages = "132--132", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wonneberger:TB7-3-132, author = "Reinhard Wonneberger", title = "Towards a {\TeX} philology group", journal = j-TUGboat, volume = "7", number = "3", pages = "132--133", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mann:TB7-3-133, author = "Laurie Mann", title = "An idea exchange on {\TeX} training", journal = j-TUGboat, volume = "7", number = "3", pages = "133--133", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guntermann:TB7-3-134, author = "Klaus Guntermann and Wolfgang R{\"u}lling", title = "Another approach to multiple changefiles", journal = j-TUGboat, volume = "7", number = "3", pages = "134--134", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gunterchange.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guntermann:TB7-3-134-2, author = "Klaus Guntermann and Joachim Schrod", title = "{{\WEB\ adapted to C}}", journal = j-TUGboat, volume = "7", number = "3", pages = "134--137", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16gunterweb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Alexander:TB7-3-138, author = "James Alexander", title = "{{\Tib: a reference setting package for \TeX}}", journal = j-TUGboat, volume = "7", number = "3", pages = "138--140", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16alexander.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB7-3-140, author = "Tomas Rokicki", title = "Packed file format update", journal = j-TUGboat, volume = "7", number = "3", pages = "140--144", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16pk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-145, author = "Anonymous", title = "Hyphenation exception log", journal = j-TUGboat, volume = "7", number = "3", pages = "145--145", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bigelow:TB7-3-146, author = "Charles Bigelow", title = "Notes on typeface protection", journal = j-TUGboat, volume = "7", number = "3", pages = "146--151", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16bigelow.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sauter:TB7-3-151, author = "John Sauter", title = "{Building Computer Modern Fonts}", journal = j-TUGboat, volume = "7", number = "3", pages = "151--152", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16sauter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jansen:TB7-3-152, author = "Rick Jansen", title = "{\TeX} and {Macintosh}\Dash new directions in {Preview}", journal = j-TUGboat, volume = "7", number = "3", pages = "152--158", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16jansen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damerell:TB7-3-159, author = "R. M. Damerell", title = "{{\tt Crudetype}: An adaptable device driver}", journal = j-TUGboat, volume = "7", number = "3", pages = "159--163", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16damerell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Brown:TB7-3-164, author = "Malcolm Brown", title = "{{\TeX hax returns}}", journal = j-TUGboat, volume = "7", number = "3", pages = "164--164", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guntermann:TB7-3-164, author = "Klaus Guntermann", title = "Porting {\TeX} to the {Atari ST}", journal = j-TUGboat, volume = "7", number = "3", pages = "164--164", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB7-3-164, author = "Jim Fox", title = "{CDC Cyber site report}", journal = j-TUGboat, volume = "7", number = "3", pages = "164--165", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Platt:TB7-3-165, author = "Craig Platt", title = "{MVS {\TeX} site report}", journal = j-TUGboat, volume = "7", number = "3", pages = "165--166", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spragens:TB7-3-167, author = "Alan Spragens", title = "{CMS {\TeX} site report}", journal = j-TUGboat, volume = "7", number = "3", pages = "167--167", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB7-3-167, author = "Alan Hoenig and Mitch Pfeffer", title = "Real typesetting from your personal computer", journal = j-TUGboat, volume = "7", number = "3", pages = "167--168", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thull:TB7-3-169, author = "Klaus Thull", title = "Harnessing {\TeX} to compute third root of unity primes", journal = j-TUGboat, volume = "7", number = "3", pages = "169--170", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16thull.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ehrbar:TB7-3-171, author = "Hans Ehrbar", title = "{Statistical graphics with \TeX}", journal = j-TUGboat, volume = "7", number = "3", pages = "171--175", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16ehrbar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB7-3-176, author = "Jackie Damrau and Ken Yap", title = "Call for participation", journal = j-TUGboat, volume = "7", number = "3", pages = "176--176", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB7-3-176, author = "Leslie Lamport", title = "{{\LaTeX} bugs}", journal = j-TUGboat, volume = "7", number = "3", pages = "176--176", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16lamport.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wonneberger:TB7-3-177, author = "Reinhard Wonneberger", title = "Chapter mottos and optional semi-parameters", journal = j-TUGboat, volume = "7", number = "3", pages = "177--185", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16wonneberger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hofmann:TB7-3-186, author = "Thomas Hofmann", title = "{A {\LaTeX} addition for formatting indexes}", journal = j-TUGboat, volume = "7", number = "3", pages = "186--186", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16hofmann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Aurbach:TB7-3-187, author = "Richard L. Aurbach", title = "{Idx\TeX} and {Glo\TeX}\dash indexes and glossaries", journal = j-TUGboat, volume = "7", number = "3", pages = "187--187", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lee:TB7-3-187, author = "John Lee", title = "Form letters", journal = j-TUGboat, volume = "7", number = "3", pages = "187--187", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB7-3-187, author = "Jim Fox", title = "Change bars", journal = j-TUGboat, volume = "7", number = "3", pages = "187--188", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sewell:TB7-3-188, author = "Wayne Sewell", title = "{Bugs in \MF ware}", journal = j-TUGboat, volume = "7", number = "3", pages = "188--189", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16sewell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-190, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "7", number = "3", pages = "190--190", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-191, author = "Anonymous", title = "{INRIA course: Structures for Documents, Aussois, France, January 19--23, 1987}", journal = j-TUGboat, volume = "7", number = "3", pages = "191--191", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-191-2, author = "Anonymous", title = "{\MF}, {\TeX} and the Humanities, {Rennes, France}", journal = j-TUGboat, volume = "7", number = "3", pages = "191--191", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ohno:TB7-3-191, author = "Yoshio Ohno", title = "{Japanese {\TeX} Users Group}", journal = j-TUGboat, volume = "7", number = "3", pages = "191--192", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB7-3-192, author = "Barbara Beeton", title = "{{\TeX} in Europe, Summer 1986}", journal = j-TUGboat, volume = "7", number = "3", pages = "192--193", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-193, author = "Anonymous", title = "{Contents: Proceedings of ``{\TeX} for Scientific Documentation'', Strasbourg, France, June 19--21, 1986}", journal = j-TUGboat, volume = "7", number = "3", pages = "193--194", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-196, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "7", number = "3", pages = "196--197", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lachmann:TB7-3-194, author = "Susanne Lachmann", title = "{The Tiger-{\TeX} Workstation}", journal = j-TUGboat, volume = "7", number = "3", pages = "194--195", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16lach.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-199, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "7", number = "3", pages = "199--200", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-201, author = "Anonymous", title = "{{\TeX} order form}", journal = j-TUGboat, volume = "7", number = "3", pages = "201--202", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-198, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "7", number = "3", pages = "198--198", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb07-3/tb16ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB7-3-cover-3, author = "Anonymous", title = "{TUG\Dash Job opening, Technical assistant}", journal = j-TUGboat, volume = "7", number = "3", pages = "Cover 3", month = oct, year = "1986", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "16", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "8", number = "1", pages = "3--4", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-1-5, author = "Bart Childs", title = "{President}'s message", journal = j-TUGboat, volume = "8", number = "1", pages = "5--5", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-5, author = "Anonymous", title = "Acknowledgement of contributions", journal = j-TUGboat, volume = "8", number = "1", pages = "5--5", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-6, author = "Anonymous", title = "{Donald E. Knuth Scholarship}", journal = j-TUGboat, volume = "8", number = "1", pages = "6--6", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-1-6, author = "Donald Knuth", title = "{It happened: announcement of {\TeX}2.1}", journal = j-TUGboat, volume = "8", number = "1", pages = "6--6", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wolf:TB8-1-7, author = "Kurt Bernardo Wolf", title = "News of {\TeX} users in {Mexico}", journal = j-TUGboat, volume = "8", number = "1", pages = "7--7", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Krick:TB8-1-7, author = "Linda Krick", title = "{Attention, Australian TUG members}", journal = j-TUGboat, volume = "8", number = "1", pages = "7--7", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Siegman:TB8-1-8, author = "Tony Siegman", title = "{Book publishing using \TeX}", journal = j-TUGboat, volume = "8", number = "1", pages = "8--11", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17siegman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB8-1-12, author = "Leslie Lamport", title = "{\TeX} Output for the Future", journal = j-TUGboat, volume = "8", number = "1", pages = "12--12", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17lamp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Levy:TB8-1-12, author = "Silvio Levy", title = "{{\tt WEB} adapted to C, another approach}", journal = j-TUGboat, volume = "8", number = "1", pages = "12--13", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17levy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-1-14, author = "Donald Knuth and Pierre MacKay", title = "Mixing right-to-left texts with left-to-right texts", journal = j-TUGboat, volume = "8", number = "1", pages = "14--25", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17knutmix.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB8-1-26, author = "Georgia K. M. Tobin", title = "{Some empirical observations on \MF\ design}", journal = j-TUGboat, volume = "8", number = "1", pages = "26--28", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Billawala:TB8-1-29, author = "Neenie Billawala", title = "{Write-white printing engines and tuning fonts with \MF}", journal = j-TUGboat, volume = "8", number = "1", pages = "29--32", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17billawala.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB8-1-33, author = "Barbara Beeton", title = "{{\MF\ mode\_def\/ settings for various {\TeX} output devices}}", journal = j-TUGboat, volume = "8", number = "1", pages = "33--33", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-34, author = "Anonymous", title = "{A new \TeX-based book typesetting package for the Macintosh}", journal = j-TUGboat, volume = "8", number = "1", pages = "34--34", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-34-2, author = "Anonymous", title = "{Charts: {\TeX} output devices}", journal = j-TUGboat, volume = "8", number = "1", pages = "34--40", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB8-1-41, author = "Nelson H. F. Beebe", title = "{Public domain {\TeX} DVI driver family}", journal = j-TUGboat, volume = "8", number = "1", pages = "41--42", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Trevorrow:TB8-1-42, author = "Andrew Trevorrow", title = "{DVIto\kern-.1emVDU 1.7 and PSPRINT 1.1}", journal = j-TUGboat, volume = "8", number = "1", pages = "42--45", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17trevorrow.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-45, author = "Anonymous", title = "{Benson-Varian 9211} looking for a home", journal = j-TUGboat, volume = "8", number = "1", pages = "45--45", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17trevorrow.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Brown:TB8-1-46, author = "Malcolm Brown", title = "{Notes from \TeX hax}", journal = j-TUGboat, volume = "8", number = "1", pages = "46--46", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuss:TB8-1-46, author = "Edgar Fu{\ss}", title = "{{\TeX\&Co.}} on the {ST}, {Part 2}", journal = j-TUGboat, volume = "8", number = "1", pages = "46--47", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-1-47, author = "Bart Childs", title = "{Data General distribution news}", journal = j-TUGboat, volume = "8", number = "1", pages = "47--47", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lillqvist:TB8-1-47, author = "Tor Lillqvist", title = "{{\TeX82 and \MF84 for the HP1000 A-series}}", journal = j-TUGboat, volume = "8", number = "1", pages = "47--48", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crawford:TB8-1-48, author = "John Crawford", title = "Prime 50 series site report", journal = j-TUGboat, volume = "8", number = "1", pages = "48", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB8-1-49, author = "Jim Fox", title = "Multiple, independent marks", journal = j-TUGboat, volume = "8", number = "1", pages = "49--53", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17fox.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Garavelli:TB8-1-53, author = "John S. Garavelli", title = "Form letter macros", journal = j-TUGboat, volume = "8", number = "1", pages = "53--53", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17garavelli.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bell:TB8-1-54, author = "Edwin V. {Bell, II}", title = "{AutoLetter: A {\TeX} form letter procedure}", journal = j-TUGboat, volume = "8", number = "1", pages = "54--57", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17bell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yap:TB8-1-58, author = "Ken Yap", title = "{Contents of {\LaTeX} style collection as of 15th February 1987}", journal = j-TUGboat, volume = "8", number = "1", pages = "58--59", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17yap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McKinstry:TB8-1-60, author = "Graeme McKinstry", title = "Form letters", journal = j-TUGboat, volume = "8", number = "1", pages = "60--61", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17mckinstry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zocchi:TB8-1-62, author = "Maurizio Zocchi", title = "{{\LaTeX's Index Processing}}", journal = j-TUGboat, volume = "8", number = "1", pages = "62--62", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17zocchi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wonneberger:TB8-1-63, author = "Reinhard Wonneberger", title = "{Typesetting `Normaltext'}", journal = j-TUGboat, volume = "8", number = "1", pages = "63--72", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17wonneberger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB8-1-73, author = "Alan Hoenig", title = "{\TeX} does windows", journal = j-TUGboat, volume = "8", number = "1", pages = "73--73", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17knutsat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-1-73, author = "Donald Knuth", title = "{Problem for a Saturday afternoon}", journal = j-TUGboat, volume = "8", number = "1", pages = "73--73", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17knutsat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dyck:TB8-1-74, author = "Jennifer Dyck", title = "{APA style in \LaTeX}", journal = j-TUGboat, volume = "8", number = "1", pages = "74--74", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hawkins:TB8-1-74, author = "Judy Hawkins", title = "Chemical formulae", journal = j-TUGboat, volume = "8", number = "1", pages = "74--74", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Celoni:TB8-1-74, author = "James R. {Celoni, S. J.}", title = "{Ancient non-Roman languages}", journal = j-TUGboat, volume = "8", number = "1", pages = "74--74", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Michailovsky:TB8-1-74, author = "Boyd Michailovsky", title = "{International Phonetic Alphabet}", journal = j-TUGboat, volume = "8", number = "1", pages = "74--74", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cutter:TB8-1-74, author = "Lawrence D. Cutter", title = "Line numbering", journal = j-TUGboat, volume = "8", number = "1", pages = "74--74", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nash:TB8-1-75, author = "David Nash", title = "Dictionary formatting", journal = j-TUGboat, volume = "8", number = "1", pages = "75--75", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Horstman:TB8-1-75, author = "Helen S. Horstman", title = "Printing out selected pages", journal = j-TUGboat, volume = "8", number = "1", pages = "75--75", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ryan:TB8-1-75, author = "Raymond A. Ryan", title = "{Wanted: Help for beginners}", journal = j-TUGboat, volume = "8", number = "1", pages = "75--75", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thulin:TB8-1-76, author = "Anders Thulin", title = "More hyphenation exceptions", journal = j-TUGboat, volume = "8", number = "1", pages = "76--76", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McWorter:TB8-1-76, author = "William A. McWorter", title = "New fonts for mathematics?", journal = j-TUGboat, volume = "8", number = "1", pages = "76--77", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-77, author = "Anonymous", title = "{Workshop on Font Design Systems (Sophia-Antipolis, France, 18--19 May 1987)}", journal = j-TUGboat, volume = "8", number = "1", pages = "77--77", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-77-2, author = "Anonymous", title = "{Special Spring Quarter course (Stanford, Donald Knuth): \TeX: The Program: A case study in software design}", journal = j-TUGboat, volume = "8", number = "1", pages = "77--77", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-78, author = "Anonymous", title = "{Call for Papers: Electronic Publishing, Document Manipulation and Typography (Nice, France, 20--22 April 1988)}", journal = j-TUGboat, volume = "8", number = "1", pages = "78--87", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-79, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "8", number = "1", pages = "79--80", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-81, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "8", number = "1", pages = "81--82", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-1/tb17instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-83, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "8", number = "1", pages = "83--84", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-85, author = "Anonymous", title = "{\TeX} order form", journal = j-TUGboat, volume = "8", number = "1", pages = "85--86", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-cover-3, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "8", number = "1", pages = "Cover 3", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-1-cover-3-2, author = "Anonymous", title = "{TUG\Dash Job opening, Technical assistant}", journal = j-TUGboat, volume = "8", number = "1", pages = "Cover 3", month = apr, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "17", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-99, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "8", number = "2", pages = "99--100", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-2-101, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "8", number = "2", pages = "101--101", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Koren:TB8-2-101, author = "Gideon Koren", title = "How to improve the chances for acceptance of your scientific paper", journal = j-TUGboat, volume = "8", number = "2", pages = "101--102", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Alexander:TB8-2-102, author = "James Alexander", title = "{{\Tib: a reference setting package, update}}", journal = j-TUGboat, volume = "8", number = "2", pages = "102--102", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18software.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rezende:TB8-2-102, author = "Pedro de Rezende", title = "{Portuguese hyphenation table for \TeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "102--102", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18software.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ferguson:TB8-2-102, author = "Michael Ferguson", title = "{A (hopefully) final extension of multilingual \mtex}", journal = j-TUGboat, volume = "8", number = "2", pages = "102--103", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18software.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Saito:TB8-2-103, author = "Yasuki Saito", title = "{Report on \JTeX: A Japanese \TeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "103--116", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18saito.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sewell:TB8-2-117, author = "E. Wayne Sewell", title = "Multiple changefiles: the adventure continues", journal = j-TUGboat, volume = "8", number = "2", pages = "117--118", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18sewellch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sewell:TB8-2-118, author = "E. Wayne Sewell", title = "{How to {\tt MANGLE} your software: the \WEB\ system for Modula-2}", journal = j-TUGboat, volume = "8", number = "2", pages = "118--122", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18sewellmangle.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sewell:TB8-2-123, author = "E. Wayne Sewell", title = "{The {\tt SCANTEX} processor}", journal = j-TUGboat, volume = "8", number = "2", pages = "123--128", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18sewellscantex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gourlay:TB8-2-128, author = "John S. Gourlay", title = "{Blacker Thoughts}", journal = j-TUGboat, volume = "8", number = "2", pages = "128--129", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18gourlay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sauter:TB8-2-129, author = "John Sauter", title = "{Updated Computer Modern fonts for the LN03}", journal = j-TUGboat, volume = "8", number = "2", pages = "129--130", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18sauter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crawford:TB8-2-131, author = "John Crawford", title = "{MFtool: A \MF\ script-driven processing facility}", journal = j-TUGboat, volume = "8", number = "2", pages = "131--131", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18crawford.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB8-2-132, author = "Barbara Beeton", title = "{Update: \MF\ {\bf mode\_def\/} settings for \TeX\ output devices}", journal = j-TUGboat, volume = "8", number = "2", pages = "132--134", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-2-135, author = "Donald E. Knuth", title = "Fonts for digital halftones", journal = j-TUGboat, volume = "8", number = "2", pages = "135--160", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McGaffey:TB8-2-161, author = "Robert W. McGaffey", title = "The ideal {\TeX} driver", journal = j-TUGboat, volume = "8", number = "2", pages = "161--163", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18mcgaffey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB8-2-163, author = "Don Hosek", title = "{{\TeX} output devices (with charts)}", journal = j-TUGboat, volume = "8", number = "2", pages = "163--170", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dunn:TB8-2-171, author = "Alec Dunn", title = "{Using PostScript with \TeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "171--173", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18dunn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-237, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "8", number = "2", pages = "237--237", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18indexoutput.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vanderburg:TB8-2-174, author = "Glenn L. Vanderburg", title = "{TEX-L access for Bitnet users}", journal = j-TUGboat, volume = "8", number = "2", pages = "174--174", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mann:TB8-2-174, author = "Laurie Mann", title = "{\TeX} and training: A case study", journal = j-TUGboat, volume = "8", number = "2", pages = "174--176", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-2-176, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "8", number = "2", pages = "176--177", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB8-2-178, author = "Dean Guenther", title = "{IBM VM/CMS site report}", journal = j-TUGboat, volume = "8", number = "2", pages = "178--178", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pierson:TB8-2-178, author = "Gil Pierson", title = "{SAS merged with \TeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "178--179", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB8-2-179, author = "Pierre MacKay", title = "{Unix \TeX} site report", journal = j-TUGboat, volume = "8", number = "2", pages = "179--181", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB8-2-177, author = "Adrian F. Clark", title = "{Enhancements to {\TeX} on the \VAX}", journal = j-TUGboat, volume = "8", number = "2", pages = "177--177", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kohlmayr:TB8-2-181, author = "Gerhard F. Kohlmayr", title = "{A bug in \TeXtures\ v0.95 prerelease}", journal = j-TUGboat, volume = "8", number = "2", pages = "181--181", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB8-2-181, author = "Barry Smith", title = "{Work-around for an ImageWriter problem affecting \TeXtures\ output}", journal = j-TUGboat, volume = "8", number = "2", pages = "181--181", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB8-2-182, author = "Alan Hoenig and Mitch Pfeffer", title = "{Update: Real typesetting from your PC}", journal = j-TUGboat, volume = "8", number = "2", pages = "182--182", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Appelt:TB8-2-182, author = "Wolfgang Appelt", title = "Macros with keyword parameters", journal = j-TUGboat, volume = "8", number = "2", pages = "182--184", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18appelt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kabelschacht:TB8-2-184, author = "Alois Kabelschacht", title = "{{\tt\bs expandafter} in conditionals; a generalization of PLAIN's {\tt\bs loop}}", journal = j-TUGboat, volume = "8", number = "2", pages = "184--185", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18kabel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barnhart:TB8-2-185, author = "Elizabeth Barnhart", title = "{\TeX} in the commercial environment\Dash multi-column output", journal = j-TUGboat, volume = "8", number = "2", pages = "185--189", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18barnhart.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LeHardy:TB8-2-190, author = "Charles LeHardy", title = "Diglot typesetting", journal = j-TUGboat, volume = "8", number = "2", pages = "190--192", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18lehardy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bruggemann-Klein:TB8-2-193, author = "Anne Br{\"u}ggemann-Klein", title = "{First line special handling with \TeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "193--197", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18bruggemann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yap:TB8-2-198, author = "Ken Yap", title = "{Contents of {\LaTeX} style collection as of 15th May 1987}", journal = j-TUGboat, volume = "8", number = "2", pages = "198--200", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18yap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Aurbach:TB8-2-201, author = "Richard Aurbach", title = "{Automated index generation for \LaTeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "201--209", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18aurbach.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-2-210, author = "Donald Knuth", title = "{Saturday morning problem\Dash solution}", journal = j-TUGboat, volume = "8", number = "2", pages = "210--210", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18knutsat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB8-2-211, author = "Alan Hoenig", title = "{\TeX} does windows\Dash conclusion", journal = j-TUGboat, volume = "8", number = "2", pages = "211--215", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB8-2-216, author = "Jim Fox", title = "Comment on {``{\TeX} does windows''}", journal = j-TUGboat, volume = "8", number = "2", pages = "216--216", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18fox.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Alexander:TB8-2-216, author = "James Alexander", title = "Time line macro", journal = j-TUGboat, volume = "8", number = "2", pages = "216--216", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-2-217, author = "Donald Knuth", title = "{Reply: Printing out selected pages}", journal = j-TUGboat, volume = "8", number = "2", pages = "217--217", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Black:TB8-2-217, author = "Mike Black", title = "{Using the Windows environment}", journal = j-TUGboat, volume = "8", number = "2", pages = "217--217", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-218, author = "Anonymous", title = "{TUG Annual Meeting, University of Washington, August 24--26, 1987}", journal = j-TUGboat, volume = "8", number = "2", pages = "218--218", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-219, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "8", number = "2", pages = "219--220", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymou:TB8-2-220, author = "Anonymous", title = "{PROTEXT IV, Boston, Mass., 22--24 October 1987}", journal = j-TUGboat, volume = "8", number = "2", pages = "220--220", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-221, author = "Anonymous", title = "{6th German {\TeX} meeting, University of M{\"u}nster, 8--9 October 1987}", journal = j-TUGboat, volume = "8", number = "2", pages = "221--221", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB8-2-221, author = "Lynne A. Price", title = "{SGML and \TeX}", journal = j-TUGboat, volume = "8", number = "2", pages = "221--225", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18price.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whidden:TB8-2-225, author = "Samuel B. Whidden", title = "Treasurer's report", journal = j-TUGboat, volume = "8", number = "2", pages = "225--227", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-228, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "8", number = "2", pages = "228--230", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-2/tb18instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-231, author = "Anonymous", title = "{TUG membership application; {\TeX} order form}", journal = j-TUGboat, volume = "8", number = "2", pages = "231--232", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-2-252, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "8", number = "2", pages = "252--252", month = jul, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "18", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-255, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "8", number = "3", pages = "255--256", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-3-257, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "8", number = "3", pages = "257--257", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thedford:TB8-3-258, author = "Rilla Thedford", title = "{The Volunteer Tree}", journal = j-TUGboat, volume = "8", number = "3", pages = "258--258", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Marle:TB8-3-259, author = "Charles-Michel Marle", title = "{Book publishing using \TeX}", journal = j-TUGboat, volume = "8", number = "3", pages = "259--260", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mann:TB8-3-260, author = "Laurie Mann", title = "{{\TeX} training, etc.\Dash A TUG meeting trip report}", journal = j-TUGboat, volume = "8", number = "3", pages = "260--262", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB8-3-262, author = "Barbara Beeton", title = "{From the Editor}", journal = j-TUGboat, volume = "8", number = "3", pages = "262--262", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-3-262, author = "Bart Childs", title = "{Proposed minimum standards for {\TeX} distributions}", journal = j-TUGboat, volume = "8", number = "3", pages = "262--263", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reid:TB8-3-264, author = "Thomas J. Reid", title = "{{\tt TANGLE} modification causes problems in \MF\ and PK files}", journal = j-TUGboat, volume = "8", number = "3", pages = "264--265", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19reid-tangle.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-266, author = "Anonymous", title = "Hyphenation exception log", journal = j-TUGboat, volume = "8", number = "3", pages = "266--267", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Henderson:TB8-3-268, author = "Doug Henderson", title = "{Update: \MF\ {\bf mode\_def\/} settings for \TeX\ output devices}", journal = j-TUGboat, volume = "8", number = "3", pages = "268--270", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB8-3-270, author = "Adrian F. Clark", title = "{Halftone output from \TeX}", journal = j-TUGboat, volume = "8", number = "3", pages = "270--274", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hohti:TB8-3-275, author = "Aarno Hohti and Okko Kanerva", title = "{Generating an {\sl APL\/} font}", journal = j-TUGboat, volume = "8", number = "3", pages = "275--278", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19hohti.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB8-3-279, author = "Don Hosek", title = "{\TeX} output devices (with charts)", journal = j-TUGboat, volume = "8", number = "3", pages = "279--286", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reid:TB8-3-287, author = "Thomas J. Reid", title = "{DVI driver considerations for high-volume printing systems}", journal = j-TUGboat, volume = "8", number = "3", pages = "287--291", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19reid-dvi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vanderburg:TB8-3-291, author = "Glenn L. Vanderburg and Thomas J. Reid", title = "{{\tt\bs special} issues}", journal = j-TUGboat, volume = "8", number = "3", pages = "291--300", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19vanderburg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Toal:TB8-3-301, author = "Graham Toal", title = "{\TeX} information for users in the {U.K.}", journal = j-TUGboat, volume = "8", number = "3", pages = "301--301", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Brown:TB8-3-301, author = "Malcolm Brown", title = "{{\TeX hax Notes}}", journal = j-TUGboat, volume = "8", number = "3", pages = "301--303", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lammarsch:TB8-3-304, author = "Joachim Lammarsch", title = "{6th Meeting of the ``\TeX-Interessenten'' in Germany}", journal = j-TUGboat, volume = "8", number = "3", pages = "304--304", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guntermann:TB8-3-304, author = "Klaus Guntermann", title = "{Atari ST site report}", journal = j-TUGboat, volume = "8", number = "3", pages = "304--304", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB8-3-304, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "8", number = "3", pages = "304--304", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pfeffer:TB8-3-305, author = "Mitch Pfeffer and Alan Hoenig", title = "{Running {\TeX} on a 386-based computer: Twice as fast as an AT}", journal = j-TUGboat, volume = "8", number = "3", pages = "305--306", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19pfeffer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB8-3-307, author = "Christina Thiele", title = "What constitutes a well-documented macro?", journal = j-TUGboat, volume = "8", number = "3", pages = "307--308", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB8-3-309, author = "Donald E. Knuth", title = "{Macros for Jill}", journal = j-TUGboat, volume = "8", number = "3", pages = "309--314", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reid:TB8-3-315, author = "Thomas J. Reid", title = "{Floating figures at the right, and Some random text for testing}", journal = j-TUGboat, volume = "8", number = "3", pages = "315--320", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19reid-float.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yap:TB8-3-320, author = "Ken Yap", title = "{Contents of {\LaTeX} style collection as of 15th September 1987}", journal = j-TUGboat, volume = "8", number = "3", pages = "320--323", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19yap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB8-3-323, author = "Jackie Damrau", title = "{The {\LaTeX} user's column}", journal = j-TUGboat, volume = "8", number = "3", pages = "323--326", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB8-3-306, author = "Peter Flynn", title = "Request for contributions to a new publication", journal = j-TUGboat, volume = "8", number = "3", pages = "306--306", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Boes:TB8-3-326, author = "Jeffery Boes", title = "{Reply: Printing out selected pages}", journal = j-TUGboat, volume = "8", number = "3", pages = "326--326", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19boes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lipp:TB8-3-326, author = "Stephen C. Lipp", title = "Title formatting macro wanted", journal = j-TUGboat, volume = "8", number = "3", pages = "326--327", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19lipp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-328, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "8", number = "3", pages = "328--328", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-329, author = "Anonymous", title = "{Exeter University: \TeX88, 18--20 July 1988}", journal = j-TUGboat, volume = "8", number = "3", pages = "329--330", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-cover-3, author = "Anonymous", title = "{Call for papers: TUG Annual Meeting, Montr{\'e}al, 22--24 August 1988}", journal = j-TUGboat, volume = "8", number = "3", pages = "Cover 3", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-331, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "8", number = "3", pages = "331--332", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-333, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "8", number = "3", pages = "333--334", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB8-3-352, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "8", number = "3", pages = "352--352", month = nov, year = "1987", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb08-3/tb19ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "19", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "9", number = "1", pages = "3--4", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-1-5, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "9", number = "1", pages = "5--5", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wittbecker:TB9-1-5, author = "Alan Wittbecker", title = "{{\TUB{} docks at fire station}}", journal = j-TUGboat, volume = "9", number = "1", pages = "5--5", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-6, author = "Anonymous", title = "{Donald E. Knuth Scholarship}", journal = j-TUGboat, volume = "9", number = "1", pages = "6--6", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB9-1-6, author = "Barbara Beeton", title = "{Notes from the Editor}", journal = j-TUGboat, volume = "9", number = "1", pages = "6--7", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lamport:TB9-1-8, author = "Leslie Lamport", title = "{Document Production: Visual or Logical?}", journal = j-TUGboat, volume = "9", number = "1", pages = "8--10", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20lamport.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Breitenlohner:TB9-1-11, author = "Peter Breitenlohner", title = "{Still another aspect of multiple change files: The PATCH processor}", journal = j-TUGboat, volume = "9", number = "1", pages = "11--12", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20breitenlohner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB9-1-12, author = "Pierre A. MacKay", title = "{Turkish hyphenations for \TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "12--14", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20mackay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB9-1-15, author = "Georgia K. M. Tobin", title = "{The ABC's of special effects}", journal = j-TUGboat, volume = "9", number = "1", pages = "15--18", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Messer:TB9-1-19, author = "Robert Messer", title = "{Blackboard Bold}", journal = j-TUGboat, volume = "9", number = "1", pages = "19--20", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20messer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Levy:TB9-1-20, author = "Silvio Levy", title = "{Using Greek fonts with \TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "20--24", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20levy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB9-1-25, author = "Don Hosek", title = "{{\TeX} output devices (with charts)}", journal = j-TUGboat, volume = "9", number = "1", pages = "25--33", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Brown:TB9-1-34, author = "Marcus Brown", title = "{An ASCII previewer for \TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "34--36", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20brown.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB9-1-37, author = "Don Hosek", title = "{A screen previewer for VM/CMS}", journal = j-TUGboat, volume = "9", number = "1", pages = "37--37", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dunne:TB9-1-37, author = "Shane Dunne", title = "{Why {\TeX} should NOT output \PS{}\Dash yet}", journal = j-TUGboat, volume = "9", number = "1", pages = "37--39", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20dunne.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-39, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "9", number = "1", pages = "39--39", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20devoutindex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB9-1-40, author = "Tom Rokicki", title = "{The Commodore Amiga: A magic {\TeX} machine}", journal = j-TUGboat, volume = "9", number = "1", pages = "40--41", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-1-41, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "9", number = "1", pages = "41--41", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-42, author = "Anonymous", title = "{Fujitsu ports {\TeX} 1.0 onto M-series}", journal = j-TUGboat, volume = "9", number = "1", pages = "42--42", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB9-1-42, author = "Dean Guenther", title = "{IBM VM/CMS site report}", journal = j-TUGboat, volume = "9", number = "1", pages = "42--42", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB9-1-42, author = "Pierre MacKay", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "9", number = "1", pages = "42--44", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Morgan:TB9-1-44, author = "Tim Morgan", title = "{{\TeX} to C converter}", journal = j-TUGboat, volume = "9", number = "1", pages = "44--45", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kellerman:TB9-1-45, author = "David Kellerman", title = "{{\VAX/VMS site report}}", journal = j-TUGboat, volume = "9", number = "1", pages = "45--45", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB9-1-46, author = "Alan Hoenig and Mitch Pfeffer", title = "{Writers' tools I: PC spelling and grammar checkers}", journal = j-TUGboat, volume = "9", number = "1", pages = "46--47", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB9-1-47, author = "Alan Hoenig and Mitch Pfeffer", title = "{Grapevine reports of inexpensive versions of \TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "47--48", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kinch:TB9-1-48, author = "Richard J. Kinch and Jennifer L. Vollbrecht", title = "{Turbo\TeX: A new port in C for Unix and MS-DOS}", journal = j-TUGboat, volume = "9", number = "1", pages = "48--52", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20kinch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crisanti:TB9-1-52, author = "Ester Crisanti and Alberto Formigoni and Paco {La Bruna}", title = "{easy\TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "52--56", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20crisanti.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bechtolsheim:TB9-1-57, author = "Stephan v. Bechtolsheim", title = "{A tutorial on {\tt\bs expandafter}}", journal = j-TUGboat, volume = "9", number = "1", pages = "57--61", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walker:TB9-1-61, author = "James W. Walker", title = "Macros for outlining", journal = j-TUGboat, volume = "9", number = "1", pages = "61--64", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20walker.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hendrickson:TB9-1-64, author = "Amy Hendrickson", title = "{A macro writing tool: Generating new definitions}", journal = j-TUGboat, volume = "9", number = "1", pages = "64--64", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20hendrickson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gariepy:TB9-1-65, author = "Alonzo Gariepy", title = "{French in \TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "65--69", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20gariepy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Partl:TB9-1-70, author = "Hubert Partl", title = "{German \TeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "70--72", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20partl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yap:TB9-1-73, author = "Ken Yap", title = "{Contents of \LaTeX{} style collection as of 4th February 1988}", journal = j-TUGboat, volume = "9", number = "1", pages = "73--75", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20yap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB9-1-76, author = "Jackie Damrau", title = "{The \LaTeX{} user's column}", journal = j-TUGboat, volume = "9", number = "1", pages = "76--77", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McPherson:TB9-1-78, author = "Kent McPherson", title = "{Page layout in \LaTeX}", journal = j-TUGboat, volume = "9", number = "1", pages = "78--82", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20mcpherson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bartlett:TB9-1-83, author = "Frederick H. Bartlett", title = "{Automatic page balancing macros wanted; Replies: Inverted pyramidal titles; Logarithmic time scales}", journal = j-TUGboat, volume = "9", number = "1", pages = "83--85", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20bartlett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-86, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "9", number = "1", pages = "86--86", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-87, author = "Anonymous", title = "{TUG 1988 Annual Meeting, Montr{\'e}al, August 22--24}", journal = j-TUGboat, volume = "9", number = "1", pages = "87--87", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-87-2, author = "Anonymous", title = "{Videotapes of Knuth's software course based on \TeX: The Program}", journal = j-TUGboat, volume = "9", number = "1", pages = "87--87", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-88, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "9", number = "1", pages = "88--90", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-1/tb20instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-91, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "9", number = "1", pages = "91--93", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-95, author = "Anonymous", title = "{{\TeX} order form}", journal = j-TUGboat, volume = "9", number = "1", pages = "95--96", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-1-112, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "9", number = "1", pages = "112--112", month = apr, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "20", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-115, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "9", number = "2", pages = "115--116", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-2-117, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "9", number = "2", pages = "117--117", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goucher:TB9-2-117, author = "Ray Goucher", title = "{Los Alamos sets new membership record}", journal = j-TUGboat, volume = "9", number = "2", pages = "117--117", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-117, author = "Anonymous", title = "{Donald Knuth awarded Franklin Medal}", journal = j-TUGboat, volume = "9", number = "2", pages = "117--117", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barnhart:TB9-2-118, author = "Elizabeth Barnhart", title = "{{\TeX} in the publishing environment: A survey of production/commercial users}", journal = j-TUGboat, volume = "9", number = "2", pages = "118--120", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB9-2-121, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "9", number = "2", pages = "121--121", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21beet-new.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB9-2-121-2, author = "Barbara Beeton", title = "{New version(s) of {\TeX} and \MF}", journal = j-TUGboat, volume = "9", number = "2", pages = "121--122", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21beet-new.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-2-122, author = "Bart Childs", title = "{64-bit \TeX}", journal = j-TUGboat, volume = "9", number = "2", pages = "122--122", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21childs-64.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lichtenwalder:TB9-2-123, author = "Klaus Lichtenwalder", title = "{Porting {\TeX} to C}", journal = j-TUGboat, volume = "9", number = "2", pages = "123--124", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21lichtenwalder.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kennedy:TB9-2-124, author = "David Kennedy", title = "{{\TeX} adapted to CWEB}", journal = j-TUGboat, volume = "9", number = "2", pages = "124--125", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21kennedy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vanderburg:TB9-2-125, author = "Glenn Vanderburg", title = "Some useful variations of standard fonts", journal = j-TUGboat, volume = "9", number = "2", pages = "125--125", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21vanderburg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB9-2-126, author = "Georgia K. M. Tobin", title = "Designing for low-res devices", journal = j-TUGboat, volume = "9", number = "2", pages = "126--128", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-2-129, author = "Bart Childs", title = "{{\TeX} fonts and suggested magnifications}", journal = j-TUGboat, volume = "9", number = "2", pages = "129--131", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21childs-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wujastyk:TB9-2-131, author = "Dominik Wujastyk", title = "{The many faces of \TeX: A survey of digital {\manual META}fonts}", journal = j-TUGboat, volume = "9", number = "2", pages = "131--151", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21wujastyk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB9-2-152, author = "Donald E. Knuth", title = "{A Punk Meta-Font}", journal = j-TUGboat, volume = "9", number = "2", pages = "152--168", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB9-2-169, author = "Don Hosek", title = "{{\TeX} output devices (with charts)}", journal = j-TUGboat, volume = "9", number = "2", pages = "169--177", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dunne:TB9-2-178, author = "Shane Dunne", title = "{Why {\TeX} should NOT output \PS{}\Dash yet: Addendum}", journal = j-TUGboat, volume = "9", number = "2", pages = "178--178", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21dunne.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wolfe:TB9-2-178, author = "Warren Wolfe", title = "{ASCII Preview with vu\TeX}", journal = j-TUGboat, volume = "9", number = "2", pages = "178--180", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21wolfe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-151, author = "Anonymous", title = "Index to sample output from various devices", journal = j-TUGboat, volume = "9", number = "2", pages = "151--151", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-2-181, author = "Bart Childs", title = "{{\TeX} on the Cray}", journal = j-TUGboat, volume = "9", number = "2", pages = "181--181", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-2-181-2, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "9", number = "2", pages = "181--181", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Smith:TB9-2-181, author = "Barry Smith", title = "{Macintosh} site report", journal = j-TUGboat, volume = "9", number = "2", pages = "181--181", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB9-2-182, author = "Barbara Beeton", title = "{Controlling {\tt}; Ruling the depths}", journal = j-TUGboat, volume = "9", number = "2", pages = "182--183", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21beet-warn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Breitenlohner:TB9-2-183, author = "Peter Breitenlohner", title = "{German \TeX, a next step}", journal = j-TUGboat, volume = "9", number = "2", pages = "183--185", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21breitenlohner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wichura:TB9-2-186, author = "Michael J. Wichura", title = "{Some problems with the INRS{\TeX} table making macros}", journal = j-TUGboat, volume = "9", number = "2", pages = "186--188", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21wichura-inrstex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haagen:TB9-2-189, author = "A. J. {Van Haagen}", title = "{Box plots and scatter plots with {\TeX} macros}", journal = j-TUGboat, volume = "9", number = "2", pages = "189--192", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21haagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wichura:TB9-2-193, author = "Michael J. Wichura", title = "{{\PiCTeX: Macros for drawing \PiC tures}}", journal = j-TUGboat, volume = "9", number = "2", pages = "193--197", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21wichura-pictex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB9-2-198, author = "Jackie Damrau", title = "{The \LaTeX{} user's column}", journal = j-TUGboat, volume = "9", number = "2", pages = "198--199", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yap:TB9-2-200, author = "Ken Yap", title = "{Contents of \LaTeX{} style collection as of 19th June 1988}", journal = j-TUGboat, volume = "9", number = "2", pages = "200--203", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21yap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bechtolsheim:TB9-2-203, author = "Stephan v. Bechtolsheim", title = "{A note on processing parts with \LaTeX}", journal = j-TUGboat, volume = "9", number = "2", pages = "203--204", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McPherson:TB9-2-204, author = "Kent McPherson", title = "{Page layout in \LaTeX: Erratum}", journal = j-TUGboat, volume = "9", number = "2", pages = "204--204", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21mcpherson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-205, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "9", number = "2", pages = "205--205", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gaulle:TB9-2-206, author = "Bernard Gaulle", title = "{GUTenberg meeting report}", journal = j-TUGboat, volume = "9", number = "2", pages = "206--207", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21guten.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-207, author = "Anonymous", title = "{Knuth Scholarship winner}", journal = j-TUGboat, volume = "9", number = "2", pages = "207--207", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21schol.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-208, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "9", number = "2", pages = "208--210", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-2/tb21instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-211, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "9", number = "2", pages = "211--212", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-226, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "9", number = "2", pages = "226--226", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-2-M, author = "Anonymous", title = "{TUG Membership List Supplement}", journal = j-TUGboat, volume = "9", number = "2", pages = "M-1--M-14", month = aug, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "21", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-229, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "9", number = "3", pages = "229--230", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-3-231, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "9", number = "3", pages = "231--232", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-232, author = "Anonymous", title = "{Extra! Extra! \TUB{} becomes a quarterly}", journal = j-TUGboat, volume = "9", number = "3", pages = "232--232", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-232-2, author = "Anonymous", title = "{Donald Knuth awarded Oxford degree}", journal = j-TUGboat, volume = "9", number = "3", pages = "232--233", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB9-3-233, author = "Barbara Beeton", title = "{{\TeX} and TUG go international\Dash A trip report}", journal = j-TUGboat, volume = "9", number = "3", pages = "233--235", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McKinstry:TB9-3-236, author = "Graeme McKinstry", title = "Some typesetting conventions", journal = j-TUGboat, volume = "9", number = "3", pages = "236--238", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22mckinstry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Heidrich:TB9-3-238, author = "Klaus Heidrich", title = "{Software-ergonomics on the Atari ST}", journal = j-TUGboat, volume = "9", number = "3", pages = "238--238", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22heidrich.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-239, author = "Anonymous", title = "Hyphenation exception log", journal = j-TUGboat, volume = "9", number = "3", pages = "239--241", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schrod:TB9-3-241, author = "Joachim Schrod", title = "{{\LaTeX{} fonts and suggested magnifications}}", journal = j-TUGboat, volume = "9", number = "3", pages = "241--243", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22schrod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Henderson:TB9-3-244, author = "Doug Henderson", title = "{Mode\_def's please}", journal = j-TUGboat, volume = "9", number = "3", pages = "244--245", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wujastyk:TB9-3-246, author = "Dominik Wujastyk", title = "Further faces", journal = j-TUGboat, volume = "9", number = "3", pages = "246--251", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22wujastyk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB9-3-251, author = "Don Hosek", title = "{{\TeX} output devices (with charts)}", journal = j-TUGboat, volume = "9", number = "3", pages = "251--260", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Abbott:TB9-3-261, author = "Peter Abbott and Andrew Trevorrow", title = "{{\DVItoVDU{} 3.0 and PSPRINT 3.0}}", journal = j-TUGboat, volume = "9", number = "3", pages = "261--262", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22abbott.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Abbott:TB9-3-263, author = "Peter Abbott", title = "{A UK-based {\TeX} mail archive server}", journal = j-TUGboat, volume = "9", number = "3", pages = "263--264", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guntermann:TB9-3-264, author = "Klaus Guntermann", title = "{Atari ST site report}", journal = j-TUGboat, volume = "9", number = "3", pages = "264--265", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB9-3-265, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "9", number = "3", pages = "265--265", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB9-3-265, author = "Dean Guenther", title = "{IBM VM/CMS site report}", journal = j-TUGboat, volume = "9", number = "3", pages = "265--265", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Platt:TB9-3-266, author = "Craig Platt", title = "{MVS site report}", journal = j-TUGboat, volume = "9", number = "3", pages = "266--267", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB9-3-267, author = "Pierre MacKay", title = "{Unix {\TeX} site report}", journal = j-TUGboat, volume = "9", number = "3", pages = "267--269", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pfeffer:TB9-3-269, author = "Mitch Pfeffer and Alan Hoenig", title = "Recovering from a hard-disk failure", journal = j-TUGboat, volume = "9", number = "3", pages = "269--271", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22pfeffer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB9-3-271, author = "C. G. van der Laan and J. R. Luyten", title = "{Evaluation of K-talk}", journal = j-TUGboat, volume = "9", number = "3", pages = "271--272", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wittbecker:TB9-3-272, author = "Alan Wittbecker", title = "Making paragraphs", journal = j-TUGboat, volume = "9", number = "3", pages = "272--276", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22wittbecker.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bechtolsheim:TB9-3-276, author = "Stephan v. Bechtolsheim", title = "{A tutorial on {\tt\bs futurelet}}", journal = j-TUGboat, volume = "9", number = "3", pages = "276--278", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kneser:TB9-3-279, author = "Thomas Kneser", title = "Compact matrix display", journal = j-TUGboat, volume = "9", number = "3", pages = "279--284", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22kneser.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Appelt:TB9-3-284, author = "Wolfgang Appelt", title = "Typesetting chess", journal = j-TUGboat, volume = "9", number = "3", pages = "284--287", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22appelt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pittman:TB9-3-287, author = "J. E. Pittman", title = "{Equation numbering in plain \TeX}", journal = j-TUGboat, volume = "9", number = "3", pages = "287--288", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22pittman-eq.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pittman:TB9-3-289, author = "J. E. Pittman", title = "{{\tt Loopy.TeX}}", journal = j-TUGboat, volume = "9", number = "3", pages = "289--291", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22pittman-loop.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rogers:TB9-3-292, author = "David F. Rogers", title = "A page make-up challenge", journal = j-TUGboat, volume = "9", number = "3", pages = "292--293", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22rogers.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeCorte:TB9-3-294, author = "Michael DeCorte", title = "{Contents of \LaTeX{} style collection as of 24 September 1988}", journal = j-TUGboat, volume = "9", number = "3", pages = "294--297", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22decorte.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB9-3-297, author = "Jackie Damrau", title = "{The \LaTeX{} column}", journal = j-TUGboat, volume = "9", number = "3", pages = "297--297", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB9-3-298, author = "Frank Mittelbach", title = "A new implementation of the array-- and tabular--environments", journal = j-TUGboat, volume = "9", number = "3", pages = "298--314", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-315, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "9", number = "3", pages = "315--315", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB9-3-316, author = "C. G. van der Laan", title = "{Dutch {\TeX} Users Group}", journal = j-TUGboat, volume = "9", number = "3", pages = "316--316", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-cover-3, author = "Anonymous", title = "{Call for papers: {\bf TUG Tenth Annual Meeting}, Stanford University, 21--23 August 1989}", journal = j-TUGboat, volume = "9", number = "3", pages = "Cover 3", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-316, author = "Anonymous", title = "{Call for papers: RIDT'89\Dash International Workshop on Raster Imagining and Digital Typography, Lausanne, Switzerland, 12--13 October 1989}", journal = j-TUGboat, volume = "9", number = "3", pages = "316--317", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB9-3-317, author = "Pierre MacKay", title = "{{\TeX hax moves north}}", journal = j-TUGboat, volume = "9", number = "3", pages = "317--317", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22late.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB9-3-317, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "9", number = "3", pages = "317--318", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22late.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-318, author = "Anonymous", title = "A thank you note", journal = j-TUGboat, volume = "9", number = "3", pages = "318--318", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-324, author = "Anonymous", title = "{TUG's Tenth}", journal = j-TUGboat, volume = "9", number = "3", pages = "324--324", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22tenth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-318-2, author = "Anonymous", title = "{Accountant's review of TUG financial records, years ended December 31, 1987 and 1986}", journal = j-TUGboat, volume = "9", number = "3", pages = "318--321", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-322, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "9", number = "3", pages = "322--324", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-325, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "9", number = "3", pages = "325--325", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-342, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "9", number = "3", pages = "342--342", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB9-3-M, author = "Anonymous", title = "{TUG Membership List Supplement}", journal = j-TUGboat, volume = "9", number = "3", pages = "M-1--M-12", month = nov, year = "1988", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb09-3/tb22mem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "22", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "10", number = "1", pages = "3--4", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-5, author = "Anonymous", title = "{Donald E. Knuth Scholarship}", journal = j-TUGboat, volume = "10", number = "1", pages = "5--5", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-1-5, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "10", number = "1", pages = "5--5", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-5-2, author = "Anonymous", title = "{Announcing a TUG dingbat competition}", journal = j-TUGboat, volume = "10", number = "1", pages = "5--6", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-1-6, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "10", number = "1", pages = "6--7", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB10-1-8, author = "Donald Knuth", title = "{{\TeX} would find it difficult {\dots}}", journal = j-TUGboat, volume = "10", number = "1", pages = "8--8", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-1-8, author = "Barbara Beeton", title = "{A {\TeX} encounter in Japan}", journal = j-TUGboat, volume = "10", number = "1", pages = "8--10", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Harrison:TB10-1-11, author = "Michael Harrison", title = "{News from the {\VorTeX} project}", journal = j-TUGboat, volume = "10", number = "1", pages = "11--14", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23harrison.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB10-1-14, author = "Adrian Clark", title = "{An enhanced {\TeX}-editor interface for VMS}", journal = j-TUGboat, volume = "10", number = "1", pages = "14--15", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thull:TB10-1-15, author = "Klaus Thull", title = "{The virtual memory management of PubliC {\TeX}}", journal = j-TUGboat, volume = "10", number = "1", pages = "15--22", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23thull.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kinch:TB10-1-23, author = "Richard Kinch", title = "{Turbo{\MF}: A new port in C for {\UNIX} and MS-DOS}", journal = j-TUGboat, volume = "10", number = "1", pages = "23--24", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23kinch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bechtolsheim:TB10-1-25, author = "Stephan v. Bechtolsheim", title = "{The {\TeX} {\PS} software package}", journal = j-TUGboat, volume = "10", number = "1", pages = "25--27", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB10-1-28, author = "Georgia K. M. Tobin", title = "A handy little font", journal = j-TUGboat, volume = "10", number = "1", pages = "28--30", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB10-1-31, author = "Donald Knuth", title = "{Typesetting {\sl Concrete Mathematics\/}}", journal = j-TUGboat, volume = "10", number = "1", pages = "31--36", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Henderson:TB10-1-36, author = "Doug Henderson", title = "{Outline fonts with {\MF}}", journal = j-TUGboat, volume = "10", number = "1", pages = "36--38", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wujastyk:TB10-1-39, author = "Dominik Wujastyk", title = "Font news", journal = j-TUGboat, volume = "10", number = "1", pages = "39--39", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23wujastyk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rogers:TB10-1-39, author = "David F. Rogers", title = "{Computer graphics and {\TeX}\Dash a challenge}", journal = j-TUGboat, volume = "10", number = "1", pages = "39--44", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23rogers.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-1-44, author = "Bart Childs and Alan Stolleis and Don Berryman", title = "A portable graphics inclusion", journal = j-TUGboat, volume = "10", number = "1", pages = "44--46", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB10-1-46, author = "Don Hosek", title = "{{\TeX} output devices (with charts)}", journal = j-TUGboat, volume = "10", number = "1", pages = "46--55", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB10-1-56, author = "Don Hosek", title = "{Report from the {\tt DVI} driver standards committee}", journal = j-TUGboat, volume = "10", number = "1", pages = "56--56", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Broeren:TB10-1-56, author = "Marius Broeren and Jan van Knippenberg", title = "{High quality printing of {\TeX} DVI output files in the {\VAX/VMS} environment}", journal = j-TUGboat, volume = "10", number = "1", pages = "56--58", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23broeren.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Puente:TB10-1-58, author = "Arturo Puente", title = "{Output driver for Xerox 4045 on IBM 3090}", journal = j-TUGboat, volume = "10", number = "1", pages = "58--58", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23query.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Abbott:TB10-1-59, author = "Peter Abbott", title = "{{UK\TeX} and the Aston archive}", journal = j-TUGboat, volume = "10", number = "1", pages = "59--60", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-1-60, author = "Bart Childs", title = "{DG site report}", journal = j-TUGboat, volume = "10", number = "1", pages = "60--60", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB10-1-60, author = "Pierre MacKay", title = "{Unix{\TeX} site report}", journal = j-TUGboat, volume = "10", number = "1", pages = "60--61", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kellerman:TB10-1-62, author = "David Kellerman", title = "{{\VAX/VMS} site report}", journal = j-TUGboat, volume = "10", number = "1", pages = "62--62", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB10-1-62, author = "Alan Hoenig", title = "The land of the free and the near free", journal = j-TUGboat, volume = "10", number = "1", pages = "62--64", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kubik:TB10-1-65, author = "Kim Kubik", title = "{Amiga{\TeX}\dots or How envy was resisted and knowledge found on the road to {\"O}{\"o}{\c{c}}}", journal = j-TUGboat, volume = "10", number = "1", pages = "65--67", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23kubik.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Modest:TB10-1-67, author = "Michael Modest", title = "{Using {\TeX} and {\LaTeX} with WordPerfect 5.0}", journal = j-TUGboat, volume = "10", number = "1", pages = "67--72", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23modest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zalmstra:TB10-1-73, author = "Joost Zalmstra and David F. Rogers", title = "A page make-up macro", journal = j-TUGboat, volume = "10", number = "1", pages = "73--81", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23zalmstra.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nearing:TB10-1-82, author = "James Nearing", title = "{Extended equation numbering in Plain {\TeX}}", journal = j-TUGboat, volume = "10", number = "1", pages = "82--88", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23nearing.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sankar:TB10-1-89, author = "Sriram Sankar", title = "{APE\Dash A set of {\TeX} macros to format Ada programs}", journal = j-TUGboat, volume = "10", number = "1", pages = "89--97", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23sankar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeCorte:TB10-1-97, author = "Michael DeCorte", title = "{Contents of {\LaTeX} style collection as of 16 January 1989}", journal = j-TUGboat, volume = "10", number = "1", pages = "97--102", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23decorte.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB10-1-103, author = "Frank Mittelbach", title = "{``A new implementation of the array --- and tabular --- environments of {\LaTeX}'' ({\TUB} 9\#3)\Dash addenda}", journal = j-TUGboat, volume = "10", number = "1", pages = "103--104", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schopf:TB10-1-105, author = "Rainer Sch{\"o}pf", title = "{Drawing histogram bars inside the {\LaTeX} picture--environment}", journal = j-TUGboat, volume = "10", number = "1", pages = "105--107", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23schopf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nagy:TB10-1-108, author = "Dezs{\H{o}} Nagy", title = "Vertical centering for transparencies", journal = j-TUGboat, volume = "10", number = "1", pages = "108--112", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23nagy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB10-1-113, author = "C. G. van der Laan", title = "{Typesetting bridge via {\LaTeX}}", journal = j-TUGboat, volume = "10", number = "1", pages = "113--116", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-116, author = "Anonymous", title = "{WOODMAN '89: Workshop on Object Oriented Document Manipulation, Rennes, France, 29--31 May 1989}", journal = j-TUGboat, volume = "10", number = "1", pages = "116--116", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-117, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "10", number = "1", pages = "117--117", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-118, author = "Anonymous", title = "{GUTenberg Congr{\`e}s:\ {\TeX} et les graphiques, Paris, 16--17 May 1989}", journal = j-TUGboat, volume = "10", number = "1", pages = "118--118", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-118-2, author = "Anonymous", title = "{{\TeX89: Karlsruhe University, 11--13 September 1989}}", journal = j-TUGboat, volume = "10", number = "1", pages = "118--118", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Osborne:TB10-1-119, author = "David Osborne", title = "{A UK {\TeX} users' group\Dash Report of a preliminary meeting}", journal = j-TUGboat, volume = "10", number = "1", pages = "119--120", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-1-120, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "10", number = "1", pages = "120--121", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23late.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-121, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "10", number = "1", pages = "121--121", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23late.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-122, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "10", number = "1", pages = "122--124", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-1/tb23instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-125, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "10", number = "1", pages = "125--125", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-1-142, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "10", number = "1", pages = "142--142", month = apr, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "23", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-2-145, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "10", number = "2", pages = "145--146", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-2-147, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "10", number = "2", pages = "147--147", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-2-147, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "10", number = "2", pages = "147--150", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB10-2-150, author = "Malcolm Clark", title = "R{\'e}flexions sur le {Congr{\`e}s GUTenberg}", journal = j-TUGboat, volume = "10", number = "2", pages = "150--153", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB10-2-153, author = "Malcolm Clark", title = "{International Standards and {\TeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "153--156", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-2-156, author = "Bart Childs", title = "{Teaching {\TeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "156--163", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Spivak:TB10-2-164, author = "Michael Spivak and Michael Ballantyne and Yoke Lee", title = "{HI-{\TeX} cutting \& pasting}", journal = j-TUGboat, volume = "10", number = "2", pages = "164--165", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24spivak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tobin:TB10-2-166, author = "Georgia K. M. Tobin", title = "Another dingbat idea", journal = j-TUGboat, volume = "10", number = "2", pages = "166--169", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24tobin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rubinstein:TB10-2-170, author = "Zalman Rubinstein", title = "{Chess printing via {\MF} and {\TeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "170--172", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24rubinstein.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB10-2-173, author = "Don Hosek", title = "{Guidelines for creating portable {\MF} code}", journal = j-TUGboat, volume = "10", number = "2", pages = "173--176", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24hosek-mf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Andrews:TB10-2-177, author = "Phil Andrews", title = "{Integration of {\TeX} and graphics at the Pittsburgh Supercomputing Center}", journal = j-TUGboat, volume = "10", number = "2", pages = "177--178", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24andrews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilcox:TB10-2-179, author = "Patricia Wilcox", title = "{{\eightrm METAPLOT}: Machine-independent line graphics for {\TeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "179--187", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24wilcox.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB10-2-188, author = "Don Hosek", title = "{{\TeX} output devices}", journal = j-TUGboat, volume = "10", number = "2", pages = "188--188", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24hosek-output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reid:TB10-2-188, author = "Tom Reid and Don Hosek", title = "{Report from the {\tt DVI} driver standards committee}", journal = j-TUGboat, volume = "10", number = "2", pages = "188--191", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24hosek-output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB10-2-192, author = "Don Hosek", title = "{Announcing (belatedly) \TeXMaG}", journal = j-TUGboat, volume = "10", number = "2", pages = "192--192", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB10-2-193, author = "Malcolm Clark", title = "{{\TeX}line: A newsletter of the {\TeX} community}", journal = j-TUGboat, volume = "10", number = "2", pages = "193--194", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Abbott:TB10-2-194, author = "Peter Abbott", title = "{{UK\TeX} and the Aston archive}", journal = j-TUGboat, volume = "10", number = "2", pages = "194--195", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nieland:TB10-2-195, author = "M. Edward Nieland", title = "{The DECUS {\TeX} collection}", journal = j-TUGboat, volume = "10", number = "2", pages = "195--196", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeCorte:TB10-2-196, author = "Michael DeCorte", title = "{The Clarkson archive server\Dash Update as of 1 May 1989}", journal = j-TUGboat, volume = "10", number = "2", pages = "196--201", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-2-201, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "10", number = "2", pages = "201--201", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crawford:TB10-2-201, author = "John Crawford", title = "Prime 50 series site report", journal = j-TUGboat, volume = "10", number = "2", pages = "201--201", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Radel:TB10-2-202, author = "Jon Radel", title = "{``Free'' {\TeX} software for IBM PCs}", journal = j-TUGboat, volume = "10", number = "2", pages = "202--202", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24pc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Trevorrow:TB10-2-202, author = "Andrew Trevorrow", title = "{Public domain {\TeX} for the Mac}", journal = j-TUGboat, volume = "10", number = "2", pages = "202--203", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24pc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bechtolsheim:TB10-2-203, author = "Stephan v. Bechtolsheim", title = "{{\tt\bs csname} and {\tt\bs string}}", journal = j-TUGboat, volume = "10", number = "2", pages = "203--206", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB10-2-207, author = "David Salomon", title = "{DDA methods in {\TeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "207--216", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vogel:TB10-2-217, author = "Brother Eric Vogel", title = "{Printing Vietnamese characters by adding diacritical marks}", journal = j-TUGboat, volume = "10", number = "2", pages = "217--221", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24vogel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB10-2-222, author = "Frank Mittelbach and Rainer Sch{\"o}pf", title = "{A new font selection scheme for {\TeX} macro packages\Dash the basic macros}", journal = j-TUGboat, volume = "10", number = "2", pages = "222--238", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nagy:TB10-2-239, author = "Dezs{\H{o}} Nagy", title = "{A bar chart in {\LaTeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "239--240", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24nagy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Partl:TB10-2-241, author = "Hubert Partl", title = "{Producing on-line information files with {\LaTeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "241--244", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24partl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB10-2-245, author = "Frank Mittelbach", title = "{The {\tt doc}--option}", journal = j-TUGboat, volume = "10", number = "2", pages = "245--273", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24mitt-doc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kelly:TB10-2-274, author = "B. Hamilton Kelly", title = "{The {\tt autodoc}--option}", journal = j-TUGboat, volume = "10", number = "2", pages = "274--284", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24hamiltonkelly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-2-285, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "10", number = "2", pages = "285--286", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-2-287, author = "Anonymous", title = "{Nordic {\TeX} meeting, 12 June 1989, Royal Institute of Technology, Stockholm}", journal = j-TUGboat, volume = "10", number = "2", pages = "287--287", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-2-287-2, author = "Anonymous", title = "{{\LaTeX} course book in Dutch}", journal = j-TUGboat, volume = "10", number = "2", pages = "287--287", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lammarsch:TB10-2-287, author = "Joachim Lammarsch", title = "{DANTE\Dash Deutschsprachige Anwendervereinigung {\TeX}}", journal = j-TUGboat, volume = "10", number = "2", pages = "287--288", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Osborne:TB10-2-288, author = "David Osborne", title = "{Notes on first meeting of UK {\TeX} Users' Group, 15 March 1989}", journal = j-TUGboat, volume = "10", number = "2", pages = "288--289", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-2-289, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "10", number = "2", pages = "289--289", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-2/tb24news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-2-290, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "10", number = "2", pages = "290--290", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-2-M, author = "Anonymous", title = "{TUG Membership List Supplement}", journal = j-TUGboat, volume = "10", number = "2", pages = "M-1--M-11", month = jul, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "24", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-309, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "10", number = "3", pages = "309--310", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-3-311, author = "Bart Childs", title = "From the {President}", journal = j-TUGboat, volume = "10", number = "3", pages = "311--312", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB10-3-312, author = "Nelson H. F. Beebe", title = "Message from the new {President}", journal = j-TUGboat, volume = "10", number = "3", pages = "312--314", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-3-314, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "10", number = "3", pages = "314--316", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB10-3-316, author = "Victor Eijkhout and Nico Poppelier", title = "{The first Dutch {\TeX} days}", journal = j-TUGboat, volume = "10", number = "3", pages = "316--318", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB10-3-319, author = "Bart Childs", title = "{Answers to the {\TeX} tests}", journal = j-TUGboat, volume = "10", number = "3", pages = "319--323", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Technites:TB10-3-324, author = "Technites", title = "Crossword", journal = j-TUGboat, volume = "10", number = "3", pages = "324--324", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25crossword.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB10-3-325, author = "Donald E. Knuth", title = "{The new versions of {\TeX} and {\MF}}", journal = j-TUGboat, volume = "10", number = "3", pages = "325--328", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thull:TB10-3-328, author = "Klaus Thull", title = "{PubliC {\MF} available}", journal = j-TUGboat, volume = "10", number = "3", pages = "328--328", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25thull.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bechtolsheim:TB10-3-329, author = "Stephan von Bechtolsheim", title = "A {\tt .dvi} file processing program", journal = j-TUGboat, volume = "10", number = "3", pages = "329--332", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vulis:TB10-3-332, author = "Dimitri Vulis", title = "{Notes on Russian {\TeX}}", journal = j-TUGboat, volume = "10", number = "3", pages = "332--336", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25vulis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-3-336, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "10", number = "3", pages = "336--341", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25hyph.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-342, author = "Anonymous", title = "{Erratum: Typesetting Concrete Mathematics, {\TUB} Vol. 10, No. 1}", journal = j-TUGboat, volume = "10", number = "3", pages = "342--342", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25hara-latin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB10-3-342, author = "Yannis Haralambous", title = "{{\TeX} and latin alphabet languages}", journal = j-TUGboat, volume = "10", number = "3", pages = "342--345", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25hara-latin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Parker:TB10-3-346, author = "Mike Parker", title = "{Fonts and {\PS}}", journal = j-TUGboat, volume = "10", number = "3", pages = "346--350", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25parker.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Larsson:TB10-3-351, author = "Jan Eric Larsson", title = "{A chess font for {\TeX}}", journal = j-TUGboat, volume = "10", number = "3", pages = "351--351", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25larsson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Andulem:TB10-3-352, author = "Abass Andulem", title = "{The road to Ethiopic {\TeX}}", journal = j-TUGboat, volume = "10", number = "3", pages = "352--354", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25andulem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB10-3-354, author = "Yannis Haralambous and Klaus Thull", title = "{Typesetting modern Greek with 128 character codes}", journal = j-TUGboat, volume = "10", number = "3", pages = "354--359", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25hara-greek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-359, author = "Anonymous", title = "{Erratum: Chess printing via {\MF} and {\TeX}, {\TUB} Vol. 10, No. 2}", journal = j-TUGboat, volume = "10", number = "3", pages = "359--359", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25chess.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hailperin:TB10-3-360, author = "Max Hailperin", title = "{Users' guide to {\tt LaTeX-help}}", journal = j-TUGboat, volume = "10", number = "3", pages = "360--360", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25hailperin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kean:TB10-3-360, author = "Yin Kean", title = "{{\TeX-Ed}}", journal = j-TUGboat, volume = "10", number = "3", pages = "360--361", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25kean.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeCorte:TB10-3-362, author = "Michael DeCorte", title = "{The Clarkson archive server\Dash Update as of 22 September 1989}", journal = j-TUGboat, volume = "10", number = "3", pages = "362--365", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25decorte.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-365, author = "Anonymous", title = "{Coming in January from the {\AMS}}", journal = j-TUGboat, volume = "10", number = "3", pages = "365--366", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25ams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lammarsch:TB10-3-366, author = "Joachim Lammarsch", title = "{TEX EURO}", journal = j-TUGboat, volume = "10", number = "3", pages = "366--367", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gaulle:TB10-3-367, author = "Bernard Gaulle", title = "{GUTenberg will distribute {ML\TeX}}", journal = j-TUGboat, volume = "10", number = "3", pages = "367--367", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Glendown:TB10-3-367, author = "Garry Glendown", title = "{A {\TeX} mailbox in Germany}", journal = j-TUGboat, volume = "10", number = "3", pages = "367--368", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lindner:TB10-3-368, author = "Stephan Lindner and \rlap{Lutz Birkhahn}", title = "{Towards a complete and comfortable {\TeX} System}", journal = j-TUGboat, volume = "10", number = "3", pages = "368--372", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kellerman:TB10-3-372, author = "David Kellerman", title = "{VMS site coordinator's report}", journal = j-TUGboat, volume = "10", number = "3", pages = "372--372", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB10-3-373, author = "Alan Hoenig and Mitch Pfeffer", title = "{{\TeX}-{\PS} output on non-{\PS} devices}", journal = j-TUGboat, volume = "10", number = "3", pages = "373--375", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Glendown:TB10-3-376, author = "Garry Glendown", title = "{Controlling Amiga{\TeX} from CygnusEd}", journal = j-TUGboat, volume = "10", number = "3", pages = "376--377", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25glendown-pc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whitney:TB10-3-378, author = "Ron Whitney and Barbara Beeton", title = "{{\TUB} authors' guide}", journal = j-TUGboat, volume = "10", number = "3", pages = "378--385", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25whitney.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Glendown:TB10-3-385, author = "Garry Glendown", title = "{Round boxes for {\plain} {\TeX}}", journal = j-TUGboat, volume = "10", number = "3", pages = "385--387", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25glendown-round.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rubinstein:TB10-3-387, author = "Zalman Rubinstein", title = "Printing annotated chess literature in natural notation", journal = j-TUGboat, volume = "10", number = "3", pages = "387--390", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25rubinstein.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Durst:TB10-3-390, author = "Lincoln Durst", title = "Bibliographic citations; or variations on the old shell game", journal = j-TUGboat, volume = "10", number = "3", pages = "390--394", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25durst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB10-3-394, author = "David Salomon", title = "Macros for indexing and table-of-contents preparation", journal = j-TUGboat, volume = "10", number = "3", pages = "394--400", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bush:TB10-3-400, author = "Terry Bush", title = "{Scribe-to-\TeX}", journal = j-TUGboat, volume = "10", number = "3", pages = "400--400", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25mitt-latex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB10-3-400, author = "Frank Mittelbach and Rainer Sch{\"o}pf", title = "{Towards {\LaTeX} 2.10}", journal = j-TUGboat, volume = "10", number = "3", pages = "400--401", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25mitt-latex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Braams:TB10-3-401, author = "Johannes Braams and Victor Eijkhout and Nico Poppelier", title = "{The development of national {\LaTeX} styles}", journal = j-TUGboat, volume = "10", number = "3", pages = "401--406", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25braams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB10-3-407, author = "Frank Mittelbach", title = "An environment for multicolumn output", journal = j-TUGboat, volume = "10", number = "3", pages = "407--415", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25mitt-multicol.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB10-3-416, author = "Frank Mittelbach", title = "{An extension of the {\LaTeX} theorem environment}", journal = j-TUGboat, volume = "10", number = "3", pages = "416--426", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25mitt-theorem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dietsche:TB10-3-427, author = "Luzia Dietsche", title = "{Deutsche Kurzfassungen der \TUB-Artikel}", journal = j-TUGboat, volume = "10", number = "3", pages = "427--428", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-429, author = "Anonymous", title = "{Calendar and Calls for Papers}", journal = j-TUGboat, volume = "10", number = "3", pages = "429--431", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-432, author = "Anonymous", title = "{Programs of the recent TUG and Euro{\TeX} Conferences}", journal = j-TUGboat, volume = "10", number = "3", pages = "432--436", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25programs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB10-3-437, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "10", number = "3", pages = "437--437", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-438, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "10", number = "3", pages = "438--440", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ness:TB10-3-440, author = "David Ness", title = "Treasurer's report", journal = j-TUGboat, volume = "10", number = "3", pages = "440--443", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-3/tb25treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-444, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "10", number = "3", pages = "444--444", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-461, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "10", number = "3", pages = "461--461", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB10-3-M, author = "Anonymous", title = "{TUG Membership List Supplement}", journal = j-TUGboat, volume = "10", number = "3", pages = "M-1--M-12", month = nov, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "25", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB10-4-465, author = "Christina Thiele", title = "Editor's introduction", journal = j-TUGboat, volume = "10", number = "4", pages = "465--465", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Henderson:TB10-4-467, author = "Doug Henderson", title = "{Introduction to {\MF}}", journal = j-TUGboat, volume = "10", number = "4", pages = "467--479", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Billawala:TB10-4-481, author = "Neenie Billawala", title = "{Opening Pandora's box}", journal = j-TUGboat, volume = "10", number = "4", pages = "481--489", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26billawala.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Hoenig:TB10-4-491, author = "Alan Hoenig", title = "{Fractal images with {\TeX}}", journal = j-TUGboat, volume = "10", number = "4", pages = "491--498", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Hosek:TB10-4-499, author = "Don Hosek", title = "{Design of Oriental characters with {\MF}}", journal = j-TUGboat, volume = "10", number = "4", pages = "499--502", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Batzinger:TB10-4-503, author = "Bob Batzinger", title = "{Thai languages and {\MF}}", journal = j-TUGboat, volume = "10", number = "4", pages = "503--503", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26batzinger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Hobby:TB10-4-505, author = "John D. Hobby", title = "{A {\MF}-like system with {\PS} output}", journal = j-TUGboat, volume = "10", number = "4", pages = "505--512", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26hobby.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Youngen:TB10-4-513, author = "R. E. Youngen and W. B. Woolf and D. C. Latterner", title = "{Migration from Computer Modern fonts to Times fonts}", journal = j-TUGboat, volume = "10", number = "4", pages = "513--519", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26youngen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Conrad:TB10-4-521, author = "Arvin C. Conrad", title = "{Fine typesetting with {\TeX} using native Autologic fonts}", journal = j-TUGboat, volume = "10", number = "4", pages = "521--528", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26conrad.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Knuth:TB10-4-529, author = "Donald E. Knuth", title = "{The errors of {\TeX}}", journal = j-TUGboat, volume = "10", number = "4", pages = "529--531", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Doob:TB10-4-533, author = "Michael Doob", title = "Of the computer scientist, by the computer scientist, for the computer scientist", journal = j-TUGboat, volume = "10", number = "4", pages = "533--539", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26doob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Hamilton:TB10-4-541, author = "Hope Hamilton", title = "{Mastering {\TeX} with templates}", journal = j-TUGboat, volume = "10", number = "4", pages = "541--548", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26hamilton.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Hoover:TB10-4-549, author = "Anita Z. Hoover", title = "{Using WordPerfect 5.0 to create {\TeX} and {\LaTeX} documents}", journal = j-TUGboat, volume = "10", number = "4", pages = "549--559", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26hoover.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Kubek:TB10-4-561, author = "Robin L. Kubek", title = "{{\TeX} for the word processing operator}", journal = j-TUGboat, volume = "10", number = "4", pages = "561--566", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26kubek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Rattey-Hicks:TB10-4-567, author = "Jo Ann Rattey-Hicks", title = "{{\TeX} and its versatility in office production}", journal = j-TUGboat, volume = "10", number = "4", pages = "567--577", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26rattey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Diaz:TB10-4-579, author = "Max D{\'\i}az", title = "{\TeX} in {M{\'e}xico}", journal = j-TUGboat, volume = "10", number = "4", pages = "579--593", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26diaz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Haskell:TB10-4-595, author = "James Haskell and Wally Deschene and Alan Stolleis", title = "{{\TeX} for 30,000}", journal = j-TUGboat, volume = "10", number = "4", pages = "595--602", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26haskell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Wittbecker:TB10-4-603, author = "Alan E. Wittbecker", title = "{{\TeX} enslaved}", journal = j-TUGboat, volume = "10", number = "4", pages = "603--606", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26wittbecker.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Renfrow:TB10-4-607, author = "J. T. Renfrow", title = "{Methodologies for preparing and integrating {\PS} graphics}", journal = j-TUGboat, volume = "10", number = "4", pages = "607--626", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26renfrow.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Olejniczak-Burkert:TB10-4-627, author = "Rolf Olejniczak-Burkert", title = "{{\it texpic\/}\Dash Design and implementation of a picture graphics language in {\TeX}\ {\`a} la {\it pic\/}}", journal = j-TUGboat, volume = "10", number = "4", pages = "627--637", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26olejniczak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Latterner:TB10-4-639, author = "D. C. Latterner and W. B. Woolf", title = "{{\TeX} at {\it Mathematical Reviews\/}}", journal = j-TUGboat, volume = "10", number = "4", pages = "639--654", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26latterner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Pind:TB10-4-655, author = "J{\"o}rgen L. Pind", title = "{Lexicography with {\TeX}}", journal = j-TUGboat, volume = "10", number = "4", pages = "655--665", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26pind.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Clark:TB10-4-667, author = "Malcolm Clark", title = "{Olde worlde {\TeX}}", journal = j-TUGboat, volume = "10", number = "4", pages = "667--674", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Abbott:TB10-4-675, author = "Peter Abbott", title = "{The {UK\TeX} archive at the University of Aston}", journal = j-TUGboat, volume = "10", number = "4", pages = "675--680", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26abbott.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Mittelbach:TB10-4-681, author = "Frank Mittelbach and Rainer Sch{\"o}pf", title = "{With {\LaTeX} into the nineties}", journal = j-TUGboat, volume = "10", number = "4", pages = "681--690", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Greene:TB10-4-691, author = "Andrew Marc Greene", title = "{{\TeX}reation\Dash playing games with {\TeX}'s mind}", journal = j-TUGboat, volume = "10", number = "4", pages = "691--705", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26greene.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Cheswick:TB10-4-707, author = "Bill Cheswick", title = "{A permuted index for {\TeX} and {\LaTeX}}", journal = j-TUGboat, volume = "10", number = "4", pages = "707--713", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26cheswick.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Sydoriak:TB10-4-715, author = "Steve Sydoriak", title = "{{\LaTeX} memos and letters}", journal = j-TUGboat, volume = "10", number = "4", pages = "715--726", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26sydoriak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Benson:TB10-4-727, author = "Gary Benson and Debi Erpenbeck and Janet Holmes", title = "Inserts in a multiple-column format", journal = j-TUGboat, volume = "10", number = "4", pages = "727--742", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26benson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{McClure:TB10-4-743, author = "Mary McClure", title = "{{\TeX} Macros for COBOL syntax diagrams}", journal = j-TUGboat, volume = "10", number = "4", pages = "743--750", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26mcclure.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Riley:TB10-4-751, author = "Don L. Riley and Brad L. Halverson", title = "{Creating an efficient and workable PC interface for {\TeX}}", journal = j-TUGboat, volume = "10", number = "4", pages = "751--759", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26riley.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Anonymous:TB10-4-760, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "10", number = "4", pages = "760--760", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Anonymous:TB10-4-761, author = "Anonymous", title = "{List of participants at the Stanford meeting (August 20--23, 1989)}", journal = j-TUGboat, volume = "10", number = "4", pages = "761--765", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Anonymous:TB10-4-765, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "10", number = "4", pages = "765--765", month = dec, year = "1989", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb10-4/tb26ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "26", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1989 Conference Proceedings (Stanford, California).", } @Article{Anonymous:TB11-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "11", number = "1", pages = "3--4", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27addresses.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB11-1-5, author = "Nelson H. F. Beebe", title = "From the {President}", journal = j-TUGboat, volume = "11", number = "1", pages = "5--6", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB11-1-6, author = "Bart Childs", title = "{From the past President and Annual Meeting host}", journal = j-TUGboat, volume = "11", number = "1", pages = "6--7", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-7, author = "Anonymous", title = "{Donald E. Knuth Scholarship}", journal = j-TUGboat, volume = "11", number = "1", pages = "7--8", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ferguson:TB11-1-8, author = "Michael Ferguson", title = "{Coordination of non-English use of {\TeX}}", journal = j-TUGboat, volume = "11", number = "1", pages = "8--9", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Breitenlohner:TB11-1-9, author = "Peter Breitenlohner", title = "{Using {\TeX} 3 in a multilingual environment\Dash Some ideas}", journal = j-TUGboat, volume = "11", number = "1", pages = "9--12", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-56, author = "Anonymous", title = "{Solution to crossword of {\TUB} vol. 10, no. 3}", journal = j-TUGboat, volume = "11", number = "1", pages = "56--56", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27cross.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-12, author = "Anonymous", title = "{Erratum: The new versions of {\TeX} and {\MF}, {\TUB} vol. 10, no. 3}", journal = j-TUGboat, volume = "11", number = "1", pages = "12--12", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27erratum.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB11-1-13, author = "Donald Knuth", title = "{Virtual Fonts: More Fun for Grand Wizards}", journal = j-TUGboat, volume = "11", number = "1", pages = "13--23", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kuiken:TB11-1-24, author = "Gerard Kuiken", title = "{Additional Hyphenation Patterns}", journal = j-TUGboat, volume = "11", number = "1", pages = "24--25", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27kuiken.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB11-1-26, author = "Yannis Haralambous", title = "{Typesetting modern Greek\Dash An update}", journal = j-TUGboat, volume = "11", number = "1", pages = "26--26", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pickrell:TB11-1-26, author = "Lee S. Pickrell", title = "{Combining graphics with {\TeX} on IBM PC-compatible systems and LaserJet printers}", journal = j-TUGboat, volume = "11", number = "1", pages = "26--31", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27pickrell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-1-32, author = "Barbara Beeton and Ron Whitney", title = "{Summary of resources available to {\TeX} users}", journal = j-TUGboat, volume = "11", number = "1", pages = "32--36", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27beet-res.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-1-36, author = "Barbara Beeton", title = "{A proto-TUG bibliography}", journal = j-TUGboat, volume = "11", number = "1", pages = "36--37", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27beet-bib.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeCorte:TB11-1-38, author = "Michael DeCorte", title = "{The Clarkson archive server\Dash Update as of 26 January 1990}", journal = j-TUGboat, volume = "11", number = "1", pages = "38--45", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27decorte.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB11-1-45, author = "Dean Guenther", title = "{IBM VM/CMS site report}", journal = j-TUGboat, volume = "11", number = "1", pages = "45--45", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27guenther-vmcms.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Brouard:TB11-1-46, author = "Nicolas Brouard", title = "Une version compl{\`e}te de {\TeX} du domaine public pour compatibles {PC} : les ``deux disquettes {GUT}''", journal = j-TUGboat, volume = "11", number = "1", pages = "46--51", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27brouard.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB11-1-51, author = "Victor Eijkhout", title = "{Unusual Paragraph Shapes}", journal = j-TUGboat, volume = "11", number = "1", pages = "51--53", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guenther:TB11-1-54, author = "Dean Guenther", title = "{{\sl{\TeX}T1} goes public domain}", journal = j-TUGboat, volume = "11", number = "1", pages = "54--56", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27guenther-text1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wichura:TB11-1-57, author = "Michael J. Wichura", title = "Showing-off math macros", journal = j-TUGboat, volume = "11", number = "1", pages = "57--61", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27wichura.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Breitenlohner:TB11-1-62, author = "Peter Breitenlohner", title = "{How to avoid writing long records to {\TeX}'s {\tt\bs write} streams}", journal = j-TUGboat, volume = "11", number = "1", pages = "62--62", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27breitenlohner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Durst:TB11-1-62, author = "Lincoln Durst", title = "Forward references and the ultimate dirty trick", journal = j-TUGboat, volume = "11", number = "1", pages = "62--68", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27durst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB11-1-69, author = "David Salomon", title = "{Output routines: Examples and techniques. Part I: Introduction and examples}", journal = j-TUGboat, volume = "11", number = "1", pages = "69--85", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB11-1-85, author = "Jackie Damrau", title = "{The {\LaTeX} column}", journal = j-TUGboat, volume = "11", number = "1", pages = "85--86", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB11-1-86, author = "C. G. van der Laan", title = "{Announcing two reports: SGML-{\LaTeX} and Journal style guidelines}", journal = j-TUGboat, volume = "11", number = "1", pages = "86--86", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schrod:TB11-1-87, author = "Joachim Schrod", title = "{International {\LaTeX} is ready to use}", journal = j-TUGboat, volume = "11", number = "1", pages = "87--90", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27schrod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB11-1-91, author = "Frank Mittelbach and Rainer Sch{\"o}pf", title = "{The new font family selection\Dash User interface to standard {\LaTeX}}", journal = j-TUGboat, volume = "11", number = "1", pages = "91--97", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB11-1-98, author = "Nico Poppelier and Johannes Braams", title = "{A style option to adapt the standard {\LaTeX} document styles to A4 paper}", journal = j-TUGboat, volume = "11", number = "1", pages = "98--103", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27poppelier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kelly:TB11-1-103, author = "B Hamilton Kelly", title = "Some macros to draw crosswords", journal = j-TUGboat, volume = "11", number = "1", pages = "103--119", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27kelly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dietsche:TB11-1-120, author = "Luzia Dietsche", title = "{Deutsche Kurzfassungen der {\TUB}-Artikel}", journal = j-TUGboat, volume = "11", number = "1", pages = "120--122", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27dietsche.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Partl:TB11-1-122, author = "Hubert Partl", title = "{{\TeX}, TUG, and Eastern Europe}", journal = j-TUGboat, volume = "11", number = "1", pages = "122--123", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-123, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "11", number = "1", pages = "123--124", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-125, author = "Anonymous", title = "{GUTenberg'90, 15--17 May 1990, Toulouse, France}", journal = j-TUGboat, volume = "11", number = "1", pages = "125--126", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-126, author = "Anonymous", title = "{Call for papers: SGML \& {\TeX} conference, 31 August 1990, Groningen, The Netherlands}", journal = j-TUGboat, volume = "11", number = "1", pages = "126--126", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-1-127, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "11", number = "1", pages = "127--127", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27late.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-128, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "11", number = "1", pages = "128--130", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-131, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "11", number = "1", pages = "131--131", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-1-148, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "11", number = "1", pages = "148--148", month = apr, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-1/tb27ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "27", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-151, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "11", number = "2", pages = "151--152", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28addresses.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-2-153, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "11", number = "2", pages = "153--153", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barnhart:TB11-2-154, author = "Elizabeth Barnhart", title = "{{\TeX} in the production environment\Dash questionnaire responses}", journal = j-TUGboat, volume = "11", number = "2", pages = "154--164", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB11-2-165, author = "Donald Knuth", title = "{Exercises for {\sl\TeX\/{\rm:} The Program}}", journal = j-TUGboat, volume = "11", number = "2", pages = "165--170", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB11-2-171, author = "Nelson Beebe", title = "Character set encoding", journal = j-TUGboat, volume = "11", number = "2", pages = "171--175", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bien:TB11-2-175, author = "Janusz S. Bie{\'n}", title = "On standards for computer modern font extensions", journal = j-TUGboat, volume = "11", number = "2", pages = "175--183", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28bien.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB11-2-183, author = "Alan Hoenig", title = "Circular reasoning: typesetting on a circle, and related issues", journal = j-TUGboat, volume = "11", number = "2", pages = "183--190", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berendt:TB11-2-190, author = "Gerhard Berendt", title = "{On the implementation of graphics into {\TeX}}", journal = j-TUGboat, volume = "11", number = "2", pages = "190--194", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28berendt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schwer:TB11-2-194, author = "Len Schwer", title = "{Including Macintosh graphics in {\LaTeX} documents}", journal = j-TUGboat, volume = "11", number = "2", pages = "194--200", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28schwer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pickrell:TB11-2-200, author = "Lee S. Pickrell", title = "{Combining graphics with {\TeX} on PC systems with laser printers, part II}", journal = j-TUGboat, volume = "11", number = "2", pages = "200--206", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28pickrell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB11-2-206, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "11", number = "2", pages = "206--206", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lammarsch:TB11-2-207, author = "Joachim Lammarsch", title = "{IBM VM/CMS site report}", journal = j-TUGboat, volume = "11", number = "2", pages = "207--207", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-2-207, author = "Barbara Beeton", title = "{Resources available to {\TeX} users}", journal = j-TUGboat, volume = "11", number = "2", pages = "207--208", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-2-208, author = "Barbara Beeton", title = "{A proto-TUG bibliography: Installment two}", journal = j-TUGboat, volume = "11", number = "2", pages = "208--209", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB11-2-210, author = "Victor Eijkhout", title = "{New books on {\TeX}}", journal = j-TUGboat, volume = "11", number = "2", pages = "210--211", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nieland:TB11-2-211, author = "Ted Nieland", title = "{DECUS {\TeX} collection\Dash submissions wanted}", journal = j-TUGboat, volume = "11", number = "2", pages = "211--211", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB11-2-212, author = "Alan Hoenig", title = "{{\tt Just plain} Q\&A}", journal = j-TUGboat, volume = "11", number = "2", pages = "212--212", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB11-2-212, author = "David Salomon", title = "{Output routines: Examples and techniques. Part II: \otr{} techniques}", journal = j-TUGboat, volume = "11", number = "2", pages = "212--236", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jeffrey:TB11-2-237, author = "Alan Jeffrey", title = "{Lists in {\TeX}'s mouth}", journal = j-TUGboat, volume = "11", number = "2", pages = "237--245", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28jeffrey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB11-2-245, author = "Philip Taylor", title = "A nestable verbatim mode", journal = j-TUGboat, volume = "11", number = "2", pages = "245--249", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ha:TB11-2-250, author = "Khanh Ha", title = "{Easy Table}", journal = j-TUGboat, volume = "11", number = "2", pages = "250--264", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28ha.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB11-2-265, author = "Kees van der Laan", title = "{Typesetting bridge via {\TeX}}", journal = j-TUGboat, volume = "11", number = "2", pages = "265--276", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB11-2-276, author = "Jackie Damrau", title = "{The {\LaTeX} column}", journal = j-TUGboat, volume = "11", number = "2", pages = "276--278", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yap:TB11-2-279, author = "Ken Yap", title = "{Making 35mm colour slides with {\SliTeX}}", journal = j-TUGboat, volume = "11", number = "2", pages = "279--280", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28yap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Denk:TB11-2-280, author = "Georg Denk", title = "{An easy way to make slides with {\LaTeX}}", journal = j-TUGboat, volume = "11", number = "2", pages = "280--283", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28denk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schopf:TB11-2-284, author = "Rainer Sch{\"o}pf", title = "{A new implementation of the {\LaTeX} {\tt verbatim} and {\tt verbatim*} environments}", journal = j-TUGboat, volume = "11", number = "2", pages = "284--296", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28schopf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB11-2-297, author = "Frank Mittelbach and Rainer Sch{\"o}pf", title = "{Reprint: The new font family selection\Dash User interface to standard {\LaTeX}}", journal = j-TUGboat, volume = "11", number = "2", pages = "297--305", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dietsche:TB11-2-305, author = "Luzia Dietsche", title = "{Deutsche Kurzfassungen der {\TUB}-Artikel}", journal = j-TUGboat, volume = "11", number = "2", pages = "305--307", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28dietsche.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-308, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "11", number = "2", pages = "308--309", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-2-309, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "11", number = "2", pages = "309--310", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-310, author = "Anonymous", title = "{New publications and software available through TUG}", journal = j-TUGboat, volume = "11", number = "2", pages = "310--313", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-313, author = "Anonymous", title = "{Russians visit TUG headquarters}", journal = j-TUGboat, volume = "11", number = "2", pages = "313--313", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-314, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "11", number = "2", pages = "314--316", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-2/tb28instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-317, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "11", number = "2", pages = "317--317", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-M, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "11", number = "2", pages = "M-10--M-10", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-2-M-2, author = "Anonymous", title = "{TUG Membership List Supplement}", journal = j-TUGboat, volume = "11", number = "2", pages = "M-1--M-9", month = jun, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "28", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB11-3-335, author = "Nelson Beebe", title = "{President}'s introduction", journal = j-TUGboat, volume = "11", number = "3", pages = "335--336", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Mittelbach:TB11-3-337, author = "Frank Mittelbach", title = "{E-{\TeX}}: Guidelines for future {\TeX} extensions", journal = j-TUGboat, volume = "11", number = "3", pages = "337--345", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed Nov 28 17:08:08 2012", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Hamano:TB11-3-346, author = "Hisato Hamano", title = "{Vertical typesetting with {\TeX}}", journal = j-TUGboat, volume = "11", number = "3", pages = "346--352", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29hamano.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Miyabe:TB11-3-353, author = "Yoshiyuki Miyabe and H. Ohta and K. Tsuga", title = "{Structured document preparation system {\sl AutoLayouter}}", journal = j-TUGboat, volume = "11", number = "3", pages = "353--358", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29miyabe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Hendrickson:TB11-3-359, author = "Amy Hendrickson", title = "{Getting {\TeX}nical: Insights into {\TeX} macro writing techniques}", journal = j-TUGboat, volume = "11", number = "3", pages = "359--370", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29hendrickson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Fulling:TB11-3-371, author = "Stephen Alex Fulling", title = "{Where's the Greek shift key?}", journal = j-TUGboat, volume = "11", number = "3", pages = "371--372", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29fulling.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Beck:TB11-3-373, author = "Micah Beck and A. Siegel", title = "{TransFig: Portable graphics for {\TeX}}", journal = j-TUGboat, volume = "11", number = "3", pages = "373--380", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29beck.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Greene:TB11-3-381, author = "Andrew Marc Greene", title = "{{\BaSiX: An interpreter written in {\TeX}}}", journal = j-TUGboat, volume = "11", number = "3", pages = "381--392", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29greene.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Gibson:TB11-3-393, author = "Helen Gibson", title = "{A noddy's guide to high quality {\TeX} production}", journal = j-TUGboat, volume = "11", number = "3", pages = "393--402", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29gibson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Adams:TB11-3-403, author = "Robert A. Adams", title = "{Problems on the {\TeX}/{\PS}/graphics interface}", journal = j-TUGboat, volume = "11", number = "3", pages = "403--408", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29adams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Bechtolsheim:TB11-3-409, author = "Stephan von Bechtolsheim", title = "{{\TeX} in practice: Comments on a 4-volume, 1400-page series on {\TeX}}", journal = j-TUGboat, volume = "11", number = "3", pages = "409--412", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29bechtolsheim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{LaFrenz:TB11-3-413, author = "Mimi L. LaFrenz", title = "{Textbook publishing\Dash 1990 and beyond}", journal = j-TUGboat, volume = "11", number = "3", pages = "413--416", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29lafrenz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Ness:TB11-3-417, author = "David Ness", title = "{Diagnosing {\TeX} errors with a preprocessor}", journal = j-TUGboat, volume = "11", number = "3", pages = "417--420", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29ness.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Williams:TB11-3-421, author = "Linda Williams and Linda Hall", title = "{Increased efficiency using advanced EDT editing features}", journal = j-TUGboat, volume = "11", number = "3", pages = "421--424", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29williams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Martin:TB11-3-425, author = "Charles R. Martin", title = "{{\TeX} for {\TeX}nical typists}", journal = j-TUGboat, volume = "11", number = "3", pages = "425--428", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29martin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Vulis:TB11-3-429, author = "Michael Vulis", title = "{V{\TeX} enhancements to the {\TeX} language}", journal = j-TUGboat, volume = "11", number = "3", pages = "429--434", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29vulis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Hoenig:TB11-3-435, author = "Alan Hoenig", title = "{A constructed D{\"u}rer alphabet}", journal = j-TUGboat, volume = "11", number = "3", pages = "435--438", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Dietsche:TB11-3-439, author = "Luzia Dietsche", title = "{Deutsche Kurzfassungen der {\TUB}-Artikel}", journal = j-TUGboat, volume = "11", number = "3", pages = "439--442", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29dietsche.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Beebe:TB11-3-442, author = "Nelson Beebe", title = "{{\TeX} 3.0 and {\MF} 2.0}", journal = j-TUGboat, volume = "11", number = "3", pages = "442--443", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29status.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Mittelbach:TB11-3-444, author = "Frank Mittelbach", title = "{{\LaTeX} 2.10}", journal = j-TUGboat, volume = "11", number = "3", pages = "444--444", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29status.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Lammarsch:TB11-3-444, author = "Joachim Lammarsch", title = "{{\smc dante}, Deutschsprachige Anwendervereinigung {\TeX} e.V.}", journal = j-TUGboat, volume = "11", number = "3", pages = "444--444", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29reports.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Gaulle:TB11-3-445, author = "Bernard Gaulle", title = "{News from and about GUTenberg}", journal = j-TUGboat, volume = "11", number = "3", pages = "445--445", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29reports.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Laan:TB11-3-446, author = "Kees van der Laan", title = "{NTG's second year}", journal = j-TUGboat, volume = "11", number = "3", pages = "446--447", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29reports.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Graham:TB11-3-447, author = "Roswitha Graham and Jan Michael Rynning", title = "{Report from the Nordic {\TeX} Users Group}", journal = j-TUGboat, volume = "11", number = "3", pages = "447--448", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29reports.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Clark:TB11-3-448, author = "Malcolm Clark", title = "{{\TeX} in the UK}", journal = j-TUGboat, volume = "11", number = "3", pages = "448--449", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29reports.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Clark:TB11-3-450, author = "Malcolm Clark", title = "{{\TeX} in Europe}", journal = j-TUGboat, volume = "11", number = "3", pages = "450--451", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29reports.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Platt:TB11-3-451, author = "Craig Platt", title = "{MVS site report}", journal = j-TUGboat, volume = "11", number = "3", pages = "451--451", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Kellerman:TB11-3-451, author = "David Kellerman", title = "{VMS site report}", journal = j-TUGboat, volume = "11", number = "3", pages = "451--452", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Childs:TB11-3-452, author = "Bart Childs", title = "{Data General site report}", journal = j-TUGboat, volume = "11", number = "3", pages = "452--452", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Crawford:TB11-3-453, author = "John Crawford", title = "Prime 50 series site report", journal = j-TUGboat, volume = "11", number = "3", pages = "453--453", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{MacKay:TB11-3-453, author = "Pierre A. MacKay", title = "{{\UNIX{\TeX} site report}}", journal = j-TUGboat, volume = "11", number = "3", pages = "453--454", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Lammarsch:TB11-3-454, author = "Joachim Lammarsch", title = "{VM/CMS site report}", journal = j-TUGboat, volume = "11", number = "3", pages = "454--455", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29site.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Beeton:TB11-3-455, author = "Barbara Beeton", title = "Report from the question and answer session", journal = j-TUGboat, volume = "11", number = "3", pages = "455--458", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29queries.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Anonymous:TB11-3-458, author = "Anonymous", title = "{List of participants at the Texas A\&M meeting (June 17--20, 1990)}", journal = j-TUGboat, volume = "11", number = "3", pages = "458--461", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29participants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Anonymous:TB11-3-462, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "11", number = "3", pages = "462--462", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Anonymous:TB11-3-463, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "11", number = "3", pages = "463--465", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Anonymous:TB11-3-466, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "11", number = "3", pages = "466--466", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Anonymous:TB11-3-479, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "11", number = "3", pages = "479--479", month = sep, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-3/tb29ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "29", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Texas).", } @Article{Anonymous:TB11-4-483, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "11", number = "4", pages = "483--484", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB11-4-485, author = "Nelson H. F. Beebe", title = "From the {President}", journal = j-TUGboat, volume = "11", number = "4", pages = "485--487", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30beebe-pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-488, author = "Anonymous", title = "{The future of {\TeX}}", journal = j-TUGboat, volume = "11", number = "4", pages = "488--488", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30futuretex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB11-4-489, author = "Donald E. Knuth", title = "{The future of {\TeX} and {\MF}}", journal = j-TUGboat, volume = "11", number = "4", pages = "489--489", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB11-4-490, author = "Nelson H. F. Beebe", title = "{Comments on the future of {\TeX} and {\MF}}", journal = j-TUGboat, volume = "11", number = "4", pages = "490--494", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30beebe-future.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-4-494, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "11", number = "4", pages = "494--496", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB11-4-497, author = "Donald Knuth", title = "{Arthur Lee Samuel, 1901--1990}", journal = j-TUGboat, volume = "11", number = "4", pages = "497--498", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30knut-samuel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB11-4-499, author = "Donald Knuth", title = "{Answers to Exercises for {\sl\TeX\/{\rm:} The Program}}", journal = j-TUGboat, volume = "11", number = "4", pages = "499--511", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30knut-exercises.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fox:TB11-4-511, author = "Jim Fox", title = "Webless literate programming", journal = j-TUGboat, volume = "11", number = "4", pages = "511--513", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30fox.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Stokes:TB11-4-513, author = "Harold T. Stokes", title = "{A {\TeX} previewer for ``slow'' terminals}", journal = j-TUGboat, volume = "11", number = "4", pages = "513--514", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30stokes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ferguson:TB11-4-514, author = "Michael Ferguson", title = "Report on multilingual activities", journal = j-TUGboat, volume = "11", number = "4", pages = "514--515", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30ferguson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-516, author = "Anonymous", title = "{Extended {\TeX} font encoding scheme\Dash Latin, Cork, September 12, 1990}", journal = j-TUGboat, volume = "11", number = "4", pages = "516--516", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30ferguson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB11-4-517, author = "Karl Berry", title = "Filenames for fonts", journal = j-TUGboat, volume = "11", number = "4", pages = "517--520", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30berry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB11-4-520, author = "Yannis Haralambous", title = "{Arabic, Persian and Ottoman {\TeX} for Mac and PC}", journal = j-TUGboat, volume = "11", number = "4", pages = "520--524", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yanai:TB11-4-525, author = "Shimon Yanai and Daniel M. Berry", title = "{Environment for translating {\MF} to {\PS}}", journal = j-TUGboat, volume = "11", number = "4", pages = "525--541", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30yanai.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tofsted:TB11-4-542, author = "David Tofsted", title = "An improved chess font", journal = j-TUGboat, volume = "11", number = "4", pages = "542--544", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30tofsted.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB11-4-545, author = "Don Hosek", title = "{{\TeX} output devices (with charts)}", journal = j-TUGboat, volume = "11", number = "4", pages = "545--569", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB11-4-570, author = "Don Hosek", title = "{Report from the {\tt DVI} Driver Standards Committee}", journal = j-TUGboat, volume = "11", number = "4", pages = "570--570", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-4-570, author = "Barbara Beeton", title = "Updates from all over", journal = j-TUGboat, volume = "11", number = "4", pages = "570--571", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB11-4-571, author = "Karl Berry", title = "{\tt eplain}", journal = j-TUGboat, volume = "11", number = "4", pages = "571--572", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB11-4-572, author = "Victor Eijkhout", title = "{New Books on {\TeX}}", journal = j-TUGboat, volume = "11", number = "4", pages = "572--573", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-4-573, author = "Barbara Beeton", title = "{A proto-TUG bibliography: Installment three}", journal = j-TUGboat, volume = "11", number = "4", pages = "573--576", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nieland:TB11-4-576, author = "Ted Nieland", title = "{The 1990 DECUS {\TeX} collection}", journal = j-TUGboat, volume = "11", number = "4", pages = "576--577", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB11-4-578, author = "Don Hosek", title = "{The {\tt IVRITEX} Mailing List}", journal = j-TUGboat, volume = "11", number = "4", pages = "578--578", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lammarsch:TB11-4-578, author = "Joachim Lammarsch", title = "{IBM VM/CMS site report}", journal = j-TUGboat, volume = "11", number = "4", pages = "578--578", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Neuwirth:TB11-4-578, author = "Erich Neuwirth", title = "{{\TeX} implementations for IBM PCs: comparative timings}", journal = j-TUGboat, volume = "11", number = "4", pages = "578--580", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30neuwirth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Durst:TB11-4-580, author = "Lincoln Durst", title = "Long-winded endnotes and exercises with hints or solutions", journal = j-TUGboat, volume = "11", number = "4", pages = "580--588", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30durst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB11-4-588, author = "David Salomon", title = "{Output routines: Examples and techniques. Part III: insertions}", journal = j-TUGboat, volume = "11", number = "4", pages = "588--605", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB11-4-605, author = "Victor Eijkhout", title = "A new editor", journal = j-TUGboat, volume = "11", number = "4", pages = "605--605", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30downes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Downes:TB11-4-605, author = "Michael Downes", title = "{Line breaking in {\tt\bs unhbox}ed text}", journal = j-TUGboat, volume = "11", number = "4", pages = "605--612", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30downes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Maus:TB11-4-612, author = "Sonja Maus", title = "{Looking ahead for a \}", journal = j-TUGboat, volume = "11", number = "4", pages = "612--613", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30maus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB11-4-613, author = "Victor Eijkhout", title = "An indentation scheme", journal = j-TUGboat, volume = "11", number = "4", pages = "613--616", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30eijkhout-indent.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB11-4-616, author = "Victor Eijkhout", title = "{A {\tt\char`\\parskip} scheme}", journal = j-TUGboat, volume = "11", number = "4", pages = "616--619", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30eijkhout-parskip.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Whitney:TB11-4-620, author = "Ron Whitney", title = "{Sanitizing control sequences under {\tt\bs write}}", journal = j-TUGboat, volume = "11", number = "4", pages = "620--622", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30whitney.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lavagnino:TB11-4-623, author = "John Lavagnino and Dominik Wujastyk", title = "{An Overview of {\tt EDMAC}: A {\plain} {\TeX} format for critical editions}", journal = j-TUGboat, volume = "11", number = "4", pages = "623--643", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30lava.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB11-4-644, author = "Jackie Damrau", title = "{The {\LaTeX} column}", journal = j-TUGboat, volume = "11", number = "4", pages = "644--644", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Geyer-Schulz:TB11-4-644, author = "Andreas Geyer-Schulz and Josef Matulka and Gustaf Neumann", title = "{A {\LaTeX} document style option for typesetting APL}", journal = j-TUGboat, volume = "11", number = "4", pages = "644--651", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30geyer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Love:TB11-4-652, author = "David Love", title = "{Experiments in {\TeX}nicolour\Dash A {\SliTeX} sub-style for Colour Printers}", journal = j-TUGboat, volume = "11", number = "4", pages = "652--656", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30love.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB11-4-657, author = "Frank Mittelbach", title = "Footnotes in a multi-column layout", journal = j-TUGboat, volume = "11", number = "4", pages = "657--662", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dietsche:TB11-4-663, author = "Luzia Dietsche", title = "{Deutsche Kurzfassungen der {\TUB}-Artikel}", journal = j-TUGboat, volume = "11", number = "4", pages = "663--665", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Akwai:TB11-4-665, author = "Peter C. Akwai", title = "{{\TeX} drug bug}", journal = j-TUGboat, volume = "11", number = "4", pages = "665--665", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-666, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "11", number = "4", pages = "666--666", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-cover-3, author = "Anonymous", title = "{Call for papers: {\bf TUG Twelfth Annual Meeting}, suburban Boston, 15--18 July 1991}", journal = j-TUGboat, volume = "11", number = "4", pages = "Cover 3", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-667, author = "Anonymous", title = "{Call for papers: Tenth meeting, DANTE, Vienna, 20--22 February 1991}", journal = j-TUGboat, volume = "11", number = "4", pages = "667--667", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-667-2, author = "Anonymous", title = "{{\TeX}91/Congres GUTenberg'91, Paris, 23--26 September 1991}", journal = j-TUGboat, volume = "11", number = "4", pages = "667--667", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-668, author = "Anonymous", title = "{Call for papers: RIDT 91 (raster imaging/digital typography), Boston, \rlap{15--16 October 1991}}", journal = j-TUGboat, volume = "11", number = "4", pages = "668--668", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-669, author = "Anonymous", title = "{TUG Bylaws}", journal = j-TUGboat, volume = "11", number = "4", pages = "669--676", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30bylaws.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-676, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "11", number = "4", pages = "676--678", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB11-4-679, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "11", number = "4", pages = "679--679", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-679, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "11", number = "4", pages = "679--679", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-681, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "11", number = "4", pages = "681--681", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB11-4-693, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "11", number = "4", pages = "693--693", month = nov, year = "1990", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb11-4/tb30ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "30", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB12-1-3, author = "Barbara Beeton", title = "Introduction", journal = j-TUGboat, volume = "12", number = "1", pages = "3--4", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Neuwirth:TB12-1-5, author = "Erich Neuwirth", title = "{Quick and dirty databases with nice output: AWK and {\TeX}}", journal = j-TUGboat, volume = "12", number = "1", pages = "5--7", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31eneuwirth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Detig:TB12-1-8, author = "Christine Detig", title = "{{\TeX} \& hypertext\Dash The future of electronic publishing?}", journal = j-TUGboat, volume = "12", number = "1", pages = "8--12", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31detig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Carr:TB12-1-13, author = "Les Carr and Sebastian Rahtz and Wendy Hall", title = "{Experiments with {\TeX} and hyperactivity}", journal = j-TUGboat, volume = "12", number = "1", pages = "13--20", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31carr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Braams:TB12-1-21, author = "Johannes Braams and Victor Eijkhout and Nico Poppelier", title = "{The Dutch national {\LaTeX} effort}", journal = j-TUGboat, volume = "12", number = "1", pages = "21--24", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31braams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Clark:TB12-1-25, author = "Adrian Clark", title = "{Documenting a {\TeX} archive}", journal = j-TUGboat, volume = "12", number = "1", pages = "25--27", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31aclark-archive.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Kneser:TB12-1-28, author = "Thomas Kneser", title = "{{\LaTeX}-paragraphs floating around figures}", journal = j-TUGboat, volume = "12", number = "1", pages = "28--30", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31kneser.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Eijkhout:TB12-1-31, author = "Victor Eijkhout", title = "The document style designer as a separate entity", journal = j-TUGboat, volume = "12", number = "1", pages = "31--34", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Taylor:TB12-1-35, author = "Philip Taylor", title = "{Improving the {\ae}sthetics of mixed-font documents}", journal = j-TUGboat, volume = "12", number = "1", pages = "35--44", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Wittbecker:TB12-1-45, author = "Alan Wittbecker", title = "{{\archiTeX}, a preliminary international page pattern maker}", journal = j-TUGboat, volume = "12", number = "1", pages = "45--57", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31wittbecker.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Sowa:TB12-1-58, author = "Friedhelm Sowa", title = "{Integration of graphics into {\TeX}}", journal = j-TUGboat, volume = "12", number = "1", pages = "58--63", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31sowa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Murphy:TB12-1-64, author = "Timothy Murphy", title = "{PostScript, QuickDraw, {\TeX}}", journal = j-TUGboat, volume = "12", number = "1", pages = "64--65", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31murphy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Maclenan:TB12-1-66, author = "M. P. Maclenan and G. M. Burns", title = "An approach to drawing circuit diagrams for text books", journal = j-TUGboat, volume = "12", number = "1", pages = "66--69", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31maclenan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Nicole:TB12-1-70, author = "Olivier Nicole", title = "{A graphic driver to interface statistical software S and {\PiCTeX}}", journal = j-TUGboat, volume = "12", number = "1", pages = "70--73", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31nicole.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Mittelbach:TB12-1-74, author = "Frank Mittelbach and Rainer Sch{\"o}pf", title = "{Towards {\LaTeX} 3.0}", journal = j-TUGboat, volume = "12", number = "1", pages = "74--79", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Kelly:TB12-1-80, author = "Brian Hamilton Kelly", title = "{Public-domain, documented implementations of {\TeX} and {\MF} for VAX/VMS}", journal = j-TUGboat, volume = "12", number = "1", pages = "80--83", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31hamiltonkelly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Clark:TB12-1-84, author = "Malcolm Clark", title = "Post congress tristesse", journal = j-TUGboat, volume = "12", number = "1", pages = "84--89", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31mclark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Laan:TB12-1-90, author = "Kees van der Laan", title = "{SGML (, {\TeX} and \dots)}", journal = j-TUGboat, volume = "12", number = "1", pages = "90--104", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Poppelier:TB12-1-105, author = "N. A. F. M. Poppelier", title = "{SGML and {\TeX} in scientific publishing}", journal = j-TUGboat, volume = "12", number = "1", pages = "105--109", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31poppelier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Hendrickson:TB12-1-110, author = "Amy Hendrickson", title = "{Getting {\TeX}nical: Insights into {\TeX} macro writing techniques}", journal = j-TUGboat, volume = "12", number = "1", pages = "110--110", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31hendrickson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Wonneberger:TB12-1-111, author = "Reinhard Wonneberger and Frank Mittelbach", title = "{{\BibTeX{} reconsidered}}", journal = j-TUGboat, volume = "12", number = "1", pages = "111--124", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31wonn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Hoenig:TB12-1-125, author = "Alan Hoenig", title = "{Labelling figures in {\TeX} documents}", journal = j-TUGboat, volume = "12", number = "1", pages = "125--128", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Haralambous:TB12-1-129, author = "Yannis Haralambous", title = "Typesetting old {German}: {Fraktur}, {Schwabacher}, {Gotisch} and initials", journal = j-TUGboat, volume = "12", number = "1", pages = "129--138", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Searcoid:TB12-1-139, author = "M/iche/al /O Searc/oid", title = "The {Irish} alphabet", journal = j-TUGboat, volume = "12", number = "1", pages = "139--148", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31searcoid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Guenther:TB12-1-149, author = "Dean Guenther and Janene Winter", title = "An international phonetic alphabet", journal = j-TUGboat, volume = "12", number = "1", pages = "149--156", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31guenther.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Clark:TB12-1-157, author = "Adrian F. Clark", title = "{Practical halftoning with {\TeX}}", journal = j-TUGboat, volume = "12", number = "1", pages = "157--165", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Barden:TB12-1-166, author = "Angela Barden", title = "{Some {\TeX} manuals}", journal = j-TUGboat, volume = "12", number = "1", pages = "166--170", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31barden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Neuwirth:TB12-1-171, author = "Konrad Neuwirth", title = "{{\TeX} in schools: Just say no}", journal = j-TUGboat, volume = "12", number = "1", pages = "171--174", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31kneuwirth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Anonymous:TB12-1-175, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "12", number = "1", pages = "175--175", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Anonymous:TB12-1-176, author = "Anonymous", title = "Nominations", journal = j-TUGboat, volume = "12", number = "1", pages = "176--176", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Vesely:TB12-1-176, author = "Ji{\v{r}}{\'\i} Vesel{\'y}", title = "{{\TeX} in Czechoslovakia}", journal = j-TUGboat, volume = "12", number = "1", pages = "176--177", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Sullivan:TB12-1-177, author = "Wayne Sullivan", title = "{sb{\TeX} and sbMF}", journal = j-TUGboat, volume = "12", number = "1", pages = "177--177", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Raman:TB12-1-178, author = "T. V. Raman", title = "{{\TeX} TALK}", journal = j-TUGboat, volume = "12", number = "1", pages = "178--178", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Anonymous:TB12-1-179, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "12", number = "1", pages = "179--181", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Anonymous:TB12-1-182, author = "Anonymous", title = "{TUG membership applications}", journal = j-TUGboat, volume = "12", number = "1", pages = "182--183", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Anonymous:TB12-1-200, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "12", number = "1", pages = "200--200", month = mar, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb12-1/tb31ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "31", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1990 Proceedings (Cork).", } @Article{Anonymous:TB12-2-203, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "12", number = "2", pages = "203--204", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB12-2-205, author = "Nelson H. F. Beebe", title = "{President}'s introduction", journal = j-TUGboat, volume = "12", number = "2", pages = "205--208", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB12-2-208, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "12", number = "2", pages = "208--211", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Obermiller:TB12-2-211, author = "Walter Obermiller", title = "{{\TeX} in Germany}", journal = j-TUGboat, volume = "12", number = "2", pages = "211--212", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32obermiller.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Malyshev:TB12-2-212, author = "Basil Malyshev and Alexander Samarin and Dimitri Vulis", title = "{Russian {\TeX}}", journal = j-TUGboat, volume = "12", number = "2", pages = "212--214", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32malyshev.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Krstev:TB12-2-215, author = "Cvetana Krstev", title = "{Serbo-Croatian hyphenation: a {\TeX} point of view}", journal = j-TUGboat, volume = "12", number = "2", pages = "215--223", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32krstev.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB12-2-224, author = "Yannis Haralambous", title = "{On {\TeX} and Greek\dots}", journal = j-TUGboat, volume = "12", number = "2", pages = "224--226", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jalbert:TB12-2-227, author = "Fran{\c{c}}ois Jalbert", title = "{{\JemTeX} 2.00 available for Japanese}", journal = j-TUGboat, volume = "12", number = "2", pages = "227--227", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32jalbert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jeffrey:TB12-2-227, author = "Alan Jeffrey", title = "{Labelled diagrams in {\MF}}", journal = j-TUGboat, volume = "12", number = "2", pages = "227--229", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32jeffrey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fossmeier:TB12-2-229, author = "Reinhard F{\"o}{\ss}meier", title = "{X bitmaps in {\TeX}}", journal = j-TUGboat, volume = "12", number = "2", pages = "229--232", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32fossmeier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schrod:TB12-2-232, author = "Joachim Schrod", title = "{Report on the {\tt DVI} Driver Standard}", journal = j-TUGboat, volume = "12", number = "2", pages = "232--233", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32schrod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB12-2-233, author = "Karl Berry and Kathy Hargreaves", title = "{Review of {\it 3\thinspace:\thinspace16 Bible Texts Illuminated}}", journal = j-TUGboat, volume = "12", number = "2", pages = "233--235", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB12-2-235, author = "Nico Poppelier", title = "{Review of {\it {\LaTeX} for engineers and scientists}}", journal = j-TUGboat, volume = "12", number = "2", pages = "235--236", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB12-2-237, author = "Alan Hoenig", title = "{{\tt Just plain} Q\&A}", journal = j-TUGboat, volume = "12", number = "2", pages = "237--238", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB12-2-238, author = "David Salomon", title = "{The {\tt\bs if}, {\tt\bs fx} and {\tt\bs ifcat} comparisons}", journal = j-TUGboat, volume = "12", number = "2", pages = "238--247", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Durst:TB12-2-248, author = "Lincoln Durst", title = "{Some tools for making indexes: Part I}", journal = j-TUGboat, volume = "12", number = "2", pages = "248--252", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32durst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB12-2-253, author = "Victor Eijkhout", title = "{The structure of the {\TeX} processor}", journal = j-TUGboat, volume = "12", number = "2", pages = "253--256", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32eijkhout-structure.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB12-2-257, author = "Barbara Beeton", title = "Initiation rites", journal = j-TUGboat, volume = "12", number = "2", pages = "257--258", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32beet-initiation.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB12-2-259, author = "Frank Mittelbach", title = "{Solution to the riddle from \tubissue 11(4)}", journal = j-TUGboat, volume = "12", number = "2", pages = "259--259", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB12-2-260, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "12", number = "2", pages = "260--260", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32eijkhout-tricks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeSmet:TB12-2-261, author = "Don {De Smet}", title = "{{\TeX} macros for producing multiple-choice tests}", journal = j-TUGboat, volume = "12", number = "2", pages = "261--269", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32smet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB12-2-270, author = "Jim Hefferon", title = "{Getting {\tt\bs answer}s in {\TeX}}", journal = j-TUGboat, volume = "12", number = "2", pages = "270--272", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB12-2-272, author = "Victor Eijkhout", title = "{Oral {\TeX}}", journal = j-TUGboat, volume = "12", number = "2", pages = "272--276", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32eijkhout-oral.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Maus:TB12-2-277, author = "Sonja Maus", title = "An expansion power lemma", journal = j-TUGboat, volume = "12", number = "2", pages = "277--277", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32maus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Russell:TB12-2-278, author = "George Russell", title = "{Generating {\tt\bs n} asterisks}", journal = j-TUGboat, volume = "12", number = "2", pages = "278--279", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32russell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vulis:TB12-2-279, author = "Dimitri Vulis", title = "{{\TeX} and envelopes}", journal = j-TUGboat, volume = "12", number = "2", pages = "279--284", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32vulis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB12-2-284, author = "Jackie Damrau", title = "{The {\LaTeX} column}", journal = j-TUGboat, volume = "12", number = "2", pages = "284--285", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB12-2-285, author = "Nico Poppelier", title = "{A comment on The {\LaTeX} column}", journal = j-TUGboat, volume = "12", number = "2", pages = "285--286", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32poppelier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Swonk:TB12-2-286, author = "Glenn L. Swonk", title = "{{\LaTeX} tree drawer}", journal = j-TUGboat, volume = "12", number = "2", pages = "286--289", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32swonk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thimbleby:TB12-2-290, author = "Harold Thimbleby", title = "{``See also'' indexing with Makeindex}", journal = j-TUGboat, volume = "12", number = "2", pages = "290--290", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32thim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Braams:TB12-2-291, author = "Johannes Braams", title = "{Babel, a multilingual style-option system for use with {\LaTeX}'s standard document styles}", journal = j-TUGboat, volume = "12", number = "2", pages = "291--301", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32braa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lankford:TB12-2-302, author = "Jeff Lankford", title = "{Public domain SGML tools wanted}", journal = j-TUGboat, volume = "12", number = "2", pages = "302--302", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vesely:TB12-2-302, author = "Ji{\v{r}}{\'{}\i} Vesel{\'y}", title = "{Reporting {\TeX}'s hyphenations}", journal = j-TUGboat, volume = "12", number = "2", pages = "302--302", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Abrahams:TB12-2-302, author = "Paul Abrahams", title = "{Response to Victor Eijkhout}", journal = j-TUGboat, volume = "12", number = "2", pages = "302--303", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB12-2-303, author = "Victor Eijkhout", title = "{Response to Paul Abrahams}", journal = j-TUGboat, volume = "12", number = "2", pages = "303--303", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cuoco:TB12-2-303, author = "Al Cuoco", title = "{{\TeX} in schools: Why not?}", journal = j-TUGboat, volume = "12", number = "2", pages = "303--304", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32letters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-305, author = "Anonymous", title = "{Cahiers GUTenberg \#7 and \#8}", journal = j-TUGboat, volume = "12", number = "2", pages = "305--306", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-307, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "12", number = "2", pages = "307--308", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-309, author = "Anonymous", title = "{{\TeX}91/Congres GUTenberg'91, Paris, 23--26 September 1991}", journal = j-TUGboat, volume = "12", number = "2", pages = "309--310", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-311, author = "Anonymous", title = "{Desktop Publishing in astronomy and space sciences, Strasbourg, 1--3 October 1991}", journal = j-TUGboat, volume = "12", number = "2", pages = "311--311", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-311-2, author = "Anonymous", title = "{Call for papers: EP92: International conference on electronic publishing, document manipulation, and typography, Lausanne, Switzerland, 7--10 April 1992}", journal = j-TUGboat, volume = "12", number = "2", pages = "311--312", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB12-2-313, author = "Donald Knuth", title = "{Fixed-point glue setting: Errata}", journal = j-TUGboat, volume = "12", number = "2", pages = "313--313", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB12-2-313, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "12", number = "2", pages = "313--314", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-315, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "12", number = "2", pages = "315--315", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-315-2, author = "Anonymous", title = "{TUG financial statements}", journal = j-TUGboat, volume = "12", number = "2", pages = "315--318", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-319, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "12", number = "2", pages = "319--320", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-321, author = "Anonymous", title = "{TUG Bylaws}", journal = j-TUGboat, volume = "12", number = "2", pages = "321--328", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32bylaws.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-331, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "12", number = "2", pages = "331--331", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-348, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "12", number = "2", pages = "348--348", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-2/tb32ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-3, author = "Anonymous", title = "{TUG Membership List}", journal = j-TUGboat, volume = "12", number = "2", pages = "3--117", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-118, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "12", number = "2", pages = "118", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-119, author = "Anonymous", title = "General comments", journal = j-TUGboat, volume = "12", number = "2", pages = "119--119", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-119-2, author = "Anonymous", title = "{\TUG}", journal = j-TUGboat, volume = "12", number = "2", pages = "119--120", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-120, author = "Anonymous", title = "{{\CSTUG{}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "120--120", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-120-2, author = "Anonymous", title = "{CyrTUG}", journal = j-TUGboat, volume = "12", number = "2", pages = "120--120", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-120-3, author = "Anonymous", title = "{DANTE e.V.}", journal = j-TUGboat, volume = "12", number = "2", pages = "120--121", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-121, author = "Anonymous", title = "{GUTenberg}", journal = j-TUGboat, volume = "12", number = "2", pages = "121--122", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-122, author = "Anonymous", title = "{ITALIC}", journal = j-TUGboat, volume = "12", number = "2", pages = "122--122", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-122-2, author = "Anonymous", title = "{JTUG\Dash TUG Japan}", journal = j-TUGboat, volume = "12", number = "2", pages = "122--122", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-123, author = "Anonymous", title = "{Nordic {\TeX} Group}", journal = j-TUGboat, volume = "12", number = "2", pages = "123--123", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-123-2, author = "Anonymous", title = "{NTG}", journal = j-TUGboat, volume = "12", number = "2", pages = "123--124", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-124, author = "Anonymous", title = "{\uktug}", journal = j-TUGboat, volume = "12", number = "2", pages = "124--124", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-125, author = "Anonymous", title = "{YUNUS -- Turkish {\TeX} users}", journal = j-TUGboat, volume = "12", number = "2", pages = "125--125", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-125-2, author = "Anonymous", title = "Other international contacts", journal = j-TUGboat, volume = "12", number = "2", pages = "125--125", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barnhart:TB12-2-126, author = "Elizabeth M. Barnhart", title = "{\TeX} {L.U.G.s}", journal = j-TUGboat, volume = "12", number = "2", pages = "126", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-127, author = "Anonymous", title = "Generic format", journal = j-TUGboat, volume = "12", number = "2", pages = "127--128", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-128, author = "Anonymous", title = "{Acorn Archimedes}", journal = j-TUGboat, volume = "12", number = "2", pages = "128--128", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-128-2, author = "Anonymous", title = "Amiga", journal = j-TUGboat, volume = "12", number = "2", pages = "128--128", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-128-3, author = "Anonymous", title = "{Atari ST}", journal = j-TUGboat, volume = "12", number = "2", pages = "128--128", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-128-4, author = "Anonymous", title = "{Data General}", journal = j-TUGboat, volume = "12", number = "2", pages = "128--128", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-128-5, author = "Anonymous", title = "{DEC-20\Dash TOPS-20}", journal = j-TUGboat, volume = "12", number = "2", pages = "128--128", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-128-6, author = "Anonymous", title = "{IBM mainframes\dash MVS}", journal = j-TUGboat, volume = "12", number = "2", pages = "128--129", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-129, author = "Anonymous", title = "{IBM mainframes\dash VM/CMS}", journal = j-TUGboat, volume = "12", number = "2", pages = "129--129", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-129-2, author = "Anonymous", title = "{IBM PC and compatibles\Dash MS-DOS}", journal = j-TUGboat, volume = "12", number = "2", pages = "129--129", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-130, author = "Anonymous", title = "Macintosh", journal = j-TUGboat, volume = "12", number = "2", pages = "130--130", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-130-2, author = "Anonymous", title = "Prime", journal = j-TUGboat, volume = "12", number = "2", pages = "130--130", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-130-3, author = "Anonymous", title = "Unix", journal = j-TUGboat, volume = "12", number = "2", pages = "130--130", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-130-4, author = "Anonymous", title = "{{\VAX/VMS}}", journal = j-TUGboat, volume = "12", number = "2", pages = "130--131", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Nieland:TB12-2-131, author = "Ted Nieland", title = "{Announcing the DECUS {\TeX} Collection, February 1991}", journal = j-TUGboat, volume = "12", number = "2", pages = "131--132", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB12-2-133, author = "Don Hosek", title = "{{\TeX} Output Devices}", journal = j-TUGboat, volume = "12", number = "2", pages = "133--158", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-159, author = "Anonymous", title = "General observations", journal = j-TUGboat, volume = "12", number = "2", pages = "159--159", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-160, author = "Anonymous", title = "{Aston \ ({\tt uk.ac.tex})}", journal = j-TUGboat, volume = "12", number = "2", pages = "160--160", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-160-2, author = "Anonymous", title = "{Clarkson ({\LaTeX} styles)}", journal = j-TUGboat, volume = "12", number = "2", pages = "160--160", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-160-3, author = "Anonymous", title = "{{{\tt e-math.ams.com}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "160--160", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-161, author = "Anonymous", title = "{Heidelberg \ ({\tt DHDURZ1.Bitnet})}", journal = j-TUGboat, volume = "12", number = "2", pages = "161--161", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-161-2, author = "Anonymous", title = "{{{\tt june.cs.washington.edu}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "161--161", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-161-3, author = "Anonymous", title = "{{{\tt labrea.stanford.edu}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "161--161", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-161-4, author = "Anonymous", title = "{Nijmegen \ ({\tt HEARN.Bitnet})}", journal = j-TUGboat, volume = "12", number = "2", pages = "161--161", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-162, author = "Anonymous", title = "{SHSU \ ({\tt niord.shsu.edu}\,, {\tt SHSU.bitnet})}", journal = j-TUGboat, volume = "12", number = "2", pages = "162--162", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-162-2, author = "Anonymous", title = "{SPAN/DECnet (Italy)}", journal = j-TUGboat, volume = "12", number = "2", pages = "162--162", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-162-3, author = "Anonymous", title = "{Stuttgart \ ({\tt rusmv1.rus.uni-stuttgart.de})}", journal = j-TUGboat, volume = "12", number = "2", pages = "162--163", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-163, author = "Anonymous", title = "{Utrecht \ ({\tt archive.cs.ruu.nl})}", journal = j-TUGboat, volume = "12", number = "2", pages = "163--163", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-163-2, author = "Anonymous", title = "{{{\tt ymir.claremont.edu}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "163--163", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-163-3, author = "Anonymous", title = "{Other archives containing {\TeX} material}", journal = j-TUGboat, volume = "12", number = "2", pages = "163--164", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damerell:TB12-2-164, author = "R. M. Damerell", title = "Fetching files from the {Aston} archive", journal = j-TUGboat, volume = "12", number = "2", pages = "164--169", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-170, author = "Anonymous", title = "General comments", journal = j-TUGboat, volume = "12", number = "2", pages = "170--171", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-171, author = "Anonymous", title = "{{{\tt comp.text.tex}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "171--171", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-171-2, author = "Anonymous", title = "{{{\tt ELLHNIKA}} (Greek)}", journal = j-TUGboat, volume = "12", number = "2", pages = "171--171", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-172, author = "Anonymous", title = "{{{\tt GUT}} (GUTenberg)}", journal = j-TUGboat, volume = "12", number = "2", pages = "172--172", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-172-2, author = "Anonymous", title = "{{{\tt INFO-TeX}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "172--172", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-172-3, author = "Anonymous", title = "{{{\tt IVRITEX}} (Semitic languages)}", journal = j-TUGboat, volume = "12", number = "2", pages = "172--172", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-172-4, author = "Anonymous", title = "{{{\tt LaTeX-help}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "172--172", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-173, author = "Anonymous", title = "{{{\tt RUSTeX-L}} (Russian)}", journal = j-TUGboat, volume = "12", number = "2", pages = "173--173", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", language = "Russian", } @Article{Anonymous:TB12-2-173-2, author = "Anonymous", title = "{{{\tt TeX-D-L}} (German)}", journal = j-TUGboat, volume = "12", number = "2", pages = "173--173", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", language = "German", } @Article{Anonymous:TB12-2-173-3, author = "Anonymous", title = "{{{\tt TeX-EURO}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "173--173", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-173-4, author = "Anonymous", title = "{{{\tt TeXhax}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "173--174", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-174, author = "Anonymous", title = "{{\TeX}MaG}", journal = j-TUGboat, volume = "12", number = "2", pages = "174--174", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-174-2, author = "Anonymous", title = "{{{\tt TeX-Pubs}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "174--174", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-174-3, author = "Anonymous", title = "{{{\tt UKTeX}}}", journal = j-TUGboat, volume = "12", number = "2", pages = "174--175", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-175, author = "Anonymous", title = "{{{\tt TeX-NL}} (Dutch)}", journal = j-TUGboat, volume = "12", number = "2", pages = "175--175", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", language = "Dutch", } @Article{Anonymous:TB12-2-175-2, author = "Anonymous", title = "{{{\tt YUNUS}} (Turkish)}", journal = j-TUGboat, volume = "12", number = "2", pages = "175--175", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-176, author = "Anonymous", title = "{Publications about {\TeX} and typography}", journal = j-TUGboat, volume = "12", number = "2", pages = "176--183", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB12-2-183, author = "Anonymous", title = "{Publications prepared with {\TeX}}", journal = j-TUGboat, volume = "12", number = "2", pages = "183--194", month = jun, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "32", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB12-3-351, author = "Nelson H. F. Beebe", title = "{President}'s introduction", journal = j-TUGboat, volume = "12", number = "3/4", pages = "351--352", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Poppelier:TB12-3-353, author = "Nico A. F. M. Poppelier", title = "Two sides of the fence", journal = j-TUGboat, volume = "12", number = "3/4", pages = "353--358", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33poppelier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Petrycki:TB12-3-359, author = "Laurie J. Petrycki", title = "{Comparing {\TeX} and traditional typesetting for the composition of a textbook}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "359--366", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33petrycki.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Bartlett:TB12-3-367, author = "Frederick H. Bartlett", title = "{Contra-{\LaTeX}, or what really works in the publishing world}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "367--371", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33bartlett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Ratner:TB12-3-372, author = "Howard Ratner and Kenneth Dreyhaupt", title = "{{\TeX} in a book production department}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "372--376", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33ratner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Horn:TB12-3-377, author = "Berthold K. P. Horn", title = "{{\tt dvi} and eps: The ideal author-to-publisher interface?}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "377--381", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33horn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Weiss:TB12-3-382, author = "Neil A. Weiss", title = "{Producing a book using {\TeX}: How the process works}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "382--386", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33weiss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Rhoads:TB12-3-387, author = "Samuel E. Rhoads", title = "{Authors new to {\TeX} publish a textbook with a publisher new to {\TeX}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "387--392", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33rhoads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Brosnan:TB12-3-393, author = "Colleen Brosnan", title = "{The ``Five Cs'': A guide to successful publication using {\TeX}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "393--396", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33brosnan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Hoover:TB12-3-397, author = "Anita Z. Hoover", title = "{{\LaTeX}/{\TeX} user: A typist, or typesetter?}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "397--400", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33hoover.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Lavagnino:TB12-3-401, author = "John Lavagnino", title = "Simultaneous electronic and paper publication", journal = j-TUGboat, volume = "12", number = "3/4", pages = "401--405", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33lavagnino.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{McGaffey:TB12-3-406, author = "Robert W. McGaffey", title = "{SGML} versus\slash and {\TeX}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "406--408", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33mcgaffey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dobrowolski:TB12-3-409, author = "Andrew E. Dobrowolski", title = "{Typesetting SGML documents using {\TeX}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "409--414", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33dobrowolski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Sperberg-McQueen:TB12-3-415, author = "C. M. Sperberg-McQueen", title = "{Specifying document structure: Differences in {\LaTeX} and TEI markup}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "415--421", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33sperberg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Kakiuchi:TB12-3-422, author = "Takashi Kakiuchi and Yuki Kusumi and Yoshiyuki Miyabe and Kazu Tsuga", title = "{A structured document preparation system\Dash {\sl Autolayouter version 2.0}\Dash an enhancement for handling multiple document types}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "422--429", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33kakiuchi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Williams:TB12-3-430, author = "Linda Williams", title = "Refining a process", journal = j-TUGboat, volume = "12", number = "3/4", pages = "430--433", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33williams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Semenzato:TB12-3-434, author = "Luigi Semenzato and Edward Wang", title = "A text processing language should be first a programming language", journal = j-TUGboat, volume = "12", number = "3/4", pages = "434--441", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33semenzato.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Vulis:TB12-3-442, author = "Michael Vulis", title = "{Should {\TeX} be extended?}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "442--447", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33vulis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-448, author = "Anonymous", title = "{TUG 1992 annual meeting, Portland, Oregon}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "448--448", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33tug92.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-449, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "12", number = "3/4", pages = "449--450", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-451, author = "Anonymous", title = "{TUG membership applications}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "451--452", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-453, author = "Anonymous", title = "{{\TeX} consultants}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "453--453", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-468, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "12", number = "3/4", pages = "468--468", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Horstmann:TB12-3-471, author = "Cay S. Horstmann", title = "{Automatic conversion from a scientific word processor to {\TeX}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "471--478", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33horstman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Arnon:TB12-3-479, author = "Dennis S. Arnon and Sandra A. Mamrak", title = "On the logical structure of mathematical notation", journal = j-TUGboat, volume = "12", number = "3/4", pages = "479--484", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33arnon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Laan:TB12-3-485, author = "Kees van der Laan", title = "{Math into BLUes}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "485--501", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Downes:TB12-3-502, author = "Michael J. Downes", title = "{Dialog with {\TeX}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "502--509", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33downes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Damrau:TB12-3-510, author = "Jackie Damrau and Michael Wester", title = "Form letters with 3-across labels capability", journal = j-TUGboat, volume = "12", number = "3/4", pages = "510--516", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Roth:TB12-3-517, author = "Mark A. Roth", title = "{Typesetting forms with {\LaTeX}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "517--522", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33roth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Flynn:TB12-3-523, author = "Peter Flynn", title = "{Developing a pop-up help facility for {\TeX} on PCs}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "523--527", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Clark:TB12-3-528, author = "Malcolm Clark and Brian Hamilton Kelly and Niel Kempson", title = "{7 bits good, 8 bits bad {\sl or\/} ``The eight-bit blight''}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "528--533", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Sowa:TB12-3-534, author = "Friedhelm Sowa", title = "{Bitmaps and halftones with {\ssf BM2FONT}}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "534--538", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33sowa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Haralambous:TB12-3-539, author = "Yannis Haralambous", title = "{{\TeX} and those other languages}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "539--548", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Hosek:TB12-3-549, author = "Don Hosek", title = "{Siamese {\TeX}: Joining dvi files at the hip and other novel applications of vf files}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "549--553", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33hosek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Hoenig:TB12-3-554, author = "Alan Hoenig", title = "{When {\TeX} and {\MF} talk: Typesetting on curved paths and other special effects}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "554--557", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-558, author = "Anonymous", title = "{Participants at TUG'91}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "558--561", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33names.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-562, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "12", number = "3/4", pages = "562--563", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-563, author = "Anonymous", title = "{The Donald E. Knuth Scholarship for 1992}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "563--564", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-564, author = "Anonymous", title = "{GUTenberg'92, Les Diablarets, Switzerland}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "564--565", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-570, author = "Anonymous", title = "{TUG 1992 annual meeting, Portland, Oregon}", journal = j-TUGboat, volume = "12", number = "3/4", pages = "570--570", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB12-3-588, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "12", number = "3/4", pages = "588--588", month = nov, year = "1991", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1991/", URL = "http://www.tug.org/TUGboat/tb12-3-4/tb33bads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "33", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1991 Conference Proceedings (Dedham).", } @Article{Anonymous:TB13-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "13", number = "1", pages = "3--4", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB13-1-5, author = "Malcolm Clark", title = "Prez says", journal = j-TUGboat, volume = "13", number = "1", pages = "5--5", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB13-1-6, author = "Nelson H. F. Beebe", title = "{President}'s introduction", journal = j-TUGboat, volume = "13", number = "1", pages = "6--10", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB13-1-10, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "13", number = "1", pages = "10--11", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-11, author = "Anonymous", title = "{Samuel B. Whidden, 1930--1991}", journal = j-TUGboat, volume = "13", number = "1", pages = "11--12", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Asher:TB13-1-13, author = "Graham Asher", title = "{Inside Type \& Set}", journal = j-TUGboat, volume = "13", number = "1", pages = "13--22", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34asher.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB13-1-23, author = "Claudio Beccari", title = "{Computer Aided Hyphenation for Italian and Modern Latin}", journal = j-TUGboat, volume = "13", number = "1", pages = "23--33", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB13-1-34, author = "Sebastian Rahtz", title = "Invisibility using virtual fonts", journal = j-TUGboat, volume = "13", number = "1", pages = "34--36", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thain:TB13-1-36, author = "Toby Thain", title = "{Packing {\MF}s into {\PS}}", journal = j-TUGboat, volume = "13", number = "1", pages = "36--38", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34thain.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mylonas:TB13-1-39, author = "C. Mylonas and R. Whitney", title = "{Modern Greek with adjunct fonts}", journal = j-TUGboat, volume = "13", number = "1", pages = "39--50", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34mylonas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB13-1-51, author = "Frank Mittelbach", title = "{Comments on ``Filenames for Fonts'' ({\TUB} 11\#4)}", journal = j-TUGboat, volume = "13", number = "1", pages = "51--53", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34mittfont.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{TDDSC:TB13-1-54, author = "{TUG {\sltt DVI} Driver Standards Committee}", title = "{{\tt DVI} driver standard, level 0}", journal = j-TUGboat, volume = "13", number = "1", pages = "54--57", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34dvistd.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-1-57, author = "Victor Eijkhout", title = "{New books on {\TeX}}", journal = j-TUGboat, volume = "13", number = "1", pages = "57--58", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB13-1-58, author = "Nico Poppelier", title = "{New books on {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "1", pages = "58--59", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB13-1-60, author = "Alan Hoenig", title = "{{\tt Just plain} Q\&A: Of partitioned matrices and doublespacing}", journal = j-TUGboat, volume = "13", number = "1", pages = "60--62", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Siebenmann:TB13-1-62, author = "L. Siebenmann", title = "{Elementary text processing and parsing in {\TeX} {\it--- the appreciation of tokens ---}}", journal = j-TUGboat, volume = "13", number = "1", pages = "62--73", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34siebenmann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-1-74, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "13", number = "1", pages = "74--74", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34eijkhout-tricks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-1-75, author = "Victor Eijkhout", title = "{Erratum: Oral {\TeX}, \tubissue 12(2), pp.\ 272--276}", journal = j-TUGboat, volume = "13", number = "1", pages = "75--75", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB13-1-75, author = "Jonathan Fine", title = "{Some basic control macros for {\TeX}}", journal = j-TUGboat, volume = "13", number = "1", pages = "75--83", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-1-84, author = "Victor Eijkhout and Ron Sommeling", title = "Self-replicating macros", journal = j-TUGboat, volume = "13", number = "1", pages = "84--84", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34eijkhout-selfrepl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tutelaers:TB13-1-85, author = "Piet Tutelaers", title = "{A font and a style for typesetting chess using {\LaTeX} or {\TeX}}", journal = j-TUGboat, volume = "13", number = "1", pages = "85--90", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34tutelaers.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB13-1-91, author = "Kees van der Laan", title = "{Tower of Hanoi, revisited}", journal = j-TUGboat, volume = "13", number = "1", pages = "91--94", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB13-1-94, author = "Jackie Damrau", title = "{The {\LaTeX} column}", journal = j-TUGboat, volume = "13", number = "1", pages = "94--95", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thimbleby:TB13-1-95, author = "Harold Thimbleby", title = "{Erratum: ``See also'' indexing with Makeindex, \tubissue {\bf 12}(2), p.\ 290}", journal = j-TUGboat, volume = "13", number = "1", pages = "95--95", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34thim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB13-1-96, author = "Frank Mittelbach and Chris Rowley", title = "{{\LaTeX} 2.09 $ \hookrightarrow $ {\LaTeX}3}", journal = j-TUGboat, volume = "13", number = "1", pages = "96--101", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34mittl3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-101, author = "Anonymous", title = "{Cahiers GUTenberg \#9 and \#10--11}", journal = j-TUGboat, volume = "13", number = "1", pages = "101--105", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-106, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "13", number = "1", pages = "106--107", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-107, author = "Anonymous", title = "{Euro{\TeX}\,92, Prague, 14--18 September 1992}", journal = j-TUGboat, volume = "13", number = "1", pages = "107--108", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB13-1-108, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "13", number = "1", pages = "108--109", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-109, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "13", number = "1", pages = "109--109", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-110, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "13", number = "1", pages = "110--111", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-112, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "13", number = "1", pages = "112--112", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-126, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "13", number = "1", pages = "126--126", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-1-127, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "13", number = "1", pages = "127--127", month = apr, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-1/tb34ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "34", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-131, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "13", number = "2", pages = "131--132", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB13-2-133, author = "Malcolm Clark", title = "{Changing {\TeX}?}", journal = j-TUGboat, volume = "13", number = "2", pages = "133--134", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB13-2-134, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "13", number = "2", pages = "134--137", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-137, author = "Anonymous", title = "{TUG seeks Executive Director}", journal = j-TUGboat, volume = "13", number = "2", pages = "137--137", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB13-2-138, author = "Philip Taylor", title = "{{\TeX}: The next generation}", journal = j-TUGboat, volume = "13", number = "2", pages = "138--138", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damerell:TB13-2-139, author = "R. M. Damerell", title = "{Knuth's profiler adapted to the VMS operating system}", journal = j-TUGboat, volume = "13", number = "2", pages = "139--145", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35damerell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB13-2-146, author = "David Salomon", title = "{Arrows for Technical Drawings}", journal = j-TUGboat, volume = "13", number = "2", pages = "146--149", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Levin:TB13-2-150, author = "Daniel Levin", title = "A solution to the color separation problem", journal = j-TUGboat, volume = "13", number = "2", pages = "150--155", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35levin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB13-2-156, author = "Sebastian Rahtz and Leonor Barroca", title = "{A style option for rotated objects in {\TeX}}", journal = j-TUGboat, volume = "13", number = "2", pages = "156--180", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Luvisetto:TB13-2-181, author = "Marisa Luvisetto and Massimo Calvani", title = "{Book review: An Italian guide to {\LaTeX} (by Claudio Beccari)}", journal = j-TUGboat, volume = "13", number = "2", pages = "181--182", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB13-2-182, author = "Nico Poppelier", title = "{Book reviews: Jane Hahn, {\it {\LaTeX} for Everyone\/}; Eric van Herwijnen, {\it Practical SGML\/}}", journal = j-TUGboat, volume = "13", number = "2", pages = "182--185", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB13-2-185, author = "Philip Taylor", title = "{Book review: Victor Eijkhout, {\it {\TeX} by Topic\/}}", journal = j-TUGboat, volume = "13", number = "2", pages = "185--188", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jones:TB13-2-188, author = "David M. Jones", title = "{A {\TeX} macro index}", journal = j-TUGboat, volume = "13", number = "2", pages = "188--189", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35resources.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-2-189, author = "Victor Eijkhout", title = "Names of control sequences", journal = j-TUGboat, volume = "13", number = "2", pages = "189--190", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35eijkhout-names.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB13-2-190, author = "Frank Mittelbach", title = "Where does this character come from?", journal = j-TUGboat, volume = "13", number = "2", pages = "190--190", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35eijkhout-names.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-2-191, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "13", number = "2", pages = "191--191", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35eijkhout-tricks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Huszar:TB13-2-192, author = "P{\'e}ter Husz{\'a}r", title = "Over the multi-column", journal = j-TUGboat, volume = "13", number = "2", pages = "192--200", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35huszar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB13-2-201, author = "Michel Goossens and Eric van Herwijnen", title = "{The elementary Particle Entity Notation (PEN) scheme}", journal = j-TUGboat, volume = "13", number = "2", pages = "201--207", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35goossens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Luvisetto:TB13-2-208, author = "Maria Luisa Luvisetto and Enzo Ugolini", title = "{From {\TeX} to {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "2", pages = "208--214", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35luvisetto.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cameron:TB13-2-215, author = "Peter J. Cameron", title = "{Geometric diagrams in {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "2", pages = "215--216", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35cameron.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Partl:TB13-2-217, author = "Hubert Partl", title = "{How to change the layout with {\LaTeX} 2.09}", journal = j-TUGboat, volume = "13", number = "2", pages = "217--220", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35partl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wonneberger:TB13-2-221, author = "Reinhard Wonneberger and Frank Mittelbach", title = "{SGML\Dash Questions and answers}", journal = j-TUGboat, volume = "13", number = "2", pages = "221--223", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35wonneberger-sgmlqa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barr:TB13-2-223, author = "Michael Barr", title = "{{\TeX} wish list}", journal = j-TUGboat, volume = "13", number = "2", pages = "223--226", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35barr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wonneberger:TB13-2-226, author = "Reinhard Wonneberger", title = "{Approaching SGML from {\TeX}}", journal = j-TUGboat, volume = "13", number = "2", pages = "226--227", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35wonneberger-sgmltex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-227, author = "Anonymous", title = "{Cahiers GUTenberg \#12}", journal = j-TUGboat, volume = "13", number = "2", pages = "227--228", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-228, author = "Anonymous", title = "{Baskerville, Volume 2, Number 1, March 1992}", journal = j-TUGboat, volume = "13", number = "2", pages = "228--229", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB13-2-229, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "13", number = "2", pages = "229--230", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-230, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "13", number = "2", pages = "230--230", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-231, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "13", number = "2", pages = "231--232", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-232, author = "Anonymous", title = "{Euro{\TeX}\,92, Prague, 14--18 September 1992}", journal = j-TUGboat, volume = "13", number = "2", pages = "232--233", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-235, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "13", number = "2", pages = "235--236", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-2-247, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "13", number = "2", pages = "247--247", month = jul, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-2/tb35ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "35", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB13-3-251, author = "Malcolm Clark", title = "{President}'s introduction", journal = j-TUGboat, volume = "13", number = "3", pages = "251--252", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/intro.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Clark:TB13-3-253, author = "Malcolm Clark", title = "{Portable graphics in {\TeX}}", journal = j-TUGboat, volume = "13", number = "3", pages = "253--260", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/clark-keynote.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Childs:TB13-3-261, author = "Bart Childs", title = "Literate programming, a practitioner's view", journal = j-TUGboat, volume = "13", number = "3", pages = "261--268", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Hampson:TB13-3-269, author = "Steve Hampson and Barry Smith", title = "{A high performance {\TeX} for the Motorola 68000 processor family}", journal = j-TUGboat, volume = "13", number = "3", pages = "269--271", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/smith.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Baldwin:TB13-3-272, author = "Harry L. {Baldwin, Jr.}", title = "{Using a high-level language as an aid in writing {\TeX} documents}", journal = j-TUGboat, volume = "13", number = "3", pages = "272--280", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/baldwin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bennett:TB13-3-281, author = "Larry F. Bennett", title = "{T-EDIT, a collection of editing macros for {\TeX}}", journal = j-TUGboat, volume = "13", number = "3", pages = "281--290", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/bennett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Gaffey:TB13-3-291, author = "Robert McGaffey", title = "{Automatic tables using {\SMC SGML}, {\SMC C}, and {\TeX}}", journal = j-TUGboat, volume = "13", number = "3", pages = "291--294", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/mcgaffey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Starks:TB13-3-295, author = "Anthony J. Starks", title = "{Dotex\Dash integrating {\TeX} into the X-window system}", journal = j-TUGboat, volume = "13", number = "3", pages = "295--303", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/starks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Thorup:TB13-3-304, author = "Kresten Krab Thorup", title = "{GNU emacs as a front end to {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "3", pages = "304--308", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/thorup.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Laan:TB13-3-309, author = "Walter van der Laan and Johannes Braams", title = "Writing reports with more than a hundred people", journal = j-TUGboat, volume = "13", number = "3", pages = "309--314", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/braams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Damrau:TB13-3-315, author = "Jackie Damrau", title = "{Discovering graphics in {\LaTeX} documents}", journal = j-TUGboat, volume = "13", number = "3", pages = "315--321", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Harris:TB13-3-322, author = "Robert L. Harris", title = "{Preparing halftones for use in {\TeX}}", journal = j-TUGboat, volume = "13", number = "3", pages = "322--326", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/harris.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Salomon:TB13-3-327, author = "David Salomon", title = "{Creating shaded rectangles with {\PS}}", journal = j-TUGboat, volume = "13", number = "3", pages = "327--329", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/salomon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Weiss:TB13-3-330, author = "Neil A. Weiss", title = "{Creation and incorporation of {\PS} graphics with {\TeX}-formatted labels into {\TeX} documents}", journal = j-TUGboat, volume = "13", number = "3", pages = "330--334", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/weiss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Knuutila:TB13-3-335, author = "Timo Knuutila", title = "{How to combine multiple languages, {\PS}, and {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "3", pages = "335--340", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/knuutila.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Eijkhout:TB13-3-341, author = "Victor Eijkhout", title = "Just give me a lollipop (it makes my heart go giddy-up)", journal = j-TUGboat, volume = "13", number = "3", pages = "341--346", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Hafner:TB13-3-347, author = "James L. Hafner", title = "{Foil{\TeX}, a {\LaTeX}-like system for typesetting foils}", journal = j-TUGboat, volume = "13", number = "3", pages = "347--356", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/hafner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Abbott:TB13-3-357, author = "Peter Abbott", title = "Typesetting a magazine the easy way", journal = j-TUGboat, volume = "13", number = "3", pages = "357--361", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/abbott.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Burbank:TB13-3-362, author = "Mimi Burbank and Donna Burnette", title = "{Using {\TeX} for a publications database}", journal = j-TUGboat, volume = "13", number = "3", pages = "362--371", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/burbank.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Raman:TB13-3-372, author = "T. V. Raman", title = "{An audio view of ({\La}){\TeX} documents}", journal = j-TUGboat, volume = "13", number = "3", pages = "372--379", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/raman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Arnon:TB13-3-380, author = "Dennis S. Arnon and Isabelle Attali and Paul Franchi-Zannettacci", title = "{Model-based conversions of {\LaTeX} documents}", journal = j-TUGboat, volume = "13", number = "3", pages = "380--389", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/arnon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Rowley:TB13-3-390, author = "Chris Rowley", title = "{{\LaTeX}3 update}", journal = j-TUGboat, volume = "13", number = "3", pages = "390--391", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36rowley.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-391, author = "Anonymous", title = "Workshops", journal = j-TUGboat, volume = "13", number = "3", pages = "391--392", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/workshop-summary.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-393, author = "Anonymous", title = "{Participants at the 1992 TUG Meeting}", journal = j-TUGboat, volume = "13", number = "3", pages = "393--394", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36names.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-395, author = "Anonymous", title = "{The Donald E. Knuth Scholarship for 1992 and 1993}", journal = j-TUGboat, volume = "13", number = "3", pages = "395--396", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-396, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "13", number = "3", pages = "396--397", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-398, author = "Anonymous", title = "{TUG 1993 annual meeting, Aston University, UK}", journal = j-TUGboat, volume = "13", number = "3", pages = "398--398", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-399, author = "Anonymous", title = "{TUG 1993 course schedule}", journal = j-TUGboat, volume = "13", number = "3", pages = "399--399", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36announce.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-400, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "13", number = "3", pages = "400--401", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-402, author = "Anonymous", title = "Consultants", journal = j-TUGboat, volume = "13", number = "3", pages = "402--402", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-3-411, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "13", number = "3", pages = "411--411", month = oct, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-3/tb36ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "36", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1992 Proceedings (Portland, Oregon).", } @Article{Anonymous:TB13-4-415, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "13", number = "4", pages = "415--416", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB13-4-417, author = "Malcolm Clark", title = "The back benches beckon", journal = j-TUGboat, volume = "13", number = "4", pages = "417--418", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB13-4-418, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "13", number = "4", pages = "418--419", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-419, author = "Anonymous", title = "{An interview with Donald Knuth, November 1991}", journal = j-TUGboat, volume = "13", number = "4", pages = "419--425", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Palais:TB13-4-425, author = "Richard Palais", title = "Moving a fixed point", journal = j-TUGboat, volume = "13", number = "4", pages = "425--432", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37palais.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB13-4-433, author = "Philip Taylor", title = "{The future of {\TeX}}", journal = j-TUGboat, volume = "13", number = "4", pages = "433--442", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kelly:TB13-4-443, author = "Nickolas J. Kelly and Christian H. Bischof", title = "{XBib{\TeX} and friends}", journal = j-TUGboat, volume = "13", number = "4", pages = "443--446", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37kelly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Chapman:TB13-4-447, author = "Nigel Chapman", title = "{Searching in a DVI file}", journal = j-TUGboat, volume = "13", number = "4", pages = "447--451", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37chapman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-452, author = "Anonymous", title = "Hyphenation exception log", journal = j-TUGboat, volume = "13", number = "4", pages = "452--457", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB13-4-457, author = "Bart Childs", title = "{Errata: Literate Programming, A Practitioner's View, \tubissue 13(3), pp.\ 261--268}", journal = j-TUGboat, volume = "13", number = "4", pages = "457--457", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37hara-hyfgl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB13-4-457, author = "Yannis Haralambous", title = "{Hyphenation patterns for ancient Greek and Latin}", journal = j-TUGboat, volume = "13", number = "4", pages = "457--469", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37hara-hyfgl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zubrinic:TB13-4-470, author = "Darko {\v{Z}}ubrini{\'c}", title = "{The exotic Croatian Glagolitic alphabet}", journal = j-TUGboat, volume = "13", number = "4", pages = "470--471", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37zubrinic.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sauter:TB13-4-472, author = "John Sauter", title = "{Postnet codes using {\MF}}", journal = j-TUGboat, volume = "13", number = "4", pages = "472--476", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37sauter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB13-4-476, author = "Yannis Haralambous", title = "{A {\tt typewriter} font for the Macintosh 8-bit font table}", journal = j-TUGboat, volume = "13", number = "4", pages = "476--477", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37hara-mactt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB13-4-477, author = "Sebastian Rahtz and Leonor Barroca", title = "{Addendum: A style option for rotated objects in {\TeX} (\tubissue 13(2), pp. 156--180)}", journal = j-TUGboat, volume = "13", number = "4", pages = "477--477", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37hara-mactt2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Seyfarth:TB13-4-478, author = "Ray Seyfarth", title = "{Diag: a drawing preprocessor for {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "4", pages = "478--485", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37seyfarth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-4-486, author = "Victor Eijkhout", title = "{Wynter Snow, {\it {\TeX} for the Beginner}}", journal = j-TUGboat, volume = "13", number = "4", pages = "486--487", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Greenwade:TB13-4-487, author = "George Greenwade", title = "{Arvind Borde, {\it {\TeX} by Example}}", journal = j-TUGboat, volume = "13", number = "4", pages = "487--489", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cameron:TB13-4-489, author = "A. G. W. Cameron", title = "{Andr{\'e} Heck, ed., {\it Desktop Publishing in Astronomy \& Space Sciences}}", journal = j-TUGboat, volume = "13", number = "4", pages = "489--490", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Neuwirth:TB13-4-490, author = "Erich Neuwirth", title = "{{\TeX} implementations for IBM PCs: comparative timings}", journal = j-TUGboat, volume = "13", number = "4", pages = "490--492", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37neuwirth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB13-4-493, author = "Frank Mittelbach", title = "{Where does this character come from? Solution to the puzzle, \tubissue 13(2), p.190}", journal = j-TUGboat, volume = "13", number = "4", pages = "493--493", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37mitt-puzzle.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-4-494, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "13", number = "4", pages = "494--495", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37eijkhout-tricks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB13-4-495, author = "Jonathan Fine", title = "Too many errors", journal = j-TUGboat, volume = "13", number = "4", pages = "495--496", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB13-4-496, author = "Victor Eijkhout", title = "One error less", journal = j-TUGboat, volume = "13", number = "4", pages = "496--497", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37eijkhout-error.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anagnostopoulos:TB13-4-497, author = "Paul Anagnostopoulos", title = "{Zz{\TeX}: A macro package for books}", journal = j-TUGboat, volume = "13", number = "4", pages = "497--505", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37anag.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB13-4-505, author = "Jonathan Fine", title = "{The {\tt\char`\\noname} macros\Dash A technical report}", journal = j-TUGboat, volume = "13", number = "4", pages = "505--509", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37finn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB13-4-510, author = "Frank Mittelbach and Chris Rowley and Michael Downes", title = "{Volunteer work for the {\LaTeX}3 project}", journal = j-TUGboat, volume = "13", number = "4", pages = "510--515", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37mitt-l3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Piff:TB13-4-516, author = "Mike Piff", title = "{Correction sheets in {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "4", pages = "516--518", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37piff-corr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Piff:TB13-4-518, author = "Mike Piff", title = "{Text merges in {\TeX} and {\LaTeX}}", journal = j-TUGboat, volume = "13", number = "4", pages = "518--523", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37piff-merge.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB13-4-524, author = "Sebastian Rahtz", title = "A style file for printing sheets of labels", journal = j-TUGboat, volume = "13", number = "4", pages = "524--528", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-528, author = "Anonymous", title = "{Cahiers GUTenberg \#13}", journal = j-TUGboat, volume = "13", number = "4", pages = "528--529", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-530, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "13", number = "4", pages = "530--532", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-532, author = "Anonymous", title = "{Call for Papers: Special Issue of {\it Electronic Publishing: Origination, Dissemination and Design\/} on Active Documents}", journal = j-TUGboat, volume = "13", number = "4", pages = "532--532", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB13-4-533, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "13", number = "4", pages = "533--533", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-534, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "13", number = "4", pages = "534--534", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-534-2, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "13", number = "4", pages = "534--536", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-537, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "13", number = "4", pages = "537--538", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-536, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "13", number = "4", pages = "536--536", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB13-4-544, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "13", number = "4", pages = "544--544", month = dec, year = "1992", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb13-4/tb37ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "37", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "14", number = "1", pages = "3--4", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB14-1-5, author = "Christina Thiele", title = "Opening words", journal = j-TUGboat, volume = "14", number = "1", pages = "5--6", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB14-1-7, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "14", number = "1", pages = "7--7", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wong:TB14-1-8, author = "Wai Wong", title = "{Typesetting Chinese {\it pinyin} using virtual fonts}", journal = j-TUGboat, volume = "14", number = "1", pages = "8--11", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38wong.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vesilo:TB14-1-12, author = "R. A. Vesilo and A. Dunn", title = "{A multimedia document system based on {\TeX} and DVI documents}", journal = j-TUGboat, volume = "14", number = "1", pages = "12--16", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38vesilo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB14-1-17, author = "Philip Taylor", title = "{Arvind Borde, {\it Mathematical {\TeX} by Example}}", journal = j-TUGboat, volume = "14", number = "1", pages = "17--20", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Radel:TB14-1-20, author = "Jon Radel", title = "{Michael Vulis, {\it Modern {\TeX} and Its Applications}}", journal = j-TUGboat, volume = "14", number = "1", pages = "20--23", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB14-1-23, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "14", number = "1", pages = "23--24", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Comenetz:TB14-1-25, author = "Daniel Comenetz", title = "Anchored figures at either margin", journal = j-TUGboat, volume = "14", number = "1", pages = "25--34", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38comenetz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB14-1-35, author = "Jonathan Fine", title = "{The {\tt\char`\\CASE} and {\tt\char`\\FIND} macros}", journal = j-TUGboat, volume = "14", number = "1", pages = "35--39", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Saludes:TB14-1-40, author = "Jordi Saludes", title = "{Doing astronomical computations with {\TeX}: Making agendas}", journal = j-TUGboat, volume = "14", number = "1", pages = "40--53", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38saludes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB14-1-54, author = "Kees van der Laan", title = "{FIFO and LIFO sing the BLUes}", journal = j-TUGboat, volume = "14", number = "1", pages = "54--60", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Braams:TB14-1-60, author = "Johannes Braams", title = "{An update on the {\sf babel} system}", journal = j-TUGboat, volume = "14", number = "1", pages = "60--62", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38braa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zbikowski:TB14-1-62, author = "Rafa{\l} {\.Z}bikowski", title = "{Hacker's Guide to {\AmS}Fonts and NFSS in the Context of {\LaTeX}}", journal = j-TUGboat, volume = "14", number = "1", pages = "62--69", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38zbikowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Heck:TB14-1-70, author = "Andr{\'e} Heck", title = "{Response to A. G. W. Cameron}", journal = j-TUGboat, volume = "14", number = "1", pages = "70--70", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38heck.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-71, author = "Anonymous", title = "{Die {\TeX}nische Kom{\"o}die 1992, Heft 1--4}", journal = j-TUGboat, volume = "14", number = "1", pages = "71--76", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-77, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "14", number = "1", pages = "77--79", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-79, author = "Anonymous", title = "Courses to be held in conjunction with {TUG\,93 (Aston University, Birmingham, U.K., 26--30 July 1993)}", journal = j-TUGboat, volume = "14", number = "1", pages = "79--79", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB14-1-81, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "14", number = "1", pages = "81--81", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-81, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "14", number = "1", pages = "81--82", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-83, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "14", number = "1", pages = "83--84", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-85, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "14", number = "1", pages = "85--86", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-82, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "14", number = "1", pages = "82--82", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-1-87, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "14", number = "1", pages = "87--87", month = apr, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-1/tb38ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "38", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-95, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "14", number = "2", pages = "95--96", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB14-2-97, author = "Christina Thiele", title = "Opening words", journal = j-TUGboat, volume = "14", number = "2", pages = "97--98", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB14-2-99, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "14", number = "2", pages = "99--101", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB14-2-102, author = "Nico Poppelier", title = "{The Donald E. Knuth Scholarship: 1993 Scholar and 1994 announcement}", journal = j-TUGboat, volume = "14", number = "2", pages = "102--103", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39knuthscholar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-103, author = "Anonymous", title = "{The A-in-{\LaTeX} Contest: Deadline extended}", journal = j-TUGboat, volume = "14", number = "2", pages = "103--103", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39knuthscholar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knappen:TB14-2-104, author = "J{\"o}rg Knappen", title = "{Fonts for Africa: the fc-fonts}", journal = j-TUGboat, volume = "14", number = "2", pages = "104--106", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39knappen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB14-2-107, author = "Sebastian Rahtz", title = "{Implementing the extended {\TeX} layout using PS fonts}", journal = j-TUGboat, volume = "14", number = "2", pages = "107--117", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39rahtz-pscork.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cohen:TB14-2-118, author = "Michael Cohen", title = "Zebrackets: a pseudo-dynamic contextually adaptive font", journal = j-TUGboat, volume = "14", number = "2", pages = "118--122", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39cohen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jurriens:TB14-2-123, author = "Theo Jurriens", title = "From observation to publication", journal = j-TUGboat, volume = "14", number = "2", pages = "123--126", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39jurriens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB14-2-127, author = "Nico Poppelier", title = "{Review of recent {\LaTeX} books}", journal = j-TUGboat, volume = "14", number = "2", pages = "127--128", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Collins:TB14-2-128, author = "John Collins", title = "{ET\Dash a {\TeX}-compatible editor for MSDOS computers}", journal = j-TUGboat, volume = "14", number = "2", pages = "128--131", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39collins.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB14-2-132, author = "Sebastian Rahtz", title = "{Essential NFSS2}", journal = j-TUGboat, volume = "14", number = "2", pages = "132--137", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39rahtz-nfss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB14-2-138, author = "Philip Taylor", title = "A pragmatic approach to paragraphs", journal = j-TUGboat, volume = "14", number = "2", pages = "138--140", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39taylor-para.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Durst:TB14-2-141, author = "Lincoln Durst", title = "Truth in indexing", journal = j-TUGboat, volume = "14", number = "2", pages = "141--141", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39durst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB14-2-141, author = "Philip Taylor", title = "{Letterspacing in {\TeX}}", journal = j-TUGboat, volume = "14", number = "2", pages = "141--145", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39taylor-letterspacing.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-146, author = "Anonymous", title = "{Cahiers GUTenberg \#15}", journal = j-TUGboat, volume = "14", number = "2", pages = "146--146", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-147, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "14", number = "2", pages = "147--148", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB14-2-149, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "14", number = "2", pages = "149--149", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-149, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "14", number = "2", pages = "149--149", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-150, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "14", number = "2", pages = "150--151", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-148, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "14", number = "2", pages = "148--148", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-2/tb39calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-2-152, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "14", number = "2", pages = "152--152", month = jul, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "39", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB14-3-162, author = "Christina A. L.\ Thiele", title = "{The future of {\TeX} and TUG}", journal = j-TUGboat, volume = "14", number = "3", pages = "162--166", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40thiele-future.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Lammarsch:TB14-3-167, author = "Joachim Lammarsch", title = "A new typesetting system: is it really necessary?", journal = j-TUGboat, volume = "14", number = "3", pages = "167--170", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40lammarsch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Rycko:TB14-3-171, author = "Marek Ry{\'c}ko and Bogus{\l}aw Jackowski", title = "{{\TeX} from {\tt\bs indent} to {\tt\bs par}}", journal = j-TUGboat, volume = "14", number = "3", pages = "171--176", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40rycko.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB14-3-177, author = "Philip Taylor", title = "{NTS: the future of {\TeX}?}", journal = j-TUGboat, volume = "14", number = "3", pages = "177--182", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Hunter:TB14-3-183, author = "Roger Hunter", title = "{A future for {\TeX}}", journal = j-TUGboat, volume = "14", number = "3", pages = "183--186", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40hunter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Bennett:TB14-3-187, author = "Frank G. {Bennett, Jr.}", title = "{{\LexiTeX}: context-sensitive legal citations for {\LaTeX}}", journal = j-TUGboat, volume = "14", number = "3", pages = "187--195", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40bennett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taupin:TB14-3-196, author = "Daniel Taupin", title = "{Using {\TeX} and {\slMF} to build complicated maps}", journal = j-TUGboat, volume = "14", number = "3", pages = "196--202", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40taupin-maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Taupin:TB14-3-203, author = "Daniel Taupin", title = "{Music{\TeX}: Using {\TeX} to write polyphonic or instrumental music}", journal = j-TUGboat, volume = "14", number = "3", pages = "203--211", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40musictex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Siebenmann:TB14-3-212, author = "Laurent Siebenmann", title = "{A format compilation framework for European languages}", journal = j-TUGboat, volume = "14", number = "3", pages = "212--221", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40siebenmann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Beebe:TB14-3-222, author = "Nelson Beebe", title = "Bibliography prettyprinting and syntax checking", journal = j-TUGboat, volume = "14", number = "3", pages = "222--222", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Bryan:TB14-3-223, author = "Martin Bryan", title = "{A {\TeX} user's guide to ISO's Document Style Semantics and Specification Language (DSSSL)}", journal = j-TUGboat, volume = "14", number = "3", pages = "223--226", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40bryan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Flynn:TB14-3-227, author = "Peter Flynn", title = "{{\TeX} and SGML: a recipe for disaster?}", journal = j-TUGboat, volume = "14", number = "3", pages = "227--230", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Wang:TB14-3-231, author = "Xinxin Wang and Derick Wood", title = "An abstract model for tables", journal = j-TUGboat, volume = "14", number = "3", pages = "231--237", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40wang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Lavaud:TB14-3-238, author = "Michel Lavaud", title = "{Developing a multi-windowing environment for research based on \TeX}", journal = j-TUGboat, volume = "14", number = "3", pages = "238--244", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40lavaud.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Kawaguti:TB14-3-245, author = "Minato Kawaguti", title = "{A versatile {\TeX} device driver}", journal = j-TUGboat, volume = "14", number = "3", pages = "245--251", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40kawaguti.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Feruglio:TB14-3-252, author = "Gabriel Valiente Feruglio and Robert Fuster", title = "{Typesetting Catalan texts with {\TeX}}", journal = j-TUGboat, volume = "14", number = "3", pages = "252--259", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40valiente.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Haralambous:TB14-3-260, author = "Yannis Haralambous", title = "{The Khmer script tamed by the Lion (of {\TeX})}", journal = j-TUGboat, volume = "14", number = "3", pages = "260--270", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Plaice:TB14-3-271, author = "John Plaice", title = "Language-dependent ligatures", journal = j-TUGboat, volume = "14", number = "3", pages = "271--274", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Doob:TB14-3-275, author = "Michael Doob and Craig Platt", title = "Virtual fonts in a production environment", journal = j-TUGboat, volume = "14", number = "3", pages = "275--281", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40doob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Horn:TB14-3-282, author = "Berthold K. P. Horn", title = "Where are the math fonts?", journal = j-TUGboat, volume = "14", number = "3", pages = "282--284", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40horn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Jeffrey:TB14-3-285, author = "Alan Jeffrey", title = "{A {\PS} font installation package written in {\TeX}}", journal = j-TUGboat, volume = "14", number = "3", pages = "285--292", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40jeffrey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Jeffrey:TB14-3-293, author = "Alan Jeffrey", title = "Math font encodings: a workshop summary", journal = j-TUGboat, volume = "14", number = "3", pages = "293--295", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40jeffrey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bzyl:TB14-3-296, author = "W{\l}odek Bzyl and Tomasz Przechlewski", title = "{An application of literate programming: creating a format for the Bulletin of the Polish TUG}", journal = j-TUGboat, volume = "14", number = "3", pages = "296--299", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40bzyl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Fine:TB14-3-300, author = "Jonathan Fine", title = "Galleys, space, and automata", journal = j-TUGboat, volume = "14", number = "3", pages = "300--309", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Laan:TB14-3-310, author = "Kees van der Laan", title = "Syntactic sugar", journal = j-TUGboat, volume = "14", number = "3", pages = "310--318", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40laan-sugar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Laan:TB14-3-319, author = "Kees van der Laan", title = "{Sorting within {\TeX}}", journal = j-TUGboat, volume = "14", number = "3", pages = "319--328", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40laan-sort.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Dyson:TB14-3-329, author = "Mary Dyson", title = "{Teaching digital typography\Dash the Didot Project}", journal = j-TUGboat, volume = "14", number = "3", pages = "329--332", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40dyson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Gorbunova:TB14-3-333, author = "Irina V. Gorbunova", title = "{Russian-speaking user: from Chi-Writer and Ventura Publisher to {\TeX}; learning difficulties}", journal = j-TUGboat, volume = "14", number = "3", pages = "333--334", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40gorbunova.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Reese:TB14-3-335, author = "R. Allan Reese", title = "{How to set up and maintain a {\TeX} system}", journal = j-TUGboat, volume = "14", number = "3", pages = "335--341", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40reese.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Greenwade:TB14-3-342, author = "George D. Greenwade", title = "{The Comprehensive {\TeX} Archive Network (CTAN)}", journal = j-TUGboat, volume = "14", number = "3", pages = "342--351", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40green.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-352, author = "Anonymous", title = "Participants at the {1993 TUG meeting}", journal = j-TUGboat, volume = "14", number = "3", pages = "352--355", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-356, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "14", number = "3", pages = "356--357", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-358, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "14", number = "3", pages = "358--359", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-360, author = "Anonymous", title = "{TUG 1994 annual meeting, Santa Barbara, USA}", journal = j-TUGboat, volume = "14", number = "3", pages = "360--360", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-361, author = "Anonymous", title = "{TUG individual membership application}", journal = j-TUGboat, volume = "14", number = "3", pages = "361--361", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-362, author = "Anonymous", title = "{TUG institutional membership application}", journal = j-TUGboat, volume = "14", number = "3", pages = "362--362", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-359, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "14", number = "3", pages = "359--359", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-3/tb40calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-3-363, author = "Anonymous", title = "Consultants", journal = j-TUGboat, volume = "14", number = "3", pages = "363--363", month = oct, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "40", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1993 Proceedings (Aston, UK).", } @Article{Anonymous:TB14-4-369, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "14", number = "4", pages = "369--370", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB14-4-371, author = "Christina Thiele", title = "Opening words", journal = j-TUGboat, volume = "14", number = "4", pages = "371--371", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB14-4-372, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "14", number = "4", pages = "372--373", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-373, author = "Anonymous", title = "{{\TUB} wish list}", journal = j-TUGboat, volume = "14", number = "4", pages = "373--373", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB14-4-374, author = "Malcolm Clark", title = "{{\NexTeX}: A personal view}", journal = j-TUGboat, volume = "14", number = "4", pages = "374--380", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41clark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB14-4-381, author = "Philip Taylor", title = "{NTS update}", journal = j-TUGboat, volume = "14", number = "4", pages = "381--382", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Becker:TB14-4-382, author = "Thomas Becker", title = "{Two extensions to GNU Emacs that are useful when editing {\TeX} documents}", journal = j-TUGboat, volume = "14", number = "4", pages = "382--386", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41becker.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB14-4-387, author = "Donald E. Knuth", title = "{Icons for {\TeX} and {\MF}}", journal = j-TUGboat, volume = "14", number = "4", pages = "387--389", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Liebl:TB14-4-390, author = "Armin Liebl", title = "{bibview: A graphical user interface to {\BibTeX}}", journal = j-TUGboat, volume = "14", number = "4", pages = "390--395", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41liebl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB14-4-395, author = "Nelson Beebe", title = "Bibliography prettyprinting and syntax checking", journal = j-TUGboat, volume = "14", number = "4", pages = "395--419", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carmody:TB14-4-420, author = "Kevin Carmody", title = "{A tough table becomes easy with {\PiCTeX}}", journal = j-TUGboat, volume = "14", number = "4", pages = "420--420", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41carmody.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB14-4-421, author = "Claudio Beccari", title = "{Book Review: P. W. Abrahams, K. Berry and K. Hargreaves, {\it {\TeX} per l'impaziente}}", journal = j-TUGboat, volume = "14", number = "4", pages = "421--422", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Aslaksen:TB14-4-423, author = "Helmer Aslaksen", title = "{Ten {\TeX} tricks for the mathematician}", journal = j-TUGboat, volume = "14", number = "4", pages = "423--424", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41aslaksen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB14-4-424, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "14", number = "4", pages = "424--424", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rhead:TB14-4-425, author = "David Rhead", title = "The ``operational requirement'' for support of bibliographies", journal = j-TUGboat, volume = "14", number = "4", pages = "425--433", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41rhead.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bland:TB14-4-433, author = "Richard Bland", title = "{Relative moves in {\LaTeX}\ pictures}", journal = j-TUGboat, volume = "14", number = "4", pages = "433--437", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41bland.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-438, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "14", number = "4", pages = "438--439", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB14-4-439, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "14", number = "4", pages = "439--439", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-440, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "14", number = "4", pages = "440--440", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41notes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-441, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "14", number = "4", pages = "441--442", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-443, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "14", number = "4", pages = "443--444", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-442, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "14", number = "4", pages = "442--442", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb14-4/tb41instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB14-4-445, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "14", number = "4", pages = "445--445", month = dec, year = "1993", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "41", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "15", number = "1", pages = "3--4", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42addresses.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB15-1-5, author = "Christina Thiele", title = "Opening words", journal = j-TUGboat, volume = "15", number = "1", pages = "5--6", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-1-6, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "15", number = "1", pages = "6--7", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Arseneau:TB15-1-7, author = "Donald Arseneau and Raymond Chen and Victor Eijkhout", title = "{The {\TeX} hierarchy}", journal = j-TUGboat, volume = "15", number = "1", pages = "7--9", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42arseneau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB15-1-9, author = "Claudio Beccari", title = "Typesetting of ancient languages", journal = j-TUGboat, volume = "15", number = "1", pages = "9--16", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42becc-ancient.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB15-1-17, author = "Claudio Beccari", title = "Comments on the paper {``Typesetting Catalan texts with \TeX''} (\tubissue 14(3), pp. 252--259)", journal = j-TUGboat, volume = "15", number = "1", pages = "17--17", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42becc-catalan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Feruglio:TB15-1-17, author = "Gabriel Valiente Feruglio and Robert Fuster", title = "Comments on the comments: {Typesetting} {Catalan} texts with {\TeX}", journal = j-TUGboat, volume = "15", number = "1", pages = "17--18", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42valiente.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB15-1-18, author = "Nico Poppelier", title = "{{George Gr{\"a}tzer}, {\it Math into {\TeX}}}", journal = j-TUGboat, volume = "15", number = "1", pages = "18--19", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42poppelier-gratzer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pappas:TB15-1-19, author = "T. L. (Frank) Pappas", title = "{Stephan von Bechtolsheim, {\it {\TeX} in Practice}}", journal = j-TUGboat, volume = "15", number = "1", pages = "19--21", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42pappas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB15-1-21, author = "Claudio Beccari", title = "{Gianni Gilardi, {\it Il {\TeX}\dash {Introduzione} al linguaggio e complementi avanzati}} ({Italian}) [{Introduction} to the language and advanced concepts]", journal = j-TUGboat, volume = "15", number = "1", pages = "21--22", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42becc-gilardi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sawdey:TB15-1-22, author = "Merry Obrecht Sawdey", title = "{Erik Spiekermann \& E. M. Ginger, {\it Stop Stealing Sheep}}", journal = j-TUGboat, volume = "15", number = "1", pages = "22--24", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42sawdey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Poppelier:TB15-1-24, author = "Nico Poppelier", title = "{Eric van Herwijnen, {\it Practical SGML}}", journal = j-TUGboat, volume = "15", number = "1", pages = "24--25", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42poppelier-herwijnen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Detig:TB15-1-25, author = "Christine Detig and Joachim Schrod", title = "{Donald E. Knuth, {\it Literate Programming}}", journal = j-TUGboat, volume = "15", number = "1", pages = "25--27", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42detig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB15-1-28, author = "David Salomon", title = "{Output routines: Examples and techniques, Part IV: Horizontal techniques}", journal = j-TUGboat, volume = "15", number = "1", pages = "28--40", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42salomon-output.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB15-1-40, author = "David Salomon", title = "Verbatim copying and listing", journal = j-TUGboat, volume = "15", number = "1", pages = "40--54", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42salomon-verbatim.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB15-1-55, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "15", number = "1", pages = "55--57", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Meer:TB15-1-57, author = "Hans van der Meer", title = "{Random bit generator in {\TeX}}", journal = j-TUGboat, volume = "15", number = "1", pages = "57--58", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42meer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Salomon:TB15-1-59, author = "David Salomon and Matthew N. Hendryx", title = "Slanted lines with controlled thickness", journal = j-TUGboat, volume = "15", number = "1", pages = "59--62", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42salomon-slant.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB15-1-62, author = "Jonathan Fine", title = "On indexing and errors", journal = j-TUGboat, volume = "15", number = "1", pages = "62--62", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42finl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rowley:TB15-1-63, author = "Chris Rowley", title = "{{\LaTeXe} update, dateline: 31 January 1994}", journal = j-TUGboat, volume = "15", number = "1", pages = "63", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42rowley.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rhead:TB15-1-64, author = "David Rhead", title = "{Addenda: A suggested ``operational requirement'' for {\LaTeX}3's treatment of bibliographic references (\tubissue 14(4), pp.\ 425-433)}", journal = j-TUGboat, volume = "15", number = "1", pages = "64--65", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42rhead.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-66, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "15", number = "1", pages = "66--67", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-68, author = "Anonymous", title = "{TUG\,'94\Dash {Announcement} and preliminary program (Santa Barbara, California, 31 July--4 August 1994)}", journal = j-TUGboat, volume = "15", number = "1", pages = "68--69", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42ann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-69, author = "Anonymous", title = "{Call for papers, {Euro\TeX}\,'94 (Gdansk, Poland, 26--30 September 1994)}", journal = j-TUGboat, volume = "15", number = "1", pages = "69--70", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42ann.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-1-74, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "15", number = "1", pages = "74--74", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-75, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "15", number = "1", pages = "75--75", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-70, author = "Anonymous", title = "{Meet the Board, Part I}", journal = j-TUGboat, volume = "15", number = "1", pages = "70--73", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42board.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-75-2, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "15", number = "1", pages = "75--76", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-77, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "15", number = "1", pages = "77--78", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-79, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "15", number = "1", pages = "79--79", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-1-81, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "15", number = "1", pages = "81--81", month = mar, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-1/tb42ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "42", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-87, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "15", number = "2", pages = "87--88", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB15-2-89, author = "Christina Thiele", title = "Opening words", journal = j-TUGboat, volume = "15", number = "2", pages = "89--89", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-2-89, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "15", number = "2", pages = "89--91", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB15-2-92, author = "Michel Goossens", title = "{WEPT: A Week on Electronic Publishing and Typography}", journal = j-TUGboat, volume = "15", number = "2", pages = "92--95", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43goossens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB15-2-96, author = "Philip Taylor", title = "{Report of the 2nd meeting of the NTS group, February 1994}", journal = j-TUGboat, volume = "15", number = "2", pages = "96--97", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB15-2-97, author = "Alan Hoenig", title = "{$ \{ $Meta$ \} $Font Forum redux}", journal = j-TUGboat, volume = "15", number = "2", pages = "97--97", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43hoenig-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ramasubramanian:TB15-2-98, author = "R. Ramasubramanian and R. W. D. Nickalls and M. A. Reed", title = "{ASCII.sty: A new style-option and encoded font with IBM graphics control characters for use with {\TeX} and {\LaTeX}}", journal = j-TUGboat, volume = "15", number = "2", pages = "98--103", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43ramasubramanian.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jones:TB15-2-103, author = "David M. Jones and David E. Wald", title = "{Michel Goossens, Frank Mittelbach, and Alexander Samarin, {\it The {\LaTeX} Companion}}", journal = j-TUGboat, volume = "15", number = "2", pages = "103--106", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43jones.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB15-2-106, author = "Victor Eijkhout", title = "{Norman Walsh, {\it Making {\TeX} Work}}", journal = j-TUGboat, volume = "15", number = "2", pages = "106--107", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Andre:TB15-2-107, author = "Jacques Andr{\'e}", title = "{Christian Rolland, {\it {\LaTeX} guide pratique}}", journal = j-TUGboat, volume = "15", number = "2", pages = "107--107", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43andre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB15-2-107, author = "Alan Hoenig", title = "{Next{\TeX}: {\TeX} plus the NextStep Operating System}", journal = j-TUGboat, volume = "15", number = "2", pages = "107--109", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43hoenig-next.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Downes:TB15-2-110, author = "Michael Downes", title = "{Interaction tools: {\tt dialog.sty} and {\tt menus.sty}}", journal = j-TUGboat, volume = "15", number = "2", pages = "110--130", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43downes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gaulle:TB15-2-131, author = "Bernard Gaulle", title = "{{\LaTeX} V3: philology \& typography, reports to read, reports to do}", journal = j-TUGboat, volume = "15", number = "2", pages = "131--131", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43gaulle.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB15-2-131, author = "Claudio Beccari", title = "{Tough table becomes easy with {\PiCTeX}, but it's even easier with {\LaTeX}}", journal = j-TUGboat, volume = "15", number = "2", pages = "131--132", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anagnostopolous:TB15-2-132, author = "Paul Anagnostopolous", title = "{On the review of {\it {\TeX} in Practice}}", journal = j-TUGboat, volume = "15", number = "2", pages = "132--132", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43anag.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-133, author = "Anonymous", title = "{Baskerville, Volume 4, Nos. 1--2}", journal = j-TUGboat, volume = "15", number = "2", pages = "133--136", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-136, author = "Anonymous", title = "{Cahiers GUTenberg Nos. 16 and 17}", journal = j-TUGboat, volume = "15", number = "2", pages = "136--137", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-138, author = "Anonymous", title = "{Die {\TeX}nische {Kom{\"o}die} 1993, Heft 1--4}", journal = j-TUGboat, volume = "15", number = "2", pages = "138--142", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-143, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "15", number = "2", pages = "143--144", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-160, author = "Anonymous", title = "{TUG\,'95}\Dash {St. Petersburg, Florida}", journal = j-TUGboat, volume = "15", number = "2", pages = "160", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-2-148, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "15", number = "2", pages = "148--149", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-149, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "15", number = "2", pages = "149--149", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-2-150, author = "Barbara Beeton", title = "{Change in {\TUB} policy}", journal = j-TUGboat, volume = "15", number = "2", pages = "150--150", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-145, author = "Anonymous", title = "{Meet the Board, Part II}", journal = j-TUGboat, volume = "15", number = "2", pages = "145--148", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43board.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-151, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "15", number = "2", pages = "151--152", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-155, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "15", number = "2", pages = "155--156", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-152, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "15", number = "2", pages = "152--153", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-2-154, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "15", number = "2", pages = "154--154", month = jun, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-2/tb43ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "43", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-3-166, author = "Anonymous", title = "Editorial and production notes", journal = j-TUGboat, volume = "15", number = "3", pages = "166--166", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44edit.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-167, author = "Anonymous", title = "{Acknowledgements and Conference Program: Innovation}", journal = j-TUGboat, volume = "15", number = "3", pages = "167--168", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Bigelow:TB15-3-169, author = "Charles Bigelow", title = "{Lucida and {\TeX}: lessons of logic and history}", journal = j-TUGboat, volume = "15", number = "3", pages = "169--169", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "Abstract only; see sequential page 7 of PDF file.", } @Article{Mittelbach:TB15-3-170, author = "Frank Mittelbach and Michel Goossens", title = "{Real life book production\Dash lessons learned from {\it The {\LaTeX} Companion}}", journal = j-TUGboat, volume = "15", number = "3", pages = "170--173", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44goossens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Haralambous:TB15-3-174, author = "Yannis Haralambous", title = "{Typesetting the holy Bible in Hebrew, with {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "174--191", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44haralambous-hebrew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Cohen:TB15-3-192, author = "Michel Cohen", title = "Adaptive character generation and spatial expressiveness", journal = j-TUGboat, volume = "15", number = "3", pages = "192--198", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44cohen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Haralambous:TB15-3-199, author = "Yannis Haralambous", title = "Humanist", journal = j-TUGboat, volume = "15", number = "3", pages = "199--199", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "Abstract only, and paper withdrawn. See sequential page 37 of PDF file.", } @Article{Malyshev:TB15-3-200, author = "Basil Malyshev", title = "{Automatic conversion of {\MF} fonts to Type-1 {\PS}}", journal = j-TUGboat, volume = "15", number = "3", pages = "200--200", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California). Abstract only; paper published in next issue \cite{Malyshev:TB16-1-60}. See sequential page 38 of PDF file.", } @Article{Hafner:TB15-3-201, author = "James Hafner", title = "{The (pre)history of color in Rokicki's {\tt dvips}}", journal = j-TUGboat, volume = "15", number = "3", pages = "201--204", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44hafner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Rokicki:TB15-3-205, author = "Tom Rokicki", title = "Advanced `special' support in a dvi driver", journal = j-TUGboat, volume = "15", number = "3", pages = "205--212", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44rokicki.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Duggan:TB15-3-213, author = "Angus Duggan", title = "{Colour separation and {\PS}}", journal = j-TUGboat, volume = "15", number = "3", pages = "213--217", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44duggan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Rahtz:TB15-3-218, author = "Sebastian Rahtz and Michel Goossens", title = "{Simple colour design with {\LaTeXe}}", journal = j-TUGboat, volume = "15", number = "3", pages = "218--222", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Sowa:TB15-3-223, author = "Friedhelm Sowa", title = "Printing colour pictures", journal = j-TUGboat, volume = "15", number = "3", pages = "223--227", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44sowa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Sofka:TB15-3-228, author = "Michael Sofka", title = "{Color book production using {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "228--238", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44sofka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Zandt:TB15-3-239, author = "Timothy van Zandt and Denis Girou", title = "{Inside PSTricks}", journal = j-TUGboat, volume = "15", number = "3", pages = "239--246", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44tvz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Stenerson:TB15-3-247, author = "Jon Stenerson", title = "{A {\LaTeX} style file generator}", journal = j-TUGboat, volume = "15", number = "3", pages = "247--254", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44stenerson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Braams:TB15-3-255, author = "Johannes Braams", title = "{Document classes and packages in {\LaTeXe}}", journal = j-TUGboat, volume = "15", number = "3", pages = "255--262", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44braams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Jeffrey:TB15-3-263, author = "Alan Jeffrey", title = "{{\PS} font support in {\LaTeXe}}", journal = j-TUGboat, volume = "15", number = "3", pages = "263--268", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44jeff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Patashnik:TB15-3-269, author = "Oren Patashnik", title = "{{\BibTeX} 1.0}", journal = j-TUGboat, volume = "15", number = "3", pages = "269--273", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44patashnik.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{MacKay:TB15-3-274, author = "Pierre MacKay", title = "A typesetter's toolkit", journal = j-TUGboat, volume = "15", number = "3", pages = "274--284", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44mackay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Barnett:TB15-3-285, author = "Michael P. Barnett and Kevin R. Perry", title = "Symbolic computation for electronic publishing", journal = j-TUGboat, volume = "15", number = "3", pages = "285--292", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44barnett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Kawaguti:TB15-3-293, author = "Minato Kawaguti and Norio Kitajima", title = "{Concurrent use of interactive {\TeX} previewer with an Emacs-type editor}", journal = j-TUGboat, volume = "15", number = "3", pages = "293--300", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44kawaguti.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Haralambous:TB15-3-301, author = "Yannis Haralambous", title = "{An Indic {\TeX} preprocessor\Dash {Sinhalese} {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "301--301", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California). Abstract only; paper published in next issue \cite{Haralambous:TB15-4-447}. See sequential page 139 of PDF file.", } @Article{Doumont:TB15-3-302, author = "Jean-Luc Doumont", title = "{Pascal} pretty-printing: an example of ``preprocessing within {\TeX}''", journal = j-TUGboat, volume = "15", number = "3", pages = "302--307", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44doumont.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Schrod:TB15-3-309, author = "Joachim Schrod", title = "{Towards interactivity for {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "309--317", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44schrod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Rowley:TB15-3-318, author = "Chris Rowley and Frank Mittelbach", title = "The floating world", journal = j-TUGboat, volume = "15", number = "3", pages = "318--318", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44rowl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Hosek:TB15-3-319, author = "Don Hosek", title = "Sophisticated page layout with {\TeX}", journal = j-TUGboat, volume = "15", number = "3", pages = "319--319", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California). Abstract only; paper was to be published in next issue, but apparently never appeared. See sequential page 157 of PDF file.", } @Article{Plaice:TB15-3-320, author = "John Plaice", title = "{Progress in the Omega project}", journal = j-TUGboat, volume = "15", number = "3", pages = "320--324", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Ogawa:TB15-3-325, author = "Arthur Ogawa", title = "{Object-oriented programming, descriptive markup, and {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "325--330", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44ogawa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Baxter:TB15-3-331, author = "William Erik Baxter", title = "{An object-oriented programming system in {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "331--338", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44baxter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Walsh:TB15-3-339, author = "Norm Walsh", title = "{A World Wide Web interface to {\CTAN}}", journal = j-TUGboat, volume = "15", number = "3", pages = "339--343", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44walsh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Haralambous:TB15-3-344, author = "Yannis Haralambous and John Plaice", title = "{First applications of $ \Omega $: Adobe Poetica, Arabic, Greek, Khmer}", journal = j-TUGboat, volume = "15", number = "3", pages = "344--352", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44haralambous-omega.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Taylor:TB15-3-353, author = "Philip Taylor", title = "{$ \varepsilon $-{\TeX} \& {\NTS}: A progress report}", journal = j-TUGboat, volume = "15", number = "3", pages = "353--358", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Laugier:TB15-3-359, author = "Maurice Laugier and Yannis Haralambous", title = "{{\TeX} innovations by the Louis-Jean Printing House}", journal = j-TUGboat, volume = "15", number = "3", pages = "359--359", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California). Abstract only; paper published in next issue \cite{Laugier:TB15-4-438}. See sequential page 197 of PDF file.", } @Article{Downes:TB15-3-360, author = "Michael Downes", title = "Design by template in a production macro package", journal = j-TUGboat, volume = "15", number = "3", pages = "360--368", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44downes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Hoenig:TB15-3-369, author = "Alan Hoenig", title = "{Less is More: Restricting {\TeX}'s scope enables complex page layouts}", journal = j-TUGboat, volume = "15", number = "3", pages = "369--380", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Fine:TB15-3-381, author = "Jonathan Fine", title = "Documents, compuscripts, programs and macros", journal = j-TUGboat, volume = "15", number = "3", pages = "381--385", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Grobelnik:TB15-3-386, author = "Marko Grobelnik and Dunja Mladeni{\'c} and Darko Zupani{\v{c}} and Borut {\v{Z}}nidar", title = "{Integrated system for encyclopaedia typesetting based on {\TeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "386--387", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44grobelnik.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Baragar:TB15-3-388, author = "Henry Baragar and Gail E. Harris", title = "{An example of a special purpose input language to {\LaTeX}}", journal = j-TUGboat, volume = "15", number = "3", pages = "388--396", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44baragar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-397, author = "Anonymous", title = "Color pages", journal = j-TUGboat, volume = "15", number = "3", pages = "397--404", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44color.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-405, author = "Anonymous", title = "{Participants at the Annual Meeting}", journal = j-TUGboat, volume = "15", number = "3", pages = "405--407", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44addresses.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-408, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "15", number = "3", pages = "408--409", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-409, author = "Anonymous", title = "{1995 Knuth Scholarship}", journal = j-TUGboat, volume = "15", number = "3", pages = "409--410", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44knuthscholar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-411, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "15", number = "3", pages = "411--412", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-415, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "15", number = "3", pages = "415--416", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-412, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "15", number = "3", pages = "412--413", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-3-417, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "15", number = "3", pages = "417--417", month = sep, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-3/tb44ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "44", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1994 Proceedings (Santa Barbara, California).", } @Article{Anonymous:TB15-4-423, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "15", number = "4", pages = "423--424", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB15-4-425, author = "Christina Thiele", title = "Opening words", journal = j-TUGboat, volume = "15", number = "4", pages = "425--425", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45thie.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-4-426, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "15", number = "4", pages = "426--427", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB15-4-427, author = "Michel Goossens and Sebastian Rahz and Barbara Beeton", title = "{The TUG94 Proceedings\Dash {Apologia}}", journal = j-TUGboat, volume = "15", number = "4", pages = "427--428", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45goos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bolland:TB15-4-429, author = "Julita Bolland and Toni Walter and W{\l}odek Bzyl", title = "{Euro{\TeX}94}", journal = j-TUGboat, volume = "15", number = "4", pages = "429--433", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB15-4-434, author = "Philip Taylor", title = "{Minutes of the NTS meeting held at Lindau on October 11/12th 1994}", journal = j-TUGboat, volume = "15", number = "4", pages = "434--437", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45ntsx.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laugier:TB15-4-438, author = "Maurice Laugier and Yannis Haralambous", title = "{{\TeX} innovations at the Louis-Jean printing house}", journal = j-TUGboat, volume = "15", number = "4", pages = "438--443", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45laugier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{MacKay:TB15-4-444, author = "Pierre A. MacKay", title = "{Recycled {\MF}}", journal = j-TUGboat, volume = "15", number = "4", pages = "444--446", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45mack.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB15-4-447, author = "Yannis Haralambous", title = "{{\it Indica}, an Indic preprocessor for {\TeX}: A Sinhalese {\TeX} system}", journal = j-TUGboat, volume = "15", number = "4", pages = "447--458", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45hari.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Olsak:TB15-4-459, author = "Petr Ol{\v{s}}{\'a}k", title = "{The EAN barcodes by {\TeX}}", journal = j-TUGboat, volume = "15", number = "4", pages = "459--464", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45olsa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB15-4-464, author = "Philip Taylor", title = "An open letter to the {TUG Board}", journal = j-TUGboat, volume = "15", number = "4", pages = "464--465", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Feruglio:TB15-4-466, author = "Gabriel Valiente Feruglio", title = "Typesetting commutative diagrams", journal = j-TUGboat, volume = "15", number = "4", pages = "466--484", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45vali.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB15-4-485, author = "Victor Eijkhout", title = "The bag of tricks", journal = j-TUGboat, volume = "15", number = "4", pages = "485--405", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45eijk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Richer:TB15-4-486, author = "Jacques Richer", title = "{A {\TeX} autostereogram generator}", journal = j-TUGboat, volume = "15", number = "4", pages = "486--492", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45rich.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fossmeier:TB15-4-492, author = "Reinhard F{\"o}{\ss}meier", title = "{Stereographic pictures using {\TeX}}", journal = j-TUGboat, volume = "15", number = "4", pages = "492--495", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45foss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Braams:TB15-4-496, author = "Johannes Braams", title = "To reset or not to reset", journal = j-TUGboat, volume = "15", number = "4", pages = "496--497", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb15-4/tb45braa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-4-498, author = "Anonymous", title = "{Cahiers GUTenberg Nos. 18 and 19}", journal = j-TUGboat, volume = "15", number = "4", pages = "498--499", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-4-500, author = "Anonymous", title = "{Abstracts of the {\it {Proceedings} of the Eighth European {\TeX} Conference}, {Gda{\'n}sk}, September 1994}", journal = j-TUGboat, volume = "15", number = "4", pages = "500--503", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-4-505, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "15", number = "4", pages = "505--504", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB15-4-505, author = "Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "15", number = "4", pages = "505--505", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-4-506, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "15", number = "4", pages = "506--506", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-4-507, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "15", number = "4", pages = "507--507", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB15-4-508, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "15", number = "4", pages = "508--508", month = dec, year = "1994", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "45", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "16", number = "1", pages = "3--4", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bzyl:TB16-1-4, author = "W{\l}odek Bzyl", title = "{Euro{\TeX}94 Contest Answers}", journal = j-TUGboat, volume = "16", number = "1", pages = "4--4", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB16-1-5, author = "Christina Thiele and Michel Goossens", title = "Opening words", journal = j-TUGboat, volume = "16", number = "1", pages = "5--7", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB16-1-8, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "16", number = "1", pages = "8--8", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jaegermann:TB16-1-9, author = "Michael Jaegermann", title = "{Making {\tt MakeTeXPK} safer for Unix installations}", journal = j-TUGboat, volume = "16", number = "1", pages = "9--12", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46jaeg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB16-1-12, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "16", number = "1", pages = "12--17", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB16-1-18, author = "Claudio Beccari", title = "{Configuring {\TeX} or {\LaTeX} for typesetting in several languages}", journal = j-TUGboat, volume = "16", number = "1", pages = "18--30", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46bec1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB16-1-30, author = "Claudio Beccari and Radu Oprea and Elena Tulei", title = "{How to make a foreign language pattern file: Romanian}", journal = j-TUGboat, volume = "16", number = "1", pages = "30--41", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46bec2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB16-1-42, author = "Christina Thiele", title = "{{\TeX} and Linguistics}", journal = j-TUGboat, volume = "16", number = "1", pages = "42--44", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46ling.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB16-1-45, author = "Alan Hoenig", title = "{Introducing {\MP}}", journal = j-TUGboat, volume = "16", number = "1", pages = "45--45", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46hoen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB16-1-46, author = "Yannis Haralambous", title = "{Some {\MF} techniques}", journal = j-TUGboat, volume = "16", number = "1", pages = "46--53", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46harm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Olsak:TB16-1-54, author = "Petr Ol{\v{s}}{\'a}k", title = "{The program {\tt a2ac}\Dash {Font} handling on the {\PS} level}", journal = j-TUGboat, volume = "16", number = "1", pages = "54--59", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46olsa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Malyshev:TB16-1-60, author = "Basil Malyshev", title = "{Problems of the conversion of {\MF} fonts to {\PS} Type 1}", journal = j-TUGboat, volume = "16", number = "1", pages = "60--68", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46malyPT.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Malyshev:TB16-1-69, author = "Basil Malyshev and Michel Goossens", title = "{Partial font embedding utilities for {\PS} Type-1 fonts}", journal = j-TUGboat, volume = "16", number = "1", pages = "69--77", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46malyFL.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jeffrey:TB16-1-78, author = "Alan Jeffrey", title = "{Tight setting with {\TeX}}", journal = j-TUGboat, volume = "16", number = "1", pages = "78--80", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46jeff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fujita:TB16-1-80, author = "Shinsaku Fujita", title = "{{\XYMTeX} for drawing chemical structural formulas}", journal = j-TUGboat, volume = "16", number = "1", pages = "80--88", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46fuji.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-1-89, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "16", number = "1", pages = "89--90", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB16-1-90, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "16", number = "1", pages = "90--91", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46prod-coming.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-1-91, author = "Anonymous", title = "Coming next issue", journal = j-TUGboat, volume = "16", number = "1", pages = "91--91", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-1/tb46prod-coming.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-1-92, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "16", number = "1", pages = "92--92", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-1-93, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "16", number = "1", pages = "93--93", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-1-94, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "16", number = "1", pages = "94--94", month = mar, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "46", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-2-99, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "16", number = "2", pages = "99--100", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB16-2-101, author = "Michel Goossens", title = "Opening words", journal = j-TUGboat, volume = "16", number = "2", pages = "101--101", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Clark:TB16-2-101, author = "Malcolm Clark", title = "Introduction", journal = j-TUGboat, volume = "16", number = "2", pages = "101--102", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB16-2-103, author = "Michel Goossens and Janne Saarela", title = "{A practical introduction to {\SGML}}", journal = j-TUGboat, volume = "16", number = "2", pages = "103--145", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/tb47goo1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB16-2-146, author = "Peter Flynn", title = "{{\HTML} \& {\TeX}: Making them sweat}", journal = j-TUGboat, volume = "16", number = "2", pages = "146--150", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/pf-gg-md-os.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Granger:TB16-2-151, author = "Geeti Granger", title = "The inside story of life at {Wiley} with {\SGML}, {\LaTeX} and {Acrobat}", journal = j-TUGboat, volume = "16", number = "2", pages = "151--154", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/pf-gg-md-os.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Doyle:TB16-2-154, author = "Mark D. Doyle", title = "{The Los Alamos e-print archives: {Hyper\TeX} in action}", journal = j-TUGboat, volume = "16", number = "2", pages = "154--159", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/pf-gg-md-os.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schwarzkopf:TB16-2-159, author = "Otfried Schwarzkopf", title = "{The Hyperlatex story}", journal = j-TUGboat, volume = "16", number = "2", pages = "159--162", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/pf-gg-md-os.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB16-2-162, author = "Yannis Haralambous and Sebastian Rahtz", title = "{{\LaTeX}, hypertext and {\PDF}, {\it or} the entry of {\TeX} into the world of hypertext}", journal = j-TUGboat, volume = "16", number = "2", pages = "162--173", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/tb47hara.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB16-2-174, author = "Michel Goossens and Janne Saarela", title = "{{\TeX} to {\HTML} and back}", journal = j-TUGboat, volume = "16", number = "2", pages = "174--214", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/tb47goo2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-2-215, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "16", number = "2", pages = "215--216", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/calendar.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB16-2-100, author = "Mimi Burbank and Barbara Beeton", title = "Production notes", journal = j-TUGboat, volume = "16", number = "2", pages = "100--100", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-2/tb47prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-2-217, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "16", number = "2", pages = "217--217", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-2-218, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "16", number = "2", pages = "218--218", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-2-218-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "16", number = "2", pages = "218--218", month = jun, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "47", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fairbairns:TB16-3-222, author = "Robin Fairbairns", title = "Production notes", journal = j-TUGboat, volume = "16", number = "3", pages = "222--222", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Goossens:TB16-3-223, author = "Michel Goossens", title = "{President}'s words", journal = j-TUGboat, volume = "16", number = "3", pages = "223--226", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/Pres/tb48pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Zlatuska:TB16-3-227, author = "Ji{\v{r}}{\'{}\i} Zlatu{\v{s}}ka", title = "{When {\MF} does it alone}", journal = j-TUGboat, volume = "16", number = "3", pages = "227--232", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48zlat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Kinch:TB16-3-233, author = "Richard J. Kinch", title = "{MetaFog: converting {\MF} shapes to contours}", journal = j-TUGboat, volume = "16", number = "3", pages = "233--243", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48kinc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Hoenig:TB16-3-244, author = "Alan Hoenig", title = "{The Poetica family: fancy fonts with {\TeX} and {\LaTeX}}", journal = j-TUGboat, volume = "16", number = "3", pages = "244--252", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48hoen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Goossens:TB16-3-253, author = "Michel Goossens and Sebastian Rahtz and Robin Fairbairns", title = "{Using Adobe Type 1 Multiple Master fonts with {\TeX}}", journal = j-TUGboat, volume = "16", number = "3", pages = "253--258", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48goos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Gibbons:TB16-3-259, author = "Jeremy Gibbons", title = "{Dotted and dashed lines in {\MF}}", journal = j-TUGboat, volume = "16", number = "3", pages = "259--264", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48gibb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Lesenko:TB16-3-265, author = "Sergey Lesenko", title = "{Printing {\TeX} documents with partial Type 1 fonts}", journal = j-TUGboat, volume = "16", number = "3", pages = "265--268", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48lese.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Swift:TB16-3-269, author = "Matthew Swift", title = "{Modularity in {\LaTeX}}", journal = j-TUGboat, volume = "16", number = "3", pages = "269--275", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48swif.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Kletzing:TB16-3-276, author = "Dennis Kletzing", title = "A multienumerate package", journal = j-TUGboat, volume = "16", number = "3", pages = "276--279", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48klet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Sojka:TB16-3-280, author = "Petr Sojka and Pavel {\v{S}}eve{\v{c}}ek", title = "{Hyphenation in {\TeX} --- Quo Vadis?}", journal = j-TUGboat, volume = "16", number = "3", pages = "280--289", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48soj1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Sojka:TB16-3-290, author = "Petr Sojka", title = "{Notes on compound word hyphenation in {\TeX}}", journal = j-TUGboat, volume = "16", number = "3", pages = "290--296", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48soj2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Bzyl:TB16-3-297, author = "W{\l}odek Bzyl", title = "{Literate Plain source is available!}", journal = j-TUGboat, volume = "16", number = "3", pages = "297--299", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48bzyl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Childs:TB16-3-300, author = "Bart Childs and Deborah Dunn and William Lively", title = "{Teaching CS/1 courses in a literate manner}", journal = j-TUGboat, volume = "16", number = "3", pages = "300--309", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48chil.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Raman:TB16-3-310, author = "T. V. Raman", title = "{An audio view of {(\La)\TeX} documents --- part II}", journal = j-TUGboat, volume = "16", number = "3", pages = "310--314", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48rama.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Rahtz:TB16-3-315, author = "Sebastian Rahtz", title = "{Another look at {\LaTeX} to {\SGML} conversion}", journal = j-TUGboat, volume = "16", number = "3", pages = "315--324", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48raht.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Fairbairns:TB16-3-325, author = "Robin Fairbairns", title = "{Omega --- Why bother with Unicode?}", journal = j-TUGboat, volume = "16", number = "3", pages = "325--328", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48fair.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Feruglio:TB16-3-329, author = "Gabriel Valiente Feruglio", title = "{Modern Catalan typographical conventions}", journal = j-TUGboat, volume = "16", number = "3", pages = "329--338", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48vali.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Anonymous:TB16-3-339, author = "Anonymous", title = "{TUG'96 Announcement}", journal = j-TUGboat, volume = "16", number = "3", pages = "339--339", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/dubna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Anonymous:TB16-3-340, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "16", number = "3", pages = "340--341", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Anonymous:TB16-3-341, author = "Anonymous", title = "{TUG'95\Dash {List} of attendees}", journal = j-TUGboat, volume = "16", number = "3", pages = "341--343", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Anonymous:TB16-3-344, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "16", number = "3", pages = "344--344", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", URL = "http://www.tug.org/TUGboat/tb16-3/tb48attn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Anonymous:TB16-3-345, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "16", number = "3", pages = "345--345", month = sep, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1995/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "48", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1995 Proceedings (St. Petersburg, Florida).", } @Article{Anonymous:TB16-4-351, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "16", number = "4", pages = "351--352", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB16-4-353, author = "Michel Goossens", title = "Writing the future is reading the past", journal = j-TUGboat, volume = "16", number = "4", pages = "353--354", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB16-4-355, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "16", number = "4", pages = "355--357", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49beet-flyn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB16-4-357, author = "Peter Flynn", title = "{Upcoming TTN merger into {\TUB}}", journal = j-TUGboat, volume = "16", number = "4", pages = "357--357", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49beet-flyn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Machi:TB16-4-358, author = "Filip Machi and Jerrold E. Marsden and Wendy G. McKay", title = "{Introduction to {Fas\TeX}: A system of keyboard shortcuts for the fast keying of {\TeX}}", journal = j-TUGboat, volume = "16", number = "4", pages = "358--363", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49mars.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lapko:TB16-4-364, author = "Olga Lapko and Irina Makhovaya", title = "{The style {\tt russianb} for Babel: Problems and solutions}", journal = j-TUGboat, volume = "16", number = "4", pages = "364--372", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49olga.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Slepukhin:TB16-4-373, author = "Andrey Slepukhin", title = "{A package for Church-Slavonic typesetting}", journal = j-TUGboat, volume = "16", number = "4", pages = "373--380", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49slep.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knappen:TB16-4-381, author = "J{\"o}rg Knappen", title = "{Release 1.2 of the {{\ssf dc}}-fonts: Improvements to the European letters and first release of text companion symbols}", journal = j-TUGboat, volume = "16", number = "4", pages = "381--387", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49knap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB16-4-388, author = "Bogus{\l}aw Jackowski", title = "{A {\MF}--{\acro{EPS}} interface}", journal = j-TUGboat, volume = "16", number = "4", pages = "388--395", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49jack.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rokicki:TB16-4-395, author = "Tomas G. Rokicki", title = "A proposed standard for specials", journal = j-TUGboat, volume = "16", number = "4", pages = "395--401", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49roki.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Structure:TB16-4-401, author = "{TUG Working Group on a {\TeX} Directory Structure}", title = "A directory structure for {\TeX} files ({Version 0.999})", journal = j-TUGboat, volume = "16", number = "4", pages = "401--413", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49tds.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB16-4-413, author = "Sebastian Rahtz", title = "{Whatever is wrong with my {\LaTeX} file?}", journal = j-TUGboat, volume = "16", number = "4", pages = "413--416", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB16-4-416, author = "Jonathan Fine", title = "{New perspectives on {\TeX} macros}", journal = j-TUGboat, volume = "16", number = "4", pages = "416--418", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB16-4-418, author = "Yannis Haralambous and John Plaice and Johannes Braams", title = "{Never again active characters! {$ \Omega $}-{Babel}}", journal = j-TUGboat, volume = "16", number = "4", pages = "418--427", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49har.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-428, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "16", number = "4", pages = "428", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-429, author = "Anonymous", title = "{Call for papers: TUG\,'96}", journal = j-TUGboat, volume = "16", number = "4", pages = "429--431", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tug96.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-427, author = "Anonymous", title = "{TUG\,'97\Dash {Soliciting} bids for host site}", journal = j-TUGboat, volume = "16", number = "4", pages = "427--427", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB16-4-432, author = "Michel Goossens", title = "{Euro{\TeX}\,'95, Papendal, The Netherlands, 4--8 September 1995}", journal = j-TUGboat, volume = "16", number = "4", pages = "432--439", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/euro95.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB16-4-379, author = "Michel Goossens", title = "{Production notes on the Russian papers}", journal = j-TUGboat, volume = "16", number = "4", pages = "379--379", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49slep.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB16-4-440, author = "Mimi Burbank and Michel Goossens", title = "Production notes", journal = j-TUGboat, volume = "16", number = "4", pages = "440--440", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-440, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "16", number = "4", pages = "440--440", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb16-4/tb49prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-441, author = "Anonymous", title = "{1996 {\TeX} Users Group election}", journal = j-TUGboat, volume = "16", number = "4", pages = "441--441", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-441-2, author = "Anonymous", title = "{1996 TUG election\Dash nomination form}", journal = j-TUGboat, volume = "16", number = "4", pages = "441--441", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-442, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "16", number = "4", pages = "442--442", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-443, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "16", number = "4", pages = "443--443", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB16-4-443-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "16", number = "4", pages = "443--443", month = dec, year = "1995", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "49", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "17", number = "1", pages = "3--4", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tug97.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-4, author = "Anonymous", title = "{Soliciting Bids for \acro{TUG}\,'97}", journal = j-TUGboat, volume = "17", number = "1", pages = "4--4", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tug97.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB17-1-5, author = "Michel Goossens", title = "From the {President}", journal = j-TUGboat, volume = "17", number = "1", pages = "5--6", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb50pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB17-1-6, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "17", number = "1", pages = "6--7", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-7, author = "Anonymous", title = "{TUG\,'95: Questions and answers with Prof. Donald E. Knuth}", journal = j-TUGboat, volume = "17", number = "1", pages = "7--22", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bennett:TB17-1-22, author = "Frank G. {Bennett, Jr.}", title = "{{\smc Camel}: kicking over the bibliographic traces in {\BibTeX}}", journal = j-TUGboat, volume = "17", number = "1", pages = "22--28", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50benn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Machi:TB17-1-28, author = "Filip Machi and Jerrold E. Marsden and Wendy G. McKay", title = "{Corrigendum: Introduction to {Fas\TeX}: a system of keyboard shortcuts for the fast keying of {\TeX} (\tubissue 16(4), pp. 358--363)}", journal = j-TUGboat, volume = "17", number = "1", pages = "28--28", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50mars.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB17-1-29, author = "Donald E. Knuth", title = "{Important message regarding CM fonts}", journal = j-TUGboat, volume = "17", number = "1", pages = "29--29", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50cmup.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zubrinic:TB17-1-29, author = "Darko {\v{Z}}ubrini{\'c}", title = "{Croatian} fonts", journal = j-TUGboat, volume = "17", number = "1", pages = "29--33", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50zubr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vesely:TB17-1-34, author = "J. Vesel{\'y}", title = "{Two new books on {\TeX} in the Czech Republic}", journal = j-TUGboat, volume = "17", number = "1", pages = "34--34", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50revc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Price:TB17-1-35, author = "Lynne A. Price", title = "{Ronald C. Turner, Timothy A. Douglass, and Audrey J. Turner, {\it\acro{README.1ST}: \acro{SGML} for Writers and Editors}}", journal = j-TUGboat, volume = "17", number = "1", pages = "35--37", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50revs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Porrat:TB17-1-37, author = "Rama Porrat", title = "{There's still something missing{\dots}}", journal = j-TUGboat, volume = "17", number = "1", pages = "37--37", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50porr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB17-1-37, author = "Mimi Burbank and Michel Goossens", title = "Electronic news from the family", journal = j-TUGboat, volume = "17", number = "1", pages = "37--42", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50lugs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reckdahl:TB17-1-43, author = "Keith Reckdahl", title = "{Using \acro{EPS} graphics in {\LaTeXe} documents, Part 1: the {\ssf graphics} and {\ssf graphicx} packages}", journal = j-TUGboat, volume = "17", number = "1", pages = "43--53", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50reck.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosek:TB17-1-53, author = "Don Hosek", title = "{That ol' devil {\tt\char`\\expandafter}}", journal = j-TUGboat, volume = "17", number = "1", pages = "53--54", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50hose.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB17-1-54, author = "J. Hagen and A. F. Otten", title = "{{\acro{PPCH\TeX}}: typesetting chemical formulas in {\TeX}}", journal = j-TUGboat, volume = "17", number = "1", pages = "54--66", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50hage.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carlisle:TB17-1-67, author = "David Carlisle", title = "{A {\LaTeX} tour, Part 1: The basic distribution}", journal = j-TUGboat, volume = "17", number = "1", pages = "67--73", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50carl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-73, author = "Anonymous", title = "{Les Cahiers GUTenberg, No. 20}", journal = j-TUGboat, volume = "17", number = "1", pages = "73--74", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-74, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "17", number = "1", pages = "74--75", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-76, author = "Anonymous", title = "{TUG\,'96 Preliminary schedule}", journal = j-TUGboat, volume = "17", number = "1", pages = "76--77", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tug96.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB17-1-78, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "17", number = "1", pages = "78--78", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-78, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "17", number = "1", pages = "78--78", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-1/tb50prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-79, author = "Anonymous", title = "{TUG Bylaws}", journal = j-TUGboat, volume = "17", number = "1", pages = "79--83", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-84, author = "Anonymous", title = "{1996 \acro{TUG} election cancelled}", journal = j-TUGboat, volume = "17", number = "1", pages = "84--84", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-84-2, author = "Anonymous", title = "{TUG Board}", journal = j-TUGboat, volume = "17", number = "1", pages = "84--84", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-85, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "17", number = "1", pages = "85--85", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-86, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "17", number = "1", pages = "86--86", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-87, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "17", number = "1", pages = "87--87", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-1-87-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "17", number = "1", pages = "87--87", month = mar, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "50", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB17-2-91, author = "Michel Goossens", title = "Opening Words by the {President}", journal = j-TUGboat, volume = "17", number = "2", pages = "91--91", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/Pres/tb51pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Piska:TB17-2-92, author = "Karel P{\'{}\i}{\v{s}}ka", title = "{Cyrillic} alphabets", journal = j-TUGboat, volume = "17", number = "2", pages = "92--98", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51pisk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Knappen:TB17-2-99, author = "J{{\"o}}rg Knappen", title = "{The {\ssf dc} fonts 1.3: Move towards stability and completeness}", journal = j-TUGboat, volume = "17", number = "2", pages = "99--101", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51knap.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Rei:TB17-2-102, author = "Fukui Rei", title = "{{\ssf TIPA}: {A system for processing phonetic symbols in {\LaTeX}}}", journal = j-TUGboat, volume = "17", number = "2", pages = "102--114", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51rei.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Berdnikov:TB17-2-115, author = "A. S. Berdnikov", title = "{Computer Modern Typefaces as Multiple Master Fonts}", journal = j-TUGboat, volume = "17", number = "2", pages = "115--119", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51mff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Berdnikov:TB17-2-120, author = "A. S. Berdnikov", title = "{{\sl VFComb} 1.3\Dash the program which simplifies virtual font management}", journal = j-TUGboat, volume = "17", number = "2", pages = "120--125", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51vfc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Haralambous:TB17-2-126, author = "Yannis Haralambous", title = "{$ \Omega $Times and $ \Omega $Helvetica fonts under development: Step One}", journal = j-TUGboat, volume = "17", number = "2", pages = "126--146", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51omeg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Kinch:TB17-2-147, author = "Richard J. Kinch", title = "{Extending {\TeX} for Unicode}", journal = j-TUGboat, volume = "17", number = "2", pages = "147--160", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51kin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Znamenskaya:TB17-2-161, author = "L. N. Znamenskaya and S. V. Znamenskii", title = "{Russian} encoding plurality problem and a new {Cyrillic} font set", journal = j-TUGboat, volume = "17", number = "2", pages = "161--165", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51mens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Ovchenkov:TB17-2-166, author = "Peter A. Ovchenkov", title = "{Cyrillic {\TeX}} files: interplatform portability", journal = j-TUGboat, volume = "17", number = "2", pages = "166--171", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51ovch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Vinogradov:TB17-2-172, author = "Michael M. Vinogradov", title = "{A user-friendly multi-function {\TeX} interface based on Multi-Edit}", journal = j-TUGboat, volume = "17", number = "2", pages = "172--174", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51vino.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Lapko:TB17-2-174, author = "Olga G. Lapko", title = "Full {Cyrillic}: How many languages?", journal = j-TUGboat, volume = "17", number = "2", pages = "174--180", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51olga.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Plaice:TB17-2-181, author = "John Plaice and Yannis Haralambous", title = "{The latest developments in {$ \Omega $}}", journal = j-TUGboat, volume = "17", number = "2", pages = "181--183", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Langmyhr:TB17-2-184, author = "Dag Langmyhr", title = "{Star\TeX}\Dash a {\TeX} for beginners", journal = j-TUGboat, volume = "17", number = "2", pages = "184--190", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51dag.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Feruglio:TB17-2-191, author = "Gabriel Valiente Feruglio", title = "{Do journals honor {\LaTeX} submissions?}", journal = j-TUGboat, volume = "17", number = "2", pages = "191--199", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51vali.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Znamenskii:TB17-2-200, author = "Sergei V. Znamenskii and Denis E. Leinartas", title = "{A new approach to the {\TeX}-related programs: A user-friendly interface}", journal = j-TUGboat, volume = "17", number = "2", pages = "200--203", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51znam.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Vsesvetsky:TB17-2-204, author = "Ivan G. Vsesvetsky", title = "{The strait gate to {\TeX}}", journal = j-TUGboat, volume = "17", number = "2", pages = "204--205", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51ivan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Siebenmann:TB17-2-206, author = "Laurent Siebenmann", title = "{DVI-based electronic publication}", journal = j-TUGboat, volume = "17", number = "2", pages = "206--214", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51sieb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Laan:TB17-2-215, author = "Kees van der Laan", title = "{BLUe's format\Dash the off-off alternative}", journal = j-TUGboat, volume = "17", number = "2", pages = "215--221", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51blue.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Laan:TB17-2-222, author = "Kees van der Laan", title = "{Turtle graphics and {\TeX}\Dash a child can do it}", journal = j-TUGboat, volume = "17", number = "2", pages = "222--228", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51turt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Berdnikov:TB17-2-229, author = "A. S. Berdnikov and O. A. Grineva and S. B. Turtia", title = "{Some useful macros which extend the {\LaTeX} {\tt picture} environment}", journal = j-TUGboat, volume = "17", number = "2", pages = "229--232", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51grf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Burbank:TB17-2-90, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "17", number = "2", pages = "90--90", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", URL = "http://www.tug.org/TUGboat/tb17-2/tb51prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Anonymous:TB17-2-233, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "17", number = "2", pages = "233--233", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Anonymous:TB17-2-234, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "17", number = "2", pages = "234--234", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Anonymous:TB17-2-235, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "17", number = "2", pages = "235--235", month = jun, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1996/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "51", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1996 Proceedings (Dubna, Russia).", } @Article{Anonymous:TB17-3-239, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "17", number = "3", pages = "239--239", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB17-3-241, author = "Michel Goossens", title = "From the {President}", journal = j-TUGboat, volume = "17", number = "3", pages = "241--243", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb52pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB17-3-243, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "17", number = "3", pages = "243--244", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sojka:TB17-3-244, author = "Petr Sojka and Han The Thanh and Ji{\v{r}}{\'\i}Zlatu{\v{s}}ka", title = "{The joy of {\TeX}2\acro{PDF}\Dash Acrobatics with an alternative to \acro{DVI} format}", journal = j-TUGboat, volume = "17", number = "3", pages = "244--251", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52sojk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lesenko:TB17-3-252, author = "Sergey Lesenko", title = "{The \acro{DVIPDF} Program}", journal = j-TUGboat, volume = "17", number = "3", pages = "252--254", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52lese.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB17-3-255, author = "Jonathan Fine", title = "Editing {\tt .dvi} files, or {Visual \TeX}", journal = j-TUGboat, volume = "17", number = "3", pages = "255--259", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52finv.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Makhovaya:TB17-3-259, author = "Irina A. Makhovaya", title = "{{\TeX} in Russia: ab ovo, or, About the {\TeX}nical evolution in Russia}", journal = j-TUGboat, volume = "17", number = "3", pages = "259--264", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52makh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB17-3-264, author = "Sebastian Rahtz", title = "{{{\LaTeX}, {\it dvips}, \acro{EPS} and the Web \dots}}", journal = j-TUGboat, volume = "17", number = "3", pages = "264--268", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laan:TB17-3-269, author = "Kees van der Laan", title = "{{Graphics and {\TeX}\Dash A reappraisal of {\MF}/MetaPost/{\PS}}}", journal = j-TUGboat, volume = "17", number = "3", pages = "269--279", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52meta.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thompson:TB17-3-280, author = "David Thompson", title = "{Stanley Sawyer and Steven Krantz, {\it A {\TeX} Primer for Scientists}}", journal = j-TUGboat, volume = "17", number = "3", pages = "280--280", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52revt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bzyl:TB17-3-281, author = "W{\l}odek Bzyl", title = "{David Salomon, {\it The Advanced {\TeX}book}}", journal = j-TUGboat, volume = "17", number = "3", pages = "281--282", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52revb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fairbairns:TB17-3-282, author = "Robin Fairbairns", title = "{The new ({\LaTeXe}) {\TUB} macros}", journal = j-TUGboat, volume = "17", number = "3", pages = "282--288", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52guid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reckdahl:TB17-3-288, author = "Keith Reckdahl", title = "{Using \acro{EPS} graphics in {\LaTeXe} documents, Part 2: Floating figures, boxed figures, captions, and math in figures}", journal = j-TUGboat, volume = "17", number = "3", pages = "288--310", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52reck.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Saludes:TB17-3-310, author = "Jordi Saludes", title = "Fast and secure multiple-option tests", journal = j-TUGboat, volume = "17", number = "3", pages = "310--319", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52salu.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schmitt:TB17-3-319, author = "Peter Schmitt", title = "{A puzzling {\TeX} macro}", journal = j-TUGboat, volume = "17", number = "3", pages = "319--320", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52schm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carlisle:TB17-3-321, author = "David Carlisle", title = "{A {\LaTeX} tour, Part 2: The {\ssf tools} and {\ssf graphics} distributions}", journal = j-TUGboat, volume = "17", number = "3", pages = "321--326", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52carl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-326, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "17", number = "3", pages = "326--327", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB17-3-327, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "17", number = "3", pages = "327--327", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-327, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "17", number = "3", pages = "327--327", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-328, author = "Anonymous", title = "{{\acro{TUG}'97 Call for Papers}}", journal = j-TUGboat, volume = "17", number = "3", pages = "328--328", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/call97.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-240, author = "Anonymous", title = "{1997 \acro{TUG} Election}", journal = j-TUGboat, volume = "17", number = "3", pages = "240--240", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-3/tb52elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-329, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "17", number = "3", pages = "329--329", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-330, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "17", number = "3", pages = "330--330", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-331, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "17", number = "3", pages = "331--331", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-3-331-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "17", number = "3", pages = "331--331", month = sep, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "52", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-335, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "17", number = "4", pages = "335--335", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-336, author = "Anonymous", title = "{{\acro{TUG}'97 Update}}", journal = j-TUGboat, volume = "17", number = "4", pages = "336--336", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tug97update.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB17-4-337, author = "Michel Goossens", title = "{{The state of \acro{TUG}}}", journal = j-TUGboat, volume = "17", number = "4", pages = "337--340", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb53pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB17-4-340, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "17", number = "4", pages = "340--342", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-342, author = "Anonymous", title = "{Amsterdam, 13 March 1996\Dash Knuth meets \acro{NTG} members}", journal = j-TUGboat, volume = "17", number = "4", pages = "342--355", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-355, author = "Anonymous", title = "{{\CSTUG}, Charles University, Prague, March 1996\Dash Questions and answers with Prof. Donald E. Knuth}", journal = j-TUGboat, volume = "17", number = "4", pages = "355--367", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB17-4-367, author = "Philip Taylor", title = "{Computer typesetting or electronic publishing? New trends in scientific publication}", journal = j-TUGboat, volume = "17", number = "4", pages = "367--381", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53tayl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Strelkov:TB17-4-382, author = "S. A. Strelkov and G. R. Epshtein", title = "{Making indices for \acro{VINITI}'s ``Mathematics'' abstract journal}", journal = j-TUGboat, volume = "17", number = "4", pages = "382--385", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53stre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Grinchuk:TB17-4-385, author = "Mikhail Ivanovich Grinchuk", title = "{{\TeX} and Russian traditions of typesetting}", journal = j-TUGboat, volume = "17", number = "4", pages = "385--388", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53grin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB17-4-388, author = "Christina Thiele", title = "{{\TeX} and the Humanities}", journal = j-TUGboat, volume = "17", number = "4", pages = "388--393", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53thie.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB17-4-393, author = "Jonathan Fine", title = "{{\it The Printing Revolution in Early Modern Europe}, by Elizabeth L. Eisenstein}", journal = j-TUGboat, volume = "17", number = "4", pages = "393--396", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gratzer:TB17-4-396, author = "George Gr{\"a}tzer", title = "{Suggestions wanted for new edition of {\it Math into \LaTeX}}", journal = j-TUGboat, volume = "17", number = "4", pages = "396--396", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53query.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kuypers:TB17-4-396, author = "Dirk Kuypers", title = "{{\acro{PPCHTEX} molecule templates}}", journal = j-TUGboat, volume = "17", number = "4", pages = "396--396", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53query.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-397, author = "Anonymous", title = "{Les Cahiers GUTenberg, Nos. 21--24}", journal = j-TUGboat, volume = "17", number = "4", pages = "397--403", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-403, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "17", number = "4", pages = "403--405", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB17-4-405, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "17", number = "4", pages = "405--405", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-405, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "17", number = "4", pages = "405--405", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB17-4-405-2, author = "Mimi Burbank", title = "{Facts and Figures}", journal = j-TUGboat, volume = "17", number = "4", pages = "405--408", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb17-4/tb53treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-409, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "17", number = "4", pages = "409--409", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-410, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "17", number = "4", pages = "410--410", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-411, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "17", number = "4", pages = "411--411", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB17-4-411-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "17", number = "4", pages = "411--411", month = dec, year = "1996", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "53", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "18", number = "1", pages = "3--3", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-4, author = "Anonymous", title = "{Notice regarding 1997 {\TeX} Users Group election}", journal = j-TUGboat, volume = "18", number = "1", pages = "4--4", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB18-1-5, author = "Michel Goossens", title = "From the {President}", journal = j-TUGboat, volume = "18", number = "1", pages = "5--5", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb54pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB18-1-5, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "18", number = "1", pages = "5--6", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-6, author = "Anonymous", title = "{Erratum: Amsterdam, 13 March 1996\Dash {Knuth} meets \acro{NTG} members, \tubissue 17(4), pp. 342--355}", journal = j-TUGboat, volume = "18", number = "1", pages = "6--6", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB18-1-6, author = "Philip Taylor", title = "{NTS \& {$ \varepsilon $}-{\TeX}: a status report}", journal = j-TUGboat, volume = "18", number = "1", pages = "6--12", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54tayl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vieth:TB18-1-12, author = "Ulrik Vieth", title = "{A GNU Emacs editing mode for {\MF} and {\MP} sources}", journal = j-TUGboat, volume = "18", number = "1", pages = "12--16", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54viet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB18-1-17, author = "Yannis Haralambous", title = "{The Traditional Arabic Typecase, Unicode, {\TeX} and {\MF}}", journal = j-TUGboat, volume = "18", number = "1", pages = "17--29", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54arab.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Weenen:TB18-1-30, author = "Andrea de Leeuw van Weenen", title = "{A Medieval Icelandic manuscript: The making of a diplomatic edition}", journal = j-TUGboat, volume = "18", number = "1", pages = "30--36", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54leew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sofka:TB18-1-37, author = "Michael D. Sofka", title = "{{\it Writing with {\TeX}}, and {\it {\TeX}\& \LaTeX: Drawing \& Literate Programming}, by Eitan M. Gurari}", journal = j-TUGboat, volume = "18", number = "1", pages = "37--38", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54revg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB18-1-39, author = "Claudio Beccari", title = "{Typesetting mathematics for science and technology according to {ISO\,31/XI}}", journal = j-TUGboat, volume = "18", number = "1", pages = "39--48", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carlisle:TB18-1-48, author = "David Carlisle", title = "{A {\LaTeX} Tour, part 3: {\ssf mfnfss}, {\ssf psnfss} and {\ssf babel}}", journal = j-TUGboat, volume = "18", number = "1", pages = "48--55", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54carl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-56, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "18", number = "1", pages = "56--67", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB18-1-57, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "18", number = "1", pages = "57--57", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-57, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "18", number = "1", pages = "57--57", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-58, author = "Anonymous", title = "{{\acro{TUG}'97 Update}}", journal = j-TUGboat, volume = "18", number = "1", pages = "58--58", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tug97-update.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-59, author = "Anonymous", title = "{New members of the TUG Board}", journal = j-TUGboat, volume = "18", number = "1", pages = "59--60", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-1/tb54boar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-61, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "18", number = "1", pages = "61--61", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-62, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "18", number = "1", pages = "62--62", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-63, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "18", number = "1", pages = "63--63", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-1-57-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "18", number = "1", pages = "57--57", month = mar, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "54", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-67, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "18", number = "2", pages = "67--67", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kopriva:TB18-2-68, author = "Phil Kopriva", title = "Letter from a member", journal = j-TUGboat, volume = "18", number = "2", pages = "68--68", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55kopr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB18-2-69, author = "Michel Goossens", title = "From the {President}", journal = j-TUGboat, volume = "18", number = "2", pages = "69--71", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb55pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB18-2-72, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "18", number = "2", pages = "72--73", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB18-2-74, author = "Peter Flynn", title = "{{\acro{TTN}} returns: Final \acro{TTN} editorial}", journal = j-TUGboat, volume = "18", number = "2", pages = "74--74", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55flyn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB18-2-75, author = "Jeremy Gibbons", title = "{`Hey\Dash it works!'}", journal = j-TUGboat, volume = "18", number = "2", pages = "75--78", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55works.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB18-2-78, author = "Christina Thiele", title = "{{\TeX} and the Humanities}", journal = j-TUGboat, volume = "18", number = "2", pages = "78--78", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55huma.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Grant:TB18-2-79, author = "Michael C. Grant", title = "{Volunteers needed: PSfrag hackers}", journal = j-TUGboat, volume = "18", number = "2", pages = "79--79", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55query.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Chow:TB18-2-79, author = "Sidney Chow", title = "{Features for a \acro{WYSIWYG} {\LaTeX} editor}", journal = j-TUGboat, volume = "18", number = "2", pages = "79--79", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55query.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-80, author = "Anonymous", title = "New publications", journal = j-TUGboat, volume = "18", number = "2", pages = "80--80", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55newpubs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB18-2-81, author = "Sebastian Rahtz and Michel Goossens", title = "The {{\bf {\TeXLive} Guide}}, version 2", journal = j-TUGboat, volume = "18", number = "2", pages = "81--112", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB18-2-113, author = "Alan Hoenig", title = "Virtual fonts, virtuous fonts", journal = j-TUGboat, volume = "18", number = "2", pages = "113--121", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/hoenig.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-121, author = "Anonymous", title = "{Les Cahiers GUTenberg, contents of Issue 25}", journal = j-TUGboat, volume = "18", number = "2", pages = "121--122", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-122, author = "Anonymous", title = "{Die {\TeX}nische {Kom{\"o}die} {\bf7}, 1995, Heft 1--4; {\bf8}, 1996, Heft 1--4}", journal = j-TUGboat, volume = "18", number = "2", pages = "122--126", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{L3PT:TB18-2-127, author = "{{\LaTeX\,3} Project Team}", title = "{Modifying {\LaTeX}}", journal = j-TUGboat, volume = "18", number = "2", pages = "127--130", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55guid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-130, author = "Anonymous", title = "{News from the {\LaTeX\,3} Project Team}", journal = j-TUGboat, volume = "18", number = "2", pages = "130--137", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-138, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "18", number = "2", pages = "138--138", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-139, author = "Anonymous", title = "{{\acro{TUG}'97 preliminary program}}", journal = j-TUGboat, volume = "18", number = "2", pages = "139--140", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tug97prog.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB18-2-130, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "18", number = "2", pages = "130--130", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-2/tb55prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-130-2, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "18", number = "2", pages = "130--130", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-141, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "18", number = "2", pages = "141--141", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-142, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "18", number = "2", pages = "142--142", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-143, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "18", number = "2", pages = "143--143", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-2-138-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "18", number = "2", pages = "138--138", month = jun, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "55", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-3-146, author = "Anonymous", title = "{Call for Papers}", journal = j-TUGboat, volume = "18", number = "3", pages = "146--146", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tug98.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Jett:TB18-3-147, author = "Mimi Jett", title = "Opening Words by the {President}", journal = j-TUGboat, volume = "18", number = "3", pages = "147--148", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/Pres/tb56pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-149, author = "Anonymous", title = "{{\acro{TUG}'97} program}", journal = j-TUGboat, volume = "18", number = "3", pages = "149--149", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tug97prog.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Rose:TB18-3-151, author = "Kristoffer H{\o}gsbro Rose", title = "Very high level 2-dimensional graphics with {\TeX} and {{\Xy-pic}}", journal = j-TUGboat, volume = "18", number = "3", pages = "151--158", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56rose.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Moore:TB18-3-159, author = "Ross Moore", title = "{High quality labels on included graphics, using {\Xy-pic}}", journal = j-TUGboat, volume = "18", number = "3", pages = "159--165", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Lesenko:TB18-3-166, author = "Sergey Lesenko", title = "{{\acro{DVIPDF}} and Graphics}", journal = j-TUGboat, volume = "18", number = "3", pages = "166--169", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56lese.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Hamlin:TB18-3-170, author = "Christopher B. Hamlin", title = "{From {\acro{SGML}} to {\acro{HTML}} with help from {\TeX}}", journal = j-TUGboat, volume = "18", number = "3", pages = "170--174", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56haml.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Lovell:TB18-3-175, author = "Douglas Lovell", title = "{Custom legal documents for the IBM AutoLoan Exchange}", journal = j-TUGboat, volume = "18", number = "3", pages = "175--181", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56love.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Downes:TB18-3-182, author = "Michael Downes", title = "Breaking equations", journal = j-TUGboat, volume = "18", number = "3", pages = "182--194", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56down.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Mittelbach:TB18-3-195, author = "Frank Mittelbach and Chris Rowley", title = "{The {\LaTeX3} Project}", journal = j-TUGboat, volume = "18", number = "3", pages = "195--198", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-3/l3project.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB18-3-199, author = "Frank Mittelbach and Chris Rowley", title = "Language information in structured documents: {A} model for mark-up and rendering", journal = j-TUGboat, volume = "18", number = "3", pages = "199--205", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-3/tb56lang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lemberg:TB18-3-206, author = "Werner Lemberg", title = "{New font tools for {\TeX}}", journal = j-TUGboat, volume = "18", number = "3", pages = "206--213", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/fonttool600.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Lemberg:TB18-3-214, author = "Werner Lemberg", title = "{The {\acro{CJK}} package: Multilingual support beyond Babel}", journal = j-TUGboat, volume = "18", number = "3", pages = "214--224", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/cjkintro600.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-225, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "18", number = "3", pages = "225--225", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Burbank:TB18-3-148, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "18", number = "3", pages = "148--148", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", URL = "http://www.tug.org/TUGboat/tb18-3/tb56prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-226, author = "Anonymous", title = "{{\acro{TUG}'97} list of attendees}", journal = j-TUGboat, volume = "18", number = "3", pages = "226--228", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-229, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "18", number = "3", pages = "229--229", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-230, author = "Anonymous", title = "{{\acro{TUG}} membership form}", journal = j-TUGboat, volume = "18", number = "3", pages = "230--230", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-231, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "18", number = "3", pages = "231--231", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-232, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "18", number = "3", pages = "232--232", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1997/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1997 Proceedings (San Francisco, California).", } @Article{Anonymous:TB18-3-cover3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "18", number = "3", pages = "Cover 3", month = sep, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-235, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "18", number = "4", pages = "235--236", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taupin:TB18-4-236, author = "Daniel Taupin", title = "{{MusiX\TeX}: How many fonts are acceptable?}", journal = j-TUGboat, volume = "18", number = "4", pages = "236--236", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57query.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB18-4-237, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "18", number = "4", pages = "237--237", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb57pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB18-4-238, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "18", number = "4", pages = "238--238", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB18-4-239, author = "Phil Taylor", title = "{{\eTeX V2}: a peek into the future}", journal = j-TUGboat, volume = "18", number = "4", pages = "239--242", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57tayl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB18-4-242, author = "Peter Flynn", title = "{Typographers Inn}", journal = j-TUGboat, volume = "18", number = "4", pages = "242--245", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57flyn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rogers:TB18-4-246, author = "David F. Rogers", title = "{{\it The {\LaTeX} Graphics Companion}, by Michel Goossens, Sebastian Rahtz and Frank Mittelbach}", journal = j-TUGboat, volume = "18", number = "4", pages = "246--246", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57revl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB18-4-246, author = "Jeremy Gibbons", title = "{`Hey\Dash it works!'}", journal = j-TUGboat, volume = "18", number = "4", pages = "246--248", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57work.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thanh:TB18-4-249, author = "H{\'a}n Th{\^e}\llap{\raise 0.5ex\hbox{\'{\relax}}} Th{\'a}nh and Sebastian Rahtz", title = "{The pdf{\TeX} user manual}", journal = j-TUGboat, volume = "18", number = "4", pages = "249--254", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57than.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Finston:TB18-4-255, author = "Laurence Finston", title = "{Spindex\Dash {Indexing} with special characters}", journal = j-TUGboat, volume = "18", number = "4", pages = "255--273", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57fins.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB18-4-274, author = "Denis Roegel", title = "{Creating 3D animations with {\MP}}", journal = j-TUGboat, volume = "18", number = "4", pages = "274--283", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57roeg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Horn:TB18-4-284, author = "Berthold K. P. Horn", title = "{`Hinting' of scalable outline fonts}", journal = j-TUGboat, volume = "18", number = "4", pages = "284--286", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57horn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Willadt:TB18-4-286, author = "Peter Willadt", title = "Another approach to barcodes", journal = j-TUGboat, volume = "18", number = "4", pages = "286--290", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57will.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-290, author = "Anonymous", title = "{Die {\TeX}nische {Kom{\"o}die} {\bf6}, 1994}", journal = j-TUGboat, volume = "18", number = "4", pages = "290--295", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-295, author = "Anonymous", title = "{Les Cahiers GUTenberg, Contents of Issues 26 and 27}", journal = j-TUGboat, volume = "18", number = "4", pages = "295--297", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Aphalo:TB18-4-297, author = "Pedro J. Aphalo", title = "{A proposal for citation commands in {\LaTeX 3}}", journal = j-TUGboat, volume = "18", number = "4", pages = "297--302", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57apha.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carlisle:TB18-4-303, author = "David Carlisle and Chris Rowley and Frank Mittelbach", title = "{The {\LaTeX3 Programming Language}\Dash a proposed system for {\TeX} macro programming}", journal = j-TUGboat, volume = "18", number = "4", pages = "303--308", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57rowl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB18-4-309, author = "Frank Mittelbach", title = "{A regression test suite for {\LaTeXe}}", journal = j-TUGboat, volume = "18", number = "4", pages = "309--311", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-312, author = "Anonymous", title = "{News from the {\LaTeX3} Project Team}", journal = j-TUGboat, volume = "18", number = "4", pages = "312--312", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/ltnews08.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-313, author = "Anonymous", title = "{A Week on Electronic Documents and Typography}", journal = j-TUGboat, volume = "18", number = "4", pages = "313--313", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/wept98.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-314, author = "Anonymous", title = "{TUG'98 Call for papers}", journal = j-TUGboat, volume = "18", number = "4", pages = "314--314", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tug98call.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-315, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "18", number = "4", pages = "315--316", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB18-4-316, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "18", number = "4", pages = "316--316", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-316, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "18", number = "4", pages = "316--316", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb18-4/tb57prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-317, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "18", number = "4", pages = "317--317", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-318, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "18", number = "4", pages = "318--318", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-319, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "18", number = "4", pages = "319--319", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-320, author = "Anonymous", title = "{{Y\&Y} Inc.}", journal = j-TUGboat, volume = "18", number = "4", pages = "320--320", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB18-4-cover3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "18", number = "4", pages = "Cover 3", month = dec, year = "1997", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "556", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "19", number = "1", pages = "3--3", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB19-1-4, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "19", number = "1", pages = "4--4", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb58pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB19-1-5, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "19", number = "1", pages = "5--5", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Radhakrishnan:TB19-1-6, author = "C. V. Radhakrishnan", title = "{A case for {\TeX} in India\Dash The Indian {\TeX} Users Group}", journal = j-TUGboat, volume = "19", number = "1", pages = "6--9", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58radh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB19-1-9, author = "Sebastian Rahtz", title = "{The inaugural meeting of TUG India}", journal = j-TUGboat, volume = "19", number = "1", pages = "9--11", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58raht.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Scherer:TB19-1-11, author = "Andreas Scherer", title = "{The future of AmiWeb2c}", journal = j-TUGboat, volume = "19", number = "1", pages = "11--12", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58sche.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB19-1-12, author = "Nelson H. F. Beebe", title = "{{\acro{AUTHIDX}: An author/editor indexing package}}", journal = j-TUGboat, volume = "19", number = "1", pages = "12--18", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58beeb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB19-1-19, author = "Sebastian Rahtz and Michel Goossens", title = "{The {\TeX} Live guide, 3rd edition}", journal = j-TUGboat, volume = "19", number = "1", pages = "19--60", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moore:TB19-1-61, author = "Ross Moore", title = "{Erratum: High quality labels on included graphics, using {\Xy-pic}, {\tubissue 18(3)}, pp. 151--158}", journal = j-TUGboat, volume = "19", number = "1", pages = "61--61", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Horn:TB19-1-62, author = "Berthold K. P. Horn", title = "{The European Modern fonts}", journal = j-TUGboat, volume = "19", number = "1", pages = "62--63", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58horn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB19-1-63, author = "Jeremy Gibbons", title = "{`Hey\Dash it works!'}", journal = j-TUGboat, volume = "19", number = "1", pages = "63--65", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58works.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB19-1-65, author = "Philip Taylor", title = "{Book design for {\TeX} users, Part 1: Theory}", journal = j-TUGboat, volume = "19", number = "1", pages = "65--74", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58tay1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-75, author = "Anonymous", title = "{Die {\TeX}nische {Kom{\"o}die} {\bf8} (1996, Heft 1--4)}", journal = j-TUGboat, volume = "19", number = "1", pages = "75--80", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-81, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "19", number = "1", pages = "81--82", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schroder:TB19-1-83, author = "Martin Schr{\"o}der", title = "{{\TeX} Merchandising\Dash an announcement}", journal = j-TUGboat, volume = "19", number = "1", pages = "83--83", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB19-1-82, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "19", number = "1", pages = "82--82", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-82, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "19", number = "1", pages = "82--82", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-84, author = "Anonymous", title = "{New members of the TUG Board}", journal = j-TUGboat, volume = "19", number = "1", pages = "84--85", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-1/tb58boar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-86, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "19", number = "1", pages = "86--86", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-87, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "19", number = "1", pages = "87--87", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-88, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "19", number = "1", pages = "88--88", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-1-82-2, author = "Anonymous", title = "Index of advertisers", journal = j-TUGboat, volume = "19", number = "1", pages = "82--82", month = mar, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "58", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-2-91, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "19", number = "2", pages = "91--91", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Jett:TB19-2-93, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "19", number = "2", pages = "93--93", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Pres/tb59pres.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Beeton:TB19-2-94, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "19", number = "2", pages = "94--94", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-95, author = "Anonymous", title = "{April Fool}'s Hoax", journal = j-TUGboat, volume = "19", number = "2", pages = "95--96", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59hoax.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-97, author = "Anonymous", title = "{{\CTAN} \acro{CDROM} series, compliments of \acro{DANTE}}", journal = j-TUGboat, volume = "19", number = "2", pages = "97--98", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59dant.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Flynn:TB19-2-98, author = "Peter Flynn", title = "Typographers' inn", journal = j-TUGboat, volume = "19", number = "2", pages = "98--100", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Girou:TB19-2-101, author = "Denis Girou", title = "{{\sf pst-fill}\Dash a PSTricks package for filling and tiling areas}", journal = j-TUGboat, volume = "19", number = "2", pages = "101--113", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59girou.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Doob:TB19-2-113, author = "Michael Doob", title = "{{\it {\TeX} Unbound}, by Alan Hoenig}", journal = j-TUGboat, volume = "19", number = "2", pages = "113--114", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59revh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Pandey:TB19-2-115, author = "Anshuman Pandey", title = "{An overview of Indic fonts for {\TeX}}", journal = j-TUGboat, volume = "19", number = "2", pages = "115--120", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59pand.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Bouche:TB19-2-120, author = "Thierry Bouche", title = "Diversity in math fonts", journal = j-TUGboat, volume = "19", number = "2", pages = "120--134", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59bouc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Gibbons:TB19-2-135, author = "Jeremy Gibbons", title = "{`Hey\Dash it works!'}", journal = j-TUGboat, volume = "19", number = "2", pages = "135--136", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59gibb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{LPT:TB19-2-137, author = "{{\LaTeX} Project Team}", title = "{Default docstrip headers}", journal = j-TUGboat, volume = "19", number = "2", pages = "137--138", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59ltdocstrip.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB19-2-139, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX} News, Issue 9, June 1998}", journal = j-TUGboat, volume = "19", number = "2", pages = "139--139", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-2-140, author = "Anonymous", title = "{Conference Program}", journal = j-TUGboat, volume = "19", number = "2", pages = "140--141", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Hogue:TB19-2-142, author = "Stephanie Hogue", title = "{Final report: {\TeX Northeast}}", journal = j-TUGboat, volume = "19", number = "2", pages = "142--143", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59hogue.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-144, author = "Anonymous", title = "{{\TeX Northeast}: Workshops and additional papers}", journal = j-TUGboat, volume = "19", number = "2", pages = "144--146", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59abs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Barnett:TB19-2-147, author = "Michael P. Barnett", title = "{{\sf mathscape}\Dash Combining Mathematica and {\TeX}}", journal = j-TUGboat, volume = "19", number = "2", pages = "147--156", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59barn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Sutor:TB19-2-157, author = "Robert S. Sutor and Samuel S. Dooley", title = "{{\TeX} and {\LaTeX} on the Web via IBM {\sf techexplorer}}", journal = j-TUGboat, volume = "19", number = "2", pages = "157--161", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59dool.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Hendrickson:TB19-2-162, author = "Amy Hendrickson", title = "{Real Life {\LaTeX}: Adventures of a {\TeX} consultant}", journal = j-TUGboat, volume = "19", number = "2", pages = "162--167", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59amy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Hoenig:TB19-2-168, author = "Alan J. Hoenig", title = "Typesetting with {\TeX} and {\LaTeX}", journal = j-TUGboat, volume = "19", number = "2", pages = "168--175", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Hoenig:TB19-2-176, author = "Alan J. Hoenig", title = "Alternatives to {Computer Modern} mathematics", journal = j-TUGboat, volume = "19", number = "2", pages = "176--187", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", } @Article{McArthur:TB19-2-188, author = "Jeffrey McArthur", title = "{Developing database publishing systems using {\TeX}}", journal = j-TUGboat, volume = "19", number = "2", pages = "188--194", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59mcar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moore:TB19-2-195, author = "Ross Moore", title = "{Presenting mathematics and languages in Web-pages, using {\LaTeX2\acro{HTML}}}", journal = j-TUGboat, volume = "19", number = "2", pages = "195--203", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Patashnik:TB19-2-204, author = "Oren Patashnik", title = "{{\BibTeX} 101}", journal = j-TUGboat, volume = "19", number = "2", pages = "204--207", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59patash.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Signell:TB19-2-208, author = "Peter Signell", title = "{One-document scientific publishing for print and Web/CD}", journal = j-TUGboat, volume = "19", number = "2", pages = "208--213", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59sign.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Sofka:TB19-2-214, author = "Michael D. Sofka", title = "{{\TeX} to \acro{HTML} translation via tagged \acro{DVI} files}", journal = j-TUGboat, volume = "19", number = "2", pages = "214--222", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59sofka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-223, author = "Anonymous", title = "{Les Cahiers GUTenberg, Contents of issue 28--29}", journal = j-TUGboat, volume = "19", number = "2", pages = "223--226", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-2-227, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "19", number = "2", pages = "227--227", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-92, author = "Anonymous", title = "{{TUG\,98} -- Torun, Poland, 17--21 August 1998, Preliminary program}", journal = j-TUGboat, volume = "19", number = "2", pages = "92--92", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tug98prog.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Hennings:TB19-2-231, author = "Wilfred Hennings", title = "{Volunteers needed for {\sf LaTeX2rtf} coordination and development}", journal = j-TUGboat, volume = "19", number = "2", pages = "231--231", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59henn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-229, author = "Anonymous", title = "{{\acro{TUG}'99 Announcement}}", journal = j-TUGboat, volume = "19", number = "2", pages = "229--229", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Burbank:TB19-2-228, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "19", number = "2", pages = "228--228", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-228, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "19", number = "2", pages = "228--228", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-2/tb59prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-230, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "19", number = "2", pages = "230--230", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-231, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "19", number = "2", pages = "231--231", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-232, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "19", number = "2", pages = "232--232", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", remark = "TeX NorthEast proceedings.", } @Article{Anonymous:TB19-2-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "19", number = "2", pages = "Cover 3", month = jun, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "59", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB19-3-234, author = "Barbara Beeton", title = "{{\acro{TUG} Election Notice}}", journal = j-TUGboat, volume = "19", number = "3", pages = "234--234", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Beeton:TB19-3-235, author = "Barbara Beeton", title = "{Editorial Comments\Dash A TUG\,'98 trip report}", journal = j-TUGboat, volume = "19", number = "3", pages = "235--236", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-237, author = "Anonymous", title = "{{\acro{TUG}'98 Attendees}}", journal = j-TUGboat, volume = "19", number = "3", pages = "237--238", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tub60pl1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Nickalls:TB19-3-239, author = "R. W. D. Nickalls", title = "{{\TeX} in the Operating Theatre: An anaesthesia application}", journal = j-TUGboat, volume = "19", number = "3", pages = "239--241", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60nick.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Nowacki:TB19-3-242, author = "Janusz M. Nowacki and Bogus{\l}aw Jackowski", title = "{Antykwa Toru{\'n}ska: An electronic replica of a Polish traditional type}", journal = j-TUGboat, volume = "19", number = "3", pages = "242--243", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60antyk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Kinch:TB19-3-244, author = "Richard J. Kinch", title = "{Belleek: A call for \MF{} revival}", journal = j-TUGboat, volume = "19", number = "3", pages = "244--249", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60kinch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Piska:TB19-3-250, author = "Karel P{\'\i}{\v{s}}ka", title = "{Georgian scripts}", journal = j-TUGboat, volume = "19", number = "3", pages = "250--255", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60pisk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Hoekwater:TB19-3-256, author = "Taco Hoekwater", title = "{Generating Type 1 fonts from \MF{} sources}", journal = j-TUGboat, volume = "19", number = "3", pages = "256--266", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/hoek1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Jackowski:TB19-3-267, author = "Bogus{\l}aw Jackowski and Piotr Pianowski and Piotr Strzelczyk", title = "{Threshing \acro{EPS} files}", journal = j-TUGboat, volume = "19", number = "3", pages = "267--271", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60jack.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Jackowski:TB19-3-272, author = "Bogus{\l}aw Jackowski and Piotr Pianowski and Piotr Strzelczyk", title = "{More \TeX-PostScript links}", journal = j-TUGboat, volume = "19", number = "3", pages = "272--275", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60jps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Bolek:TB19-3-276, author = "Piotr Bolek", title = "{{\MP{} and patterns}}", journal = j-TUGboat, volume = "19", number = "3", pages = "276--283", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60bolek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Thanh:TB19-3-284, author = "H{\`a}n Th{\^e}\llap{\raise0.5ex\hbox{\'{\relax}}} Th{\`a}nh", title = "{Improving \TeX's Typeset Layout}", journal = j-TUGboat, volume = "19", number = "3", pages = "284--288", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-3/tb60than.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taupin:TB19-3-289, author = "Daniel Taupin", title = "{{\tt ltx2rtf}: Exporting {\LaTeX} documents to Word addicts}", journal = j-TUGboat, volume = "19", number = "3", pages = "289--292", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60taup.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Bzyl:TB19-3-293, author = "W{\l}odek Bzyl", title = "{Adding native language support to the \acro{CWEB} package and the {\TeX} program}", journal = j-TUGboat, volume = "19", number = "3", pages = "293--297", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60bzyl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Wolinski:TB19-3-298, author = "Marcin Woli{\'n}ski", title = "{{{\sf Pretprin}\Dash a {\LaTeXe}} package for pretty-printing texts in formal languages}", journal = j-TUGboat, volume = "19", number = "3", pages = "298--303", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-3/tb60wolin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB19-3-304, author = "Hans Hagen", title = "{The Calculator Demo, {Integrating \TeX, \MP, JavaScript and \acro{PDF}}}", journal = j-TUGboat, volume = "19", number = "3", pages = "304--310", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/hagen1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Hagen:TB19-3-311, author = "Hans Hagen", title = "{Visual Debugging in \TeX, Part 1: The Story}", journal = j-TUGboat, volume = "19", number = "3", pages = "311--317", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/hagen2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Hagen:TB19-3-317, author = "Hans Hagen", title = "{Visual Debugging in \TeX, Part 2: The Macros}", journal = j-TUGboat, volume = "19", number = "3", pages = "317--317", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/hagen3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Skoupy:TB19-3-318, author = "Karel Skoup{\'y}", title = "{{\NTS: a New Typesetting System}}", journal = j-TUGboat, volume = "19", number = "3", pages = "318--322", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60nts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{NTGTFWG:TB19-3-323, author = "{\NTG{} {\TeX} future working group}", title = "{{\TeX} in 2003, Part I: Introduction and views on current work}", journal = j-TUGboat, volume = "19", number = "3", pages = "323--329", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-3/tb60nts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", } @Article{NTGTFWG:TB19-3-330, author = "{\NTG{} {\TeX} future working group}", title = "{{\TeX} in 2003, Part II: Proposal for a {\tt\char`\\special} standard}", journal = j-TUGboat, volume = "19", number = "3", pages = "330--337", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-3/tb60hoekII.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-3-338, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "19", number = "3", pages = "338--338", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-340, author = "Anonymous", title = "{{\acro{TUG}'99 Announcement}}", journal = j-TUGboat, volume = "19", number = "3", pages = "340--340", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/Tug99.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Burbank:TB19-3-339, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "19", number = "3", pages = "339--339", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-341, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "19", number = "3", pages = "341--341", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-342, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "19", number = "3", pages = "342--342", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-343, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "19", number = "3", pages = "343--343", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-339, author = "Anonymous", title = "{Hug The Lion!}", journal = j-TUGboat, volume = "19", number = "3", pages = "339--339", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", URL = "http://www.tug.org/TUGboat/tb19-3/tb60lion.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-344, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "19", number = "3", pages = "344--344", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1998/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1998 Proceedings (Torun).", } @Article{Anonymous:TB19-3-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "19", number = "3", pages = "Cover 3", month = sep, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "60", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-347, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "19", number = "4", pages = "347--348", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carlisle:TB19-4-348, author = "David Carlisle", title = "{A seasonal puzzle: XII}", journal = j-TUGboat, volume = "19", number = "4", pages = "348--348", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61carl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB19-4-349, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "19", number = "4", pages = "349--350", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61jett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB19-4-351, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "19", number = "4", pages = "351--352", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB19-4-353, author = "Peter Flynn", title = "Typographers' inn", journal = j-TUGboat, volume = "19", number = "4", pages = "353--355", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Misakova:TB19-4-355, author = "Miroslava Mis{\'a}kov{\'a}", title = "{Typesetting with varying letter widths: New hope for your narrow columns}", journal = j-TUGboat, volume = "19", number = "4", pages = "355--365", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61misa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB19-4-366, author = "Barbara Beeton", title = "{{Editorial: Enc{\TeX}, by Petr Ol{\v{s}}{\'a}k}}", journal = j-TUGboat, volume = "19", number = "4", pages = "366--366", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61olsa-pre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Olsak:TB19-4-366, author = "Petr Ol{\v{s}}{\'a}k", title = "{{Enc{\TeX}\Dash A little extension of {\TeX}}}", journal = j-TUGboat, volume = "19", number = "4", pages = "366--371", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61olsa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Finston:TB19-4-372, author = "Laurence Finston", title = "{Conc{\TeX}: Generating a concordance from {\TeX} input files}", journal = j-TUGboat, volume = "19", number = "4", pages = "372--403", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61fins.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berdnikov:TB19-4-403, author = "A. Berdnikov and O. Lapko and M. Kolodin and A. Janishevsky and A. Burykin", title = "{Cyrillic} encodings for {\LaTeXe} multi-language documents", journal = j-TUGboat, volume = "19", number = "4", pages = "403--416", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61berd.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pandey:TB19-4-417, author = "Anshuman Pandey", title = "{{Romanized Indic and \LaTeX{}}}", journal = j-TUGboat, volume = "19", number = "4", pages = "417--418", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61pand.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB19-4-419, author = "Claudio Beccari and Apostolos Syropoulos", title = "{New Greek fonts and the {\tt greek} option of the {\sf babel} package}", journal = j-TUGboat, volume = "19", number = "4", pages = "419--425", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB19-4-426, author = "Jeremy Gibbons", title = "{`Hey\Dash it works!'}", journal = j-TUGboat, volume = "19", number = "4", pages = "426--427", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61gibb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB19-4-428, author = "Christina Thiele", title = "{{The Treasure Chest: A package tour from \acro{CTAN}\Dash {\tt soul.sty}}}", journal = j-TUGboat, volume = "19", number = "4", pages = "428--430", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61soul.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-431, author = "Anonymous", title = "{Les Cahiers GUTenberg, Contents of issue 30}", journal = j-TUGboat, volume = "19", number = "4", pages = "431--431", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-433, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "19", number = "4", pages = "433--433", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-434, author = "Anonymous", title = "{{\acro{TUG}'99 Announcement}}", journal = j-TUGboat, volume = "19", number = "4", pages = "434--436", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/tug99/tug99.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB19-4-432, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "19", number = "4", pages = "432--432", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-432, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "19", number = "4", pages = "432--432", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb19-4/tb61prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-437, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "19", number = "4", pages = "437--437", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-438, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "19", number = "4", pages = "438--438", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-439, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "19", number = "4", pages = "439--439", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-440, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "19", number = "4", pages = "440--440", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB19-4-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "19", number = "4", pages = "Cover 3", month = dec, year = "1998", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "61", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "20", number = "1", pages = "3--3", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rose:TB20-1-5, author = "Kristoffer Rose", title = "From the {Vice-President}", journal = j-TUGboat, volume = "20", number = "1", pages = "5--5", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62rose.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB20-1-6, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "20", number = "1", pages = "6--7", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Andre:TB20-1-8, author = "Jacques Andr{\'e} and Denis Girou", title = "{Father Truchet, the typographic point, the {\it Romain du roi}, and tilings}", journal = j-TUGboat, volume = "20", number = "1", pages = "8--14", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62andr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Toledo:TB20-1-15, author = "Sivan Toledo", title = "{A simple technique for typesetting Hebrew with vowel points}", journal = j-TUGboat, volume = "20", number = "1", pages = "15--19", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62tole.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rahtz:TB20-1-20, author = "Sebastian Rahtz", title = "{The {\TeX} Live Guide, \nth{4} edition}", journal = j-TUGboat, volume = "20", number = "1", pages = "20--44", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB20-1-45, author = "Barbara Beeton", title = "{{\TeX} and the Year 2000}", journal = j-TUGboat, volume = "20", number = "1", pages = "45--50", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62y2k.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB20-1-50, author = "Barbara Beeton", title = "{Hyphenation Exception Log\Dash Update}", journal = j-TUGboat, volume = "20", number = "1", pages = "50--51", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/Hyphen/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB20-1-52, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX} News, Issue 10, December 1998}", journal = j-TUGboat, volume = "20", number = "1", pages = "52--52", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB20-1-53, author = "Christina Thiele", title = "{{The Treasure Chest: Package tours from \acro{CTAN}}}", journal = j-TUGboat, volume = "20", number = "1", pages = "53--58", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-59, author = "Anonymous", title = "{{Die {\TeX}nische Kom{\"o}die} {\bf9} (1997, Heft 1--4)}", journal = j-TUGboat, volume = "20", number = "1", pages = "59--64", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb20-1komoedie.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-65, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "20", number = "1", pages = "65--66", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb20-1calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-67, author = "Anonymous", title = "{{\acro{TUG}'99 Announcement}}", journal = j-TUGboat, volume = "20", number = "1", pages = "67--69", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62sched.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-4, author = "Anonymous", title = "{{\acro{TUG}'99 Poetry Contest}}", journal = j-TUGboat, volume = "20", number = "1", pages = "4--4", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62poet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB20-1-70, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "20", number = "1", pages = "70--70", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-70, author = "Anonymous", title = "{{\TUB{} web pages}}", journal = j-TUGboat, volume = "20", number = "1", pages = "70--70", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-70-2, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "20", number = "1", pages = "70--70", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB20-1-71, author = "Christina Thiele and Arthur Ogawa", title = "{Report: TUG 1999 Election}", journal = j-TUGboat, volume = "20", number = "1", pages = "71--71", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-1/tb62boar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-71, author = "Anonymous", title = "{Members of the TUG Board with terms ending in 2003}", journal = j-TUGboat, volume = "20", number = "1", pages = "71--76", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-76, author = "Anonymous", title = "Position of {President}", journal = j-TUGboat, volume = "20", number = "1", pages = "76--76", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-77, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "20", number = "1", pages = "77--77", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-78, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "20", number = "1", pages = "78--78", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-79, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "20", number = "1", pages = "79--79", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-80, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "20", number = "1", pages = "80--80", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-1-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "20", number = "1", pages = "Cover 3", month = mar, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "62", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-83, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "20", number = "2", pages = "83--84", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB20-2-85, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "20", number = "2", pages = "85--86", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB20-2-86, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "20", number = "2", pages = "86--87", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Childs:TB20-2-87, author = "Bart Childs", title = "{Norman W. Naugle\dash A Remembrance}", journal = j-TUGboat, volume = "20", number = "2", pages = "87--88", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63naugle.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Langmyhr:TB20-2-89, author = "Dag Langmyhr", title = "{Roswitha von den Schulenburg Graham}", journal = j-TUGboat, volume = "20", number = "2", pages = "89--89", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63roswitha.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB20-2-89, author = "Mimi Burbank", title = "{You meet the nicest people \dots\ Father Everett Larguier}", journal = j-TUGboat, volume = "20", number = "2", pages = "89--90", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63larg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gaulle:TB20-2-91, author = "Bernard Gaulle", title = "{{The {\tt french} package on and off \CTAN}}", journal = j-TUGboat, volume = "20", number = "2", pages = "91--92", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63gaul.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-92, author = "Anonymous", title = "{Response from the {\CTAN} team}", journal = j-TUGboat, volume = "20", number = "2", pages = "92--92", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63gaul.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB20-2-92, author = "Barbara Beeton", title = "Editor's commentary", journal = j-TUGboat, volume = "20", number = "2", pages = "92--92", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63gaul.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB20-2-93, author = "Jonathan Fine", title = "{The good name of \TeX}", journal = j-TUGboat, volume = "20", number = "2", pages = "93--93", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Olsak:TB20-2-93, author = "Petr Ol{\v{s}}ak", title = "Reply", journal = j-TUGboat, volume = "20", number = "2", pages = "93--93", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63lett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB20-2-94, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "20", number = "2", pages = "94--95", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gelderman:TB20-2-96, author = "Maarten Gelderman", title = "A short introduction to font characteristics", journal = j-TUGboat, volume = "20", number = "2", pages = "96--104", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63geld.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB20-2-104, author = "Bogus{\l}aw Jackowski", title = "{{\MF: Practical and impractical applications}}", journal = j-TUGboat, volume = "20", number = "2", pages = "104--119", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63jack.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pandey:TB20-2-119, author = "Anshuman Pandey", title = "{Typesetting Bengali in \TeX}", journal = j-TUGboat, volume = "20", number = "2", pages = "119--126", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63pand.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoppner:TB20-2-127, author = "Klaus H{\"o}ppner", title = "{The {\sl CTAN May 1999} \acro{CD ROM} set by \acro{DANTE} e.V. and Lehmanns bookstore}", journal = j-TUGboat, volume = "20", number = "2", pages = "127--127", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63cd.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dobbelsteen:TB20-2-128, author = "Gilbert van den Dobbelsteen", title = "{{Interacting pdf{\TeX}, \acro{PERL} and \CONTEXT}}", journal = j-TUGboat, volume = "20", number = "2", pages = "128--133", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63dobb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tolksdorf:TB20-2-134, author = "Robert Tolksdorf", title = "{{\NetBibTeX{}ing}}", journal = j-TUGboat, volume = "20", number = "2", pages = "134--140", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63tolk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB20-2-141, author = "Jeremy Gibbons", title = "Hey --- it works!", journal = j-TUGboat, volume = "20", number = "2", pages = "141--142", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63gibb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-143, author = "Anonymous", title = "{{\sl Les Cahiers GUTenberg}, Contents of Issues 31 (December 1998) and 32 (May 1999)}", journal = j-TUGboat, volume = "20", number = "2", pages = "143--145", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-146, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "20", number = "2", pages = "146--147", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB20-2-147, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "20", number = "2", pages = "147--147", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-147, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "20", number = "2", pages = "147--147", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Preston:TB20-2-140, author = "Roy Preston", title = "Monk-ey business", journal = j-TUGboat, volume = "20", number = "2", pages = "140--140", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/versal.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-148, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "20", number = "2", pages = "148--148", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63instmem.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-150, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "20", number = "2", pages = "150--150", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-149, author = "Anonymous", title = "{Cambridge University Press}", journal = j-TUGboat, volume = "20", number = "2", pages = "149--149", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-2/tb63consult.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-151, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "20", number = "2", pages = "151--151", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-152, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "20", number = "2", pages = "152--152", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-2-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "20", number = "2", pages = "Cover 3", month = jun, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "63", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB20-3-155, author = "Christina Thiele", title = "{Vancouver in August}", journal = j-TUGboat, volume = "20", number = "3", pages = "155--159", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64edch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-160, author = "Anonymous", title = "{TUG\,'99 Program}", journal = j-TUGboat, volume = "20", number = "3", pages = "160--161", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tug99sched.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Fulling:TB20-3-162, author = "Stephen A. Fulling", title = "{{\ninesmc Keynote}: {\TeX} and the Web in the higher education of the future: Dreams and difficulties}", journal = j-TUGboat, volume = "20", number = "3", pages = "162--166", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64full.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Ion:TB20-3-167, author = "Patrick D. F. Ion", title = "{Math\acro{ML}: A key to math on the Web}", journal = j-TUGboat, volume = "20", number = "3", pages = "167--175", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64ion.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Lovell:TB20-3-176, author = "Douglas Lovell", title = "{{\TeXML: Typesetting {\XML} with \TeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "176--183", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64love.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Topping:TB20-3-184, author = "Paul Topping", title = "{Using {\ssf MathType} to create {\TeX} and Math\acro{ML} equations}", journal = j-TUGboat, volume = "20", number = "3", pages = "184--188", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64topp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Rowley:TB20-3-189, author = "Chris Rowley", title = "{Models and languages for formatted documents}", journal = j-TUGboat, volume = "20", number = "3", pages = "189--195", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64rowl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Story:TB20-3-196, author = "D. P. Story", title = "{Acro\TeX: Acrobat and {\TeX} team up}", journal = j-TUGboat, volume = "20", number = "3", pages = "196--201", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64story.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Doumont:TB20-3-202, author = "Jean-luc Doumont", title = "{Doing it my way: A lone {\TeX}er in the real world}", journal = j-TUGboat, volume = "20", number = "3", pages = "202--207", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64douma.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Flynn:TB20-3-208, author = "Peter Flynn", title = "The {{\ssf vulcan}} package: {A} repair patch for {\LaTeX}", journal = j-TUGboat, volume = "20", number = "3", pages = "208--213", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Carlisle:TB20-3-214, author = "David Carlisle and Frank Mittelbach and Chris Rowley", title = "{New interfaces for {\LaTeX} class design, Parts I and II}", journal = j-TUGboat, volume = "20", number = "3", pages = "214--216", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64carl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Bazargan:TB20-3-217, author = "Kaveh Bazargan", title = "{Multi-use documents: The role of the publisher}", journal = j-TUGboat, volume = "20", number = "3", pages = "217--220", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64kaveh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Bartlett:TB20-3-221, author = "Frederick H. Bartlett", title = "{{Very like a nail: Typesetting \acro{SGML} with \TeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "221--221", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64bart.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Payne:TB20-3-222, author = "Harry Payne", title = "{Making a book from contributed papers: Print and Web versions}", journal = j-TUGboat, volume = "20", number = "3", pages = "222--226", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64payne.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Kruse:TB20-3-227, author = "Robert L. Kruse", title = "{Managing large projects with \PreTeX: A preprocessor for \TeX}", journal = j-TUGboat, volume = "20", number = "3", pages = "227--230", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64kruse.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Ogawa:TB20-3-231, author = "Arthur Ogawa", title = "{{Database publishing with {\Java} and \TeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "231--231", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64ogawa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Mailhot:TB20-3-232, author = "Paul A. Mailhot", title = "{{Implementing dynamic cross-referencing and \acro{PDF} with \PreTeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "232--236", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64mail.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Wang:TB20-3-237, author = "Hu Wang", title = "{A Web-based submission system for meeting abstracts}", journal = j-TUGboat, volume = "20", number = "3", pages = "237--240", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64wang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Sojka:TB20-3-241, author = "Petr Sojka", title = "{Hyphenation on demand}", journal = j-TUGboat, volume = "20", number = "3", pages = "241--247", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64sojka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Fine:TB20-3-248, author = "Jonathan Fine", title = "{Active {\TeX} and the \acro{DOT} input syntax}", journal = j-TUGboat, volume = "20", number = "3", pages = "248--254", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Doumont:TB20-3-255, author = "Jean-luc Doumont", title = "{Drawing effective (and beautiful) graphs with \TeX}", journal = j-TUGboat, volume = "20", number = "3", pages = "255--261", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64doumB.ps", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{McKay:TB20-3-262, author = "Wendy McKay and Ross Moore", title = "{Convenient labelling of graphics, the {\WARMreader} way}", journal = j-TUGboat, volume = "20", number = "3", pages = "262--271", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-3/tb64ross.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lesenko:TB20-3-272, author = "Sergey Lesenko and Laurent Siebenmann", title = "{{Viewing \acro{DVI} files with Acrobat Reader: \acro{DVIPDF} gives birth to Acro\acro{DVI}}}", journal = j-TUGboat, volume = "20", number = "3", pages = "272--281", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-3/tb64lesen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoenig:TB20-3-282, author = "Alan Hoenig", title = "{{\it MathKit\/}: Alternatives to Computer Modern Mathematics}", journal = j-TUGboat, volume = "20", number = "3", pages = "282--289", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Popineau:TB20-3-290, author = "Fabrice Popineau", title = "{fp{\TeX}: A te\TeX-based distribution for Windows}", journal = j-TUGboat, volume = "20", number = "3", pages = "290--297", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64popin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{McArthur:TB20-3-298, author = "Jeffrey McArthur", title = "{Managing {\TeX} software development projects}", journal = j-TUGboat, volume = "20", number = "3", pages = "298--306", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-3/tb64mcar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Murphy:TB20-3-307, author = "Timothy Murphy", title = "{{{\Java} and \TeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "307--312", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64murph.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Thiele:TB20-3-313, author = "Christina Thiele", title = "{Barbara N. Beeton: \acro{TUG} Board member for 20 years}", journal = j-TUGboat, volume = "20", number = "3", pages = "313--315", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64bb20.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Thiele:TB20-3-316, author = "Christina Thiele", title = "{Text of \,{\rm The Apocalypse\/} as graphics, by Prof. Alban Grimm}", journal = j-TUGboat, volume = "20", number = "3", pages = "316--316", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64exhib.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Grimm:TB20-3-317, author = "Alban Grimm", title = "{Text of \,{\rm The Apocalypse\/} as graphics}", journal = j-TUGboat, volume = "20", number = "3", pages = "317--319", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64grimm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Gurari:TB20-3-320, author = "Eitan Gurari and Sebastian Rahtz", title = "{{{\LaTeX} to {\XML}/Math\acro{ML}}}", journal = j-TUGboat, volume = "20", number = "3", pages = "320--320", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-3/tb64worka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Story:TB20-3-321, author = "D. P. Story", title = "{{How to create quality interactive \acro{PDF} documents for the \acro{WWW} using \LaTeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "321--321", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64workb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Doob:TB20-3-322, author = "Michael Doob", title = "{Writing class files: First steps}", journal = j-TUGboat, volume = "20", number = "3", pages = "322--322", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64workc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Hoover:TB20-3-323, author = "Anita Hoover", title = "{Converting a {\LaTeX} 2.09 style to a {\LaTeXe} class}", journal = j-TUGboat, volume = "20", number = "3", pages = "323--323", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64workd.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Fulling:TB20-3-324, author = "Stephen A. Fulling", title = "{{\TeX} and math on the Web}", journal = j-TUGboat, volume = "20", number = "3", pages = "324--324", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64panla.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Bazargan:TB20-3-325, author = "Kaveh Bazargan", title = "{{\TeX} in publishing}", journal = j-TUGboat, volume = "20", number = "3", pages = "325--325", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64panlb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Ogawa:TB20-3-326, author = "Arthur Ogawa", title = "{The Future of \LaTeX}", journal = j-TUGboat, volume = "20", number = "3", pages = "326--326", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64panlc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-329, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "20", number = "3", pages = "329--330", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-154, author = "Anonymous", title = "{TUG2000\Dash The \nth{21} Annual Conference}", journal = j-TUGboat, volume = "20", number = "3", pages = "154--154", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/flier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-331, author = "Anonymous", title = "{{\acro{GUT}enberg\,2000\Dash{\LaTeX} and {\XML}: Cooperating with the Internet}}", journal = j-TUGboat, volume = "20", number = "3", pages = "331--331", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/tb64gut00.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Preston:TB20-3-330, author = "Roy Preston", title = "{An Analogy with Web Sites}", journal = j-TUGboat, volume = "20", number = "3", pages = "330--330", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/web2.gif", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-327, author = "Anonymous", title = "{{\acro{TUG}\,'99 Attendees}}", journal = j-TUGboat, volume = "20", number = "3", pages = "327--328", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", URL = "http://www.tug.org/TUGboat/tb20-3/participants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-332, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "20", number = "3", pages = "332--332", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-333, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "20", number = "3", pages = "333--333", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-334, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "20", number = "3", pages = "334--334", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-335, author = "Anonymous", title = "{Cambridge University Press}", journal = j-TUGboat, volume = "20", number = "3", pages = "335--335", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-336, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "20", number = "3", pages = "336--336", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug1999/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 1999 Proceedings (Vancouver).", } @Article{Anonymous:TB20-3-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "20", number = "3", pages = "Cover 3", month = sep, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "64", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-339, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "20", number = "4", pages = "339--340", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB20-4-341, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "20", number = "4", pages = "341--341", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65jett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB20-4-342, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "20", number = "4", pages = "342--343", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB20-4-344, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "20", number = "4", pages = "344--347", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65flyn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Koutny:TB20-4-347, author = "Vladim{\'\i}r Koutn{\'y}", title = "{TrueType fonts in \TeX}", journal = j-TUGboat, volume = "20", number = "4", pages = "347--348", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65kout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zyka:TB20-4-348, author = "V{\'\i}t Z{\'y}ka", title = "The semaphore alphabet", journal = j-TUGboat, volume = "20", number = "4", pages = "348--350", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65zyka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Travis:TB20-4-350, author = "Brian E. Travis", title = "{{The Paper Path: \acro{XML} to paper using \TeX\acro{ML}}}", journal = j-TUGboat, volume = "20", number = "4", pages = "350--356", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65trav.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Strokov:TB20-4-356, author = "Igor I. Strokov", title = "{A \acro{WYSIWYG} {\TeX} implementation}", journal = j-TUGboat, volume = "20", number = "4", pages = "356--359", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65strok.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Casselman:TB20-4-359, author = "Bill Casselman", title = "{{\it The {\LaTeX} Graphics Companion\/} and {\it {\TeX} Unbound}\Dash A review of two books}", journal = j-TUGboat, volume = "20", number = "4", pages = "359--364", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB20-4-364, author = "Peter Flynn", title = "{{\it Digital Typography}, by Donald Knuth}", journal = j-TUGboat, volume = "20", number = "4", pages = "364--366", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB20-4-366, author = "Jonathan Fine", title = "{The good name of {\TeX} (\tubissue 20(2), p. 93)}", journal = j-TUGboat, volume = "20", number = "4", pages = "366--366", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65errat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB20-4-366, author = "Christina Thiele", title = "{{\acro{TUG}\,99 (\tubissue 20(3))}}", journal = j-TUGboat, volume = "20", number = "4", pages = "366--366", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65errat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB20-4-367, author = "Jim Hefferon", title = "{A {\CTAN} search page}", journal = j-TUGboat, volume = "20", number = "4", pages = "367--367", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB20-4-367, author = "Jeremy Gibbons", title = "Hey --- it works!", journal = j-TUGboat, volume = "20", number = "4", pages = "367--370", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65gibb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB20-4-370, author = "Christina Thiele", title = "The treasure chest", journal = j-TUGboat, volume = "20", number = "4", pages = "370--374", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB20-4-375, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX} News, Issue 12, December 1999}", journal = j-TUGboat, volume = "20", number = "4", pages = "375--375", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/ltnews12.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Shawyer:TB20-4-376, author = "Bruce Shawyer", title = "{Scaled pictures in \LaTeX}", journal = j-TUGboat, volume = "20", number = "4", pages = "376--377", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65shaw.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Taylor:TB20-4-378, author = "Philip Taylor", title = "{Book design for {\TeX} users: Part 2: Practice}", journal = j-TUGboat, volume = "20", number = "4", pages = "378--389", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65tay2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moore:TB20-4-389, author = "Ross Moore", title = "{Preparation of documents for multiple modes of delivery\Dash Notes from TUG'99}", journal = j-TUGboat, volume = "20", number = "4", pages = "389--394", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tb65moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-394, author = "Anonymous", title = "{{\sl Les Cahiers GUTenberg}, Contents of double issue 33/34 (November 1999)}", journal = j-TUGboat, volume = "20", number = "4", pages = "394--395", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-395, author = "Anonymous", title = "{Euro\TeX\,'99 Proceedings\Dash Paperless \TeX}", journal = j-TUGboat, volume = "20", number = "4", pages = "395--398", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-399, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "20", number = "4", pages = "399--400", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-401, author = "Anonymous", title = "{TUG\,2000\Dash The \nth{21} Annual Conference}", journal = j-TUGboat, volume = "20", number = "4", pages = "401--401", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/tug2000.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB20-4-400, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "20", number = "4", pages = "400--400", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/freefonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-400, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "20", number = "4", pages = "400--400", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/freefonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Preston:TB20-4-340, author = "Roy Preston", title = "Download free fonts!", journal = j-TUGboat, volume = "20", number = "4", pages = "340--340", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb20-4/freefonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-402, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "20", number = "4", pages = "402--402", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-403, author = "Anonymous", title = "Statement of ownership", journal = j-TUGboat, volume = "20", number = "4", pages = "403--403", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-403-2, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "20", number = "4", pages = "403--403", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-404, author = "Anonymous", title = "{Y\&Y Inc.}", journal = j-TUGboat, volume = "20", number = "4", pages = "404--404", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB20-4-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "20", number = "4", pages = "Cover 3", month = dec, year = "1999", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "65", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "21", number = "1", pages = "3--3", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB21-1-5, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "21", number = "1", pages = "5--5", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66jett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB21-1-6, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "21", number = "1", pages = "6--6", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fujita:TB21-1-7, author = "Shinsaku Fujita and Nobuya Tanaka", title = "{{\XyMTeX (Version 2.00) as implementation of the \XyM{} notation and the \XyM{} markup language}}", journal = j-TUGboat, volume = "21", number = "1", pages = "7--14", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66fuji.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB21-1-15, author = "Jim Hefferon", title = "{The {\TUG} {\CTAN} site makes a move}", journal = j-TUGboat, volume = "21", number = "1", pages = "15--15", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{TT:TB21-1-16, author = "{The \TUB{} Team}", title = "{{\TeXLive{} 5 and the {\TeX} Catalogue}}", journal = j-TUGboat, volume = "21", number = "1", pages = "16--16", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66cd.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-17, author = "Anonymous", title = "{Graham Williams' {\TeX} Catalogue}", journal = j-TUGboat, volume = "21", number = "1", pages = "17--90", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66catal.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-xx, author = "Anonymous", title = "{Supplement: {\TeXLive} 5 CD}", journal = j-TUGboat, volume = "21", number = "1", pages = "??--??", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB21-1-91, author = "Victor Eijkhout", title = "{The bag of tricks}", journal = j-TUGboat, volume = "21", number = "1", pages = "91--91", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66eijk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-92, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "21", number = "1", pages = "92--92", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-4, author = "Anonymous", title = "{TUG2000\Dash The \nth{21} Annual Conference}", journal = j-TUGboat, volume = "21", number = "1", pages = "4--4", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tug2000.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB21-1-93, author = "Mimi Burbank", title = "Production notes", journal = j-TUGboat, volume = "21", number = "1", pages = "93--93", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-93, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "21", number = "1", pages = "93--93", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/tb66prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-94, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "21", number = "1", pages = "94--94", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-95, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "21", number = "1", pages = "95--95", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Farley:TB21-1-15, author = "David Farley", title = "{Don Knuth finally sells out}", journal = j-TUGboat, volume = "21", number = "1", pages = "15--15", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-1/knuth-cartoon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-96, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "21", number = "1", pages = "96--96", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-1-Cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "21", number = "1", pages = "Cover 3", month = mar, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "66", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-99, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "21", number = "2", pages = "99--99", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB21-2-101, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "21", number = "2", pages = "101--101", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67jett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB21-2-102, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "21", number = "2", pages = "102--103", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Levien:TB21-2-103, author = "Advogato (Raph Levien)", title = "Interview: {Donald E. Knuth}", journal = j-TUGboat, volume = "21", number = "2", pages = "103--110", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67advo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gratzer:TB21-2-111, author = "G. Gr{\"a}tzer", title = "Turbulent transition", journal = j-TUGboat, volume = "21", number = "2", pages = "111--113", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67grat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lemberg:TB21-2-113, author = "Werner Lemberg", title = "{Thai} fonts", journal = j-TUGboat, volume = "21", number = "2", pages = "113--120", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67lemb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Toledo:TB21-2-121, author = "Sivan Toledo", title = "Exploiting rich fonts", journal = j-TUGboat, volume = "21", number = "2", pages = "121--129", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67tole.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berdnikov:TB21-2-129, author = "Alexander Berdnikov and Hans Hagen and Taco Hoekwater and Bogus{\l}aw Jackowski", title = "{Even more MetaFun with \MP: A request for permission}", journal = j-TUGboat, volume = "21", number = "2", pages = "129--130", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67metafun.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hobby:TB21-2-131, author = "John D. Hobby", title = "{Extending \MP: Response to ``Even more MetaFun''}", journal = j-TUGboat, volume = "21", number = "2", pages = "131--132", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67metafun.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB21-2-132, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "21", number = "2", pages = "132--133", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/hyphen", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gibbons:TB21-2-133, author = "Jeremy Gibbons", title = "{Hey --- it works!}", journal = j-TUGboat, volume = "21", number = "2", pages = "133--135", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67gibb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB21-2-136, author = "Christina Thiele", title = "{The treasure chest}", journal = j-TUGboat, volume = "21", number = "2", pages = "136--142", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB21-2-143, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX} News, Issue 13, June 2000}", journal = j-TUGboat, volume = "21", number = "2", pages = "143--143", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-144, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "21", number = "2", pages = "144--145", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-148, author = "Anonymous", title = "{TUG2000\Dash The \nth{21} Annual Conference}", journal = j-TUGboat, volume = "21", number = "2", pages = "148--148", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tug2000.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB21-2-146, author = "Mimi Burbank", title = "{Production notes}", journal = j-TUGboat, volume = "21", number = "2", pages = "146--146", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-146, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "21", number = "2", pages = "146--146", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Preston:TB21-2-100, author = "Roy Preston", title = "Font identification", journal = j-TUGboat, volume = "21", number = "2", pages = "100--100", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/cartoon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeLand:TB21-2-145, author = "Donald DeLand", title = "{Report from the TUG Treasurer}", journal = j-TUGboat, volume = "21", number = "2", pages = "145--146", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-147, author = "Anonymous", title = "{2001 {\TeX} Users Group election}", journal = j-TUGboat, volume = "21", number = "2", pages = "147--147", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-2/tb67elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-149, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "21", number = "2", pages = "149--149", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-150, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "21", number = "2", pages = "150--150", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-151, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "21", number = "2", pages = "151--151", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-152, author = "Anonymous", title = "{{IBM {\sf techexplorer}}}", journal = j-TUGboat, volume = "21", number = "2", pages = "152--152", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "21", number = "2", pages = "Cover 3", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-2-, author = "Anonymous", title = "{{\CTAN\ \acro{CD}s: A 3-disk collection}}", journal = j-TUGboat, volume = "21", number = "2", pages = "{}", month = jun, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "67", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fairbairns:TB21-3-155, author = "Robin Fairbairns", title = "{Editorial Comments\Dash TUG\,'2000}", journal = j-TUGboat, volume = "21", number = "3", pages = "155--156", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68fair.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-157, author = "Anonymous", title = "{TUG\,'2000 Program}", journal = j-TUGboat, volume = "21", number = "3", pages = "157--158", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68prog.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Bayart:TB21-3-159, author = "Benjamin Bayart", title = "{The description language chosen for {\FDNTeX}}", journal = j-TUGboat, volume = "21", number = "3", pages = "159--175", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68bay.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Beeton:TB21-3-176, author = "Barbara Beeton", title = "{Unicode and math, a combination whose time has come\Dash Finally!}", journal = j-TUGboat, volume = "21", number = "3", pages = "176--185", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Berdnikov:TB21-3-186, author = "Alexander Berdnikov and Yury Yarmola and Olga Lapko and Andrew Janishewsky", title = "{{Some experience in converting LH Fonts from {\MF} to Type1 format {\Abstract}}}", journal = j-TUGboat, volume = "21", number = "3", pages = "186--186", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68berd2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Bzyl:TB21-3-187, author = "W{\l}odek Bzyl", title = "{Typesetting {\TeX} documents containing computer code}", journal = j-TUGboat, volume = "21", number = "3", pages = "187--192", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68bzyl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Carlisle:TB21-3-193, author = "David Carlisle", title = "{\smc xmltex}: {A} non validating (and not 100\% conforming) namespace aware {{\XML}} parser implemented in {\TeX}", journal = j-TUGboat, volume = "21", number = "3", pages = "193--199", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Tue Nov 29 17:09:39 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68carl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{DeLand:TB21-3-200, author = "Donald DeLand", title = "{{Developing interactive, Web-based courseware {\Abstract}}}", journal = j-TUGboat, volume = "21", number = "3", pages = "200--200", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68dela.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Downes:TB21-3-201, author = "Michael Downes", title = "{The {\tt amsrefs} {\LaTeX} package and the {\tt amsxport} {\BibTeX} style}", journal = j-TUGboat, volume = "21", number = "3", pages = "201--209", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68down.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Fine:TB21-3-210, author = "Jonathan Fine", title = "Line breaking and page breaking", journal = j-TUGboat, volume = "21", number = "3", pages = "210--221", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Goossens:TB21-3-222, author = "Michel Goossens and Sebastian Rahtz", title = "{{Passive\TeX}: from {\XML} to {\PDF}}", journal = j-TUGboat, volume = "21", number = "3", pages = "222--234", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68goos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Gostanza:TB21-3-235, author = "Pedro Palao Gostanza", title = "{Fast scanners and self-parsing in {\TeX}}", journal = j-TUGboat, volume = "21", number = "3", pages = "235--242", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68gost.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Kakugawa:TB21-3-243, author = "Hirotsugu Kakugawa", title = "{A device-independent \acro{DVI} interpreter library for various output devices}", journal = j-TUGboat, volume = "21", number = "3", pages = "243--249", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68kaku.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Kolodin:TB21-3-250, author = "M. Y. Kolodin and O. V. Eterevksy and O. G. Lapko and I. A. Makhovaya", title = "{``Russian style'' with {\LaTeX} and {\ssf babel}: what does it look like and how does it work {\Abstract}}", journal = j-TUGboat, volume = "21", number = "3", pages = "250--250", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68kolo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Kostin:TB21-3-251, author = "Alex Kostin and Michael Vulis", title = "{Mixing {\TeX} \& PostScript: The {\GeX} model}", journal = j-TUGboat, volume = "21", number = "3", pages = "251--264", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68kost.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Lavaud:TB21-3-265, author = "Michel Lavaud", title = "{{The {As\TeX} Assistant and Navigator {\Abstract}}}", journal = j-TUGboat, volume = "21", number = "3", pages = "265--265", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68lava.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Lipkin:TB21-3-266, author = "Bernice Sacks Lipkin", title = "{{\LaTeX} and the personal database}", journal = j-TUGboat, volume = "21", number = "3", pages = "266--277", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68lipk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Mittelbach:TB21-3-278, author = "Frank Mittelbach", title = "{{Formatting documents with floats: A new algorithm for {\LaTeXe}}}", journal = j-TUGboat, volume = "21", number = "3", pages = "278--290", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68mittel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Murphy:TB21-3-291, author = "Timothy Murphy", title = "{{The Penrose notation: a {\LaTeX} challenge {\Abstract}}}", journal = j-TUGboat, volume = "21", number = "3", pages = "291--291", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68murp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Syropoulos:TB21-3-292, author = "Apostolos Syropoulos and Richard W. D. Nickalls", title = "{A Perl port of the {\mathsPIC} graphics package}", journal = j-TUGboat, volume = "21", number = "3", pages = "292--297", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68syro.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Nikulina:TB21-3-298, author = "Marina Yu. Nikulina and Alexander S. Berdnikov", title = "Chess macros for chess games and puzzles", journal = j-TUGboat, volume = "21", number = "3", pages = "298--302", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68niku.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Plaice:TB21-3-303, author = "John Plaice", title = "{Omega version 2 {\Abstract}}", journal = j-TUGboat, volume = "21", number = "3", pages = "303--303", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68plai.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Taylor:TB21-3-304, author = "Philip Taylor and Ji{\v{r}}{\'\i} Zlatu{\v{s}}ka", title = "{The {\NTS} project: from conception to birth {\Abstract}}", journal = j-TUGboat, volume = "21", number = "3", pages = "304--304", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68tayl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-306, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "21", number = "3", pages = "306--307", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-154, author = "Anonymous", title = "{{\acro{TUG}'2001 Announcement}}", journal = j-TUGboat, volume = "21", number = "3", pages = "154--154", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/tug2001/announcement.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-305, author = "Anonymous", title = "Miscellaneous photos", journal = j-TUGboat, volume = "21", number = "3", pages = "305--305", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/page305.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-308, author = "Anonymous", title = "{{\acro{TUG}\,'2000 Attendees}}", journal = j-TUGboat, volume = "21", number = "3", pages = "308--309", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68part.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-307, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "21", number = "3", pages = "307--307", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/tb68part.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-310, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "21", number = "3", pages = "310--310", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-311, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "21", number = "3", pages = "311--311", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-312, author = "Anonymous", title = "{IBM \ssf techexplorer}", journal = j-TUGboat, volume = "21", number = "3", pages = "312--312", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2000/", URL = "http://www.tug.org/TUGboat/tb21-3/ibm2000.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2000 Proceedings (Oxford).", } @Article{Anonymous:TB21-3-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "21", number = "3", pages = "Cover 3", month = sep, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "68", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB21-4-315, author = "Barbara Beeton", title = "{Editorial Comments}", journal = j-TUGboat, volume = "21", number = "4", pages = "315", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-4/tb69beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-435, author = "Anonymous", title = "{{\acro{TUG}\,'2001 Announcement}}", journal = j-TUGboat, volume = "21", number = "4", pages = "435", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-4/tugboat2001gray.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-436, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "21", number = "4", pages = "436", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-437, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "21", number = "4", pages = "437", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-438, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "21", number = "4", pages = "438", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-439, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "21", number = "4", pages = "439", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-440, author = "Anonymous", title = "{IBM \ssf techexplorer}", journal = j-TUGboat, volume = "21", number = "4", pages = "440", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb21-4/ibm2000.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB21-4-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "21", number = "4", pages = "{Cover 3}", month = dec, year = "2000", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "69", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-3, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "22", number = "1/2", pages = "3--3", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jett:TB22-1-5, author = "Mimi Jett", title = "From the {President}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "5--5", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB22-1-6, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "22", number = "1/2", pages = "6--7", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB22-1-8, author = "Jim Hefferon", title = "{Why \TeX?}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "8--14", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-15, author = "Anonymous", title = "Question \& Answer session with {Donald Knuth}, {{\acro{U.K.\,TUG}, Oxford, Sunday, 12 September 1999}}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "15--19", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-20, author = "Anonymous", title = "{{How \AllTeX{} changed the face of mathematics: An {\ssf E}-interview with Leslie Lamport, the author of \LaTeX}}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "20--22", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB22-1-23, author = "Peter Flynn", title = "Typographers' inn", journal = j-TUGboat, volume = "22", number = "1/2", pages = "23--23", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70flyn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB22-1-24, author = "Frank Mittelbach", title = "{Laudatio for Professor Hermann Zapf}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "24--26", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70laud-revised.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zapf:TB22-1-26, author = "Hermann Zapf", title = "{My collaboration with Don Knuth and my font design work}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "26--30", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70zapf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB22-1-31, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "22", number = "1/2", pages = "31--32", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackson:TB22-1-32, author = "Laura Elizabeth Jackson and Herbert Vo{\ss}", title = "{{\LyX} --- An Open Source document processor}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "32--41", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lewenberg:TB22-1-42, author = "Adam H. Lewenberg", title = "{{\acro{DVII}: A {\TeX} dvi file information utility}}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "42--45", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70lewe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hobby:TB22-1-46, author = "John D. Hobby", title = "{Drawing graphs with MetaPost}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "46--58", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70hobb.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB22-1-58, author = "Hans Hagen", title = "{The status quo of the {\NTS} project}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "58--66", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70hans.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB22-1-67, author = "William Adams", title = "{The treasure chest}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "67--74", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gratzer:TB22-1-74, author = "George Gr{\"a}tzer", title = "{Publishing legacy documents on the Web}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "74--78", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70grat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB22-1-78, author = "Denis Roegel", title = "Anatomy of a macro", journal = j-TUGboat, volume = "22", number = "1/2", pages = "78--82", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70roeg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB22-1-83, author = "Victor Eijkhout", title = "{The bag of tricks}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "83--86", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70eijk.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mauw:TB22-1-87, author = "Sjouke Mauw and Victor Bos", title = "{Drawing message sequence charts with {\LaTeX}}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "87--92", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70bos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB22-1-93, author = "Frank Mittelbach", title = "{The {\sf trace} package}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "93--99", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-100, author = "Anonymous", title = "{{\sl Les Cahiers GUTenberg}, Contents of issues 35/36 (May 2000) and 37/38 (December 2000)}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "100--102", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-103, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "22", number = "1/2", pages = "103--104", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-105, author = "Anonymous", title = "{{\acro{TUG}\,2001 Announcement}}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "105--105", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tugboat2001gray.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeMeritt:TB22-1-106, author = "Susan DeMeritt", title = "{Minutes of {\TeX} Users Group Annual General Meeting, 15 August 2000, Oxford, England}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "106--106", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70agm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{DeLand:TB22-1-107, author = "Don DeLand", title = "Financial statement, 2000", journal = j-TUGboat, volume = "22", number = "1/2", pages = "107--107", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tb70treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ogawa:TB22-1-108, author = "Arthur Ogawa", title = "{{\acro{TUG} Election Notice}}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "108--108", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-1-2/tug2003elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-110, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "110--110", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-111, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "111--111", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-112, author = "Anonymous", title = "{Just Published: {\TeX} Reference Manual by David Bausum}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "112--112", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-1-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "22", number = "1/2", pages = "Cover 3", month = mar, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "70", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-3-115, author = "Anonymous", title = "{TUG\,2001 Program}", journal = j-TUGboat, volume = "22", number = "3", pages = "115--116", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72program.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-117, author = "Anonymous", title = "{Participants at the 22nd Annual TUG Meeting}", journal = j-TUGboat, volume = "22", number = "3", pages = "117--117", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72participants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Hagen:TB22-3-118, author = "Hans Hagen", title = "{Where will the odyssey bring us?}", journal = j-TUGboat, volume = "22", number = "3", pages = "118--118", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72hagen-odyssey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Jett:TB22-3-119, author = "Mimi Jett", title = "{Future of publishing, Part 2}", journal = j-TUGboat, volume = "22", number = "3", pages = "119--119", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72jett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Richter:TB22-3-120, author = "William Richter", title = "{Integrating {\TeX} into a document imaging system}", journal = j-TUGboat, volume = "22", number = "3", pages = "120--130", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72richter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Ogawa:TB22-3-131, author = "Arthur Ogawa", title = "{{REV\TeX} version 4.0, an authoring package by the American Physical Society}", journal = j-TUGboat, volume = "22", number = "3", pages = "131--133", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72ogawa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Schwartz:TB22-3-134, author = "Anita Schwartz", title = "{The {\TeX} History Panel}", journal = j-TUGboat, volume = "22", number = "3", pages = "134--135", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-3/tb72schwartz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB22-3-136, author = "Hans Hagen", title = "{Using {\TeX} for high end typesetting}", journal = j-TUGboat, volume = "22", number = "3", pages = "136--136", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72hagen-highend.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Flynn:TB22-3-137, author = "Peter Flynn", title = "{{\TeX}---a mass market product? Or just an image in need of a makeover?}", journal = j-TUGboat, volume = "22", number = "3", pages = "137--139", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Tulett:TB22-3-140, author = "David Tulett", title = "{{\LaTeX} for Windows: a user's perspective}", journal = j-TUGboat, volume = "22", number = "3", pages = "140--145", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72tulett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Thanh:TB22-3-146, author = "H{\'a}n Th{\^e}\llap{\raise 0.5ex\hbox{\'{\relax}}} Th{\'a}nh", title = "Margin kerning and font expansion with {pdf\TeX}", journal = j-TUGboat, volume = "22", number = "3", pages = "146--148", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-3/tb72thanh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moore:TB22-3-149, author = "Ross Moore", title = "{PDF} presentations using the {Marslide} package", journal = j-TUGboat, volume = "22", number = "3", pages = "149--159", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72moore-marslide.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Hagen:TB22-3-160, author = "Hans Hagen", title = "{Using {\TeX} to enhance your presentations}", journal = j-TUGboat, volume = "22", number = "3", pages = "160--160", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72hagen-presentations.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Story:TB22-3-161, author = "Donald P. Story", title = "{Techniques of introducing document-level JavaScript into a \acro{PDF} file from a {\LaTeX} source}", journal = j-TUGboat, volume = "22", number = "3", pages = "161--167", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72story.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Moore:TB22-3-168, author = "Ross Moore", title = "{Online self-marking quizzes, {pdf\TeX}, exerquiz}", journal = j-TUGboat, volume = "22", number = "3", pages = "168--179", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72moore-quiz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Schroder:TB22-3-180, author = "Martin Schr{\"o}der", title = "{Using {pdf\TeX} in a \acro{PDF}-based imposition tool}", journal = j-TUGboat, volume = "22", number = "3", pages = "180--180", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72schroder.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Beebe:TB22-3-181, author = "Nelson Beebe", title = "{pdf{\TeX} Panel}", journal = j-TUGboat, volume = "22", number = "3", pages = "181--187", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72beebe-pdf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Moore:TB22-3-188, author = "Ross Moore", title = "{{Adobe plugin for \acro{WARM}reader}}", journal = j-TUGboat, volume = "22", number = "3", pages = "188--196", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72moore-warm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Oliver:TB22-3-197, author = "Stephen Oliver", title = "{The {\TeX}spec tool for computer-aided software engineering}", journal = j-TUGboat, volume = "22", number = "3", pages = "197--203", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72oliver.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Hammond:TB22-3-204, author = "William Hammond", title = "{{\acro{GELLMU}: A bridge for authors from {\LaTeX} to \acro{XML}}}", journal = j-TUGboat, volume = "22", number = "3", pages = "204--207", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72hammond.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Caviness:TB22-3-208, author = "Bob Caviness", title = "{Creating Math Web Documents (Workshop)}", journal = j-TUGboat, volume = "22", number = "3", pages = "208--208", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72caviness.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Hoenig:TB22-3-209, author = "Alan Hoenig", title = "{Typesetting Hebrew with \TeX}", journal = j-TUGboat, volume = "22", number = "3", pages = "209--215", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72hoenig-hebrew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Hoenig:TB22-3-216, author = "Alan Hoenig", title = "{Modernizing Computer Modern}", journal = j-TUGboat, volume = "22", number = "3", pages = "216--219", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72hoenig-modern.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Beebe:TB22-3-220, author = "Nelson Beebe", title = "{Fonts Panel}", journal = j-TUGboat, volume = "22", number = "3", pages = "220--227", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72beebe-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Downes:TB22-3-228, author = "Michael Downes", title = "{Managing multiple \acro{TDS} trees}", journal = j-TUGboat, volume = "22", number = "3", pages = "228--237", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72downes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Doob:TB22-3-238, author = "Michael Doob", title = "{Installing a \acro{CTAN} mirror on your desktop}", journal = j-TUGboat, volume = "22", number = "3", pages = "238--239", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72doob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Koch:TB22-3-240, author = "Richard Koch", title = "Installing {TeXshop}", journal = j-TUGboat, volume = "22", number = "3", pages = "240--246", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72koch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Adams:TB22-3-247, author = "William Adams", title = "{Font installation: Agfa/Eaglefeather to Linotype Zapfino}", journal = j-TUGboat, volume = "22", number = "3", pages = "247--250", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72adams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-251, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "22", number = "3", pages = "251--252", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-253, author = "Anonymous", title = "{{\acro{TUG}\,2003 Announcement}}", journal = j-TUGboat, volume = "22", number = "3", pages = "253--253", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/tug2003/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-254, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "22", number = "3", pages = "254--254", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/tb72inst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-255, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "22", number = "3", pages = "255--255", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-256, author = "Anonymous", title = "{Just Published: {\TeX} Reference Manual by David Bausum}", journal = j-TUGboat, volume = "22", number = "3", pages = "256--256", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2001/", URL = "http://www.tug.org/TUGboat/tb22-3/kluwer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2001 Proceedings (Delaware).", } @Article{Anonymous:TB22-3-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "22", number = "3", pages = "Cover 3", month = sep, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "71", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-259, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "22", number = "4", pages = "259--260", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ogawa:TB22-4-261, author = "Arthur Ogawa", title = "{From the Board of Directors}", journal = j-TUGboat, volume = "22", number = "4", pages = "261--263", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72ogawa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB22-4-263, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "22", number = "4", pages = "263--265", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72ogawa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Story:TB22-4-265, author = "D. P. Story", title = "{{\tt execJS}: A new technique for introducing discardable JavaScript into a \acro{PDF} file from a {\LaTeX} source}", journal = j-TUGboat, volume = "22", number = "4", pages = "265--268", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72story.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Goossens:TB22-4-269, author = "Michel Goossens", title = "{{\LaTeX, \acro{SVG}, fonts}}", journal = j-TUGboat, volume = "22", number = "4", pages = "269--280", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72goos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Forkosh:TB22-4-280, author = "John Forkosh", title = "{{\sf mimeTex} announcement}", journal = j-TUGboat, volume = "22", number = "4", pages = "280--281", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72forkosh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB22-4-281, author = "Karl Berry", title = "Making outline fonts from bitmap images", journal = j-TUGboat, volume = "22", number = "4", pages = "281--285", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72berry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fujita:TB22-4-285, author = "Shinsaku Fujita and Nobuya Tanaka", title = "{Size reduction of chemical structural formulas in \XyMTeX (Version 3.00)}", journal = j-TUGboat, volume = "22", number = "4", pages = "285--289", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72fuji.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Niepraschk:TB22-4-290, author = "Rolf Niepraschk and Herbert Vo{\ss}", title = "{{The package {\tt ps4pdf}: from \PS\ to \acro{PDF}}}", journal = j-TUGboat, volume = "22", number = "4", pages = "290--292", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72voss4pdf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB22-4-292, author = "Jonathan Fine", title = "{Instant Preview and the {\TeX} daemon}", journal = j-TUGboat, volume = "22", number = "4", pages = "292--298", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB22-4-298, author = "Denis Roegel", title = "{Space geometry with {\MP}}", journal = j-TUGboat, volume = "22", number = "4", pages = "298--314", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72roeg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voss:TB22-4-314, author = "Jana Vo{\ss} and Herbert Vo{\ss}", title = "{The plot functions of {\tt pst-plot}}", journal = j-TUGboat, volume = "22", number = "4", pages = "314--319", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72vossplot.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voss:TB22-4-319, author = "Herbert Vo{\ss}", title = "{Three dimensional plots with {\tt pst-3dplot}}", journal = j-TUGboat, volume = "22", number = "4", pages = "319--329", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72voss3d.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Perlis:TB22-4-330, author = "Alexander R. Perlis", title = "{Axis alignment in {\Xypic} diagrams}", journal = j-TUGboat, volume = "22", number = "4", pages = "330--334", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72perlax.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Obrecht:TB22-4-334, author = "Christian Obrecht", title = "{Eukleides: A geometry drawing language}", journal = j-TUGboat, volume = "22", number = "4", pages = "334--337", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72obre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moye:TB22-4-338, author = "Stephen Moye", title = "{{\it {\TeX} Reference Manual}, by David Bausum}", journal = j-TUGboat, volume = "22", number = "4", pages = "338--339", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72moye.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB22-4-339, author = "Peter Wilson", title = "Glisterings", journal = j-TUGboat, volume = "22", number = "4", pages = "339--341", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72wilson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB22-4-341, author = "William Adams", title = "{The treasure chest}", journal = j-TUGboat, volume = "22", number = "4", pages = "341--348", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tulett:TB22-4-349, author = "David M. Tulett", title = "{Highlighting in the {\LaTeX} picture environment}", journal = j-TUGboat, volume = "22", number = "4", pages = "349--349", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72tulett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Perlis:TB22-4-350, author = "Alexander R. Perlis", title = "{A complement to {\tt\char`\\smash}, {\tt\char`\\llap}, and {\tt\char`\\rlap}}", journal = j-TUGboat, volume = "22", number = "4", pages = "350--352", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72perlS.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burt:TB22-4-353, author = "John Burt", title = "Typesetting critical editions of poetry", journal = j-TUGboat, volume = "22", number = "4", pages = "353--360", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72burt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Verna:TB22-4-361, author = "Didier Verna", title = "{CV} formatting with {\curve}", journal = j-TUGboat, volume = "22", number = "4", pages = "361--364", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72verna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-365, author = "Anonymous", title = "{{\sl Les Cahiers GUTenberg}, Contents of double issue 39/40 (May 2001)}", journal = j-TUGboat, volume = "22", number = "4", pages = "365--367", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tb72cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-368, author = "Anonymous", title = "{{\acro{TUG}\,'2002 Announcement}}", journal = j-TUGboat, volume = "22", number = "4", pages = "368--368", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/tug2002flyer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-369, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "22", number = "4", pages = "369--370", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-371, author = "Anonymous", title = "{{\acro{TUG}\,'2003 Announcement}}", journal = j-TUGboat, volume = "22", number = "4", pages = "371--371", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/TUG2003flyer_m8.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-372, author = "Anonymous", title = "{Euro\TeX\,'2003\Dash The \nth{14} European {\TeX} Conference}", journal = j-TUGboat, volume = "22", number = "4", pages = "372--372", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/eurotex2003-a4.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Preston:TB22-4-260, author = "Roy Preston", title = "Ya can't touch us!", journal = j-TUGboat, volume = "22", number = "4", pages = "260--260", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/m-stop.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-373, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "22", number = "4", pages = "373--373", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-374, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "22", number = "4", pages = "374--374", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-375, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "22", number = "4", pages = "375--375", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-376, author = "Anonymous", title = "{Just Published: {\TeX} Reference Manual by David Bausum}", journal = j-TUGboat, volume = "22", number = "4", pages = "376--376", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb22-4/Kluwerad.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB22-4-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "22", number = "4", pages = "Cover 3", month = dec, year = "2001", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "72", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Christiansen:TB23-1-2, author = "Kaja Christiansen", title = "{Editorial Comments}", journal = j-TUGboat, volume = "23", number = "1", pages = "2--2", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/kaja.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-3, author = "Anonymous", title = "{TUG\,2002, Thiruvananthapuram\Dash Report and travelogue}", journal = j-TUGboat, volume = "23", number = "1", pages = "3--7", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/keralaW.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-8, author = "Anonymous", title = "{TUG\,2002 Program}", journal = j-TUGboat, volume = "23", number = "1", pages = "8--9", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/programme.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-10, author = "Anonymous", title = "{Participants at the \nth{23} Annual TUG Meeting}", journal = j-TUGboat, volume = "23", number = "1", pages = "10--12", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/participants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Kumar:TB23-1-13, author = "K. Anil Kumar", title = "{{\TeX} and databases\Dash\TeX DBI}", journal = j-TUGboat, volume = "23", number = "1", pages = "13--16", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/anilkumar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Babu:TB23-1-17, author = "Satish Babu", title = "{New horizons of free software: An Indian perspective}", journal = j-TUGboat, volume = "23", number = "1", pages = "17--20", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/babu.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Bujdoso:TB23-1-21, author = "Gy{\"o}ngyi Bujdos{\'o} and Ferenc Wettl", title = "On the localization of {\TeX} in {Hungary}", journal = j-TUGboat, volume = "23", number = "1", pages = "21--26", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/bujdosowettl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Bzyl:TB23-1-27, author = "W{\l}odzimierz Bzyl", title = "The {Tao} of fonts", journal = j-TUGboat, volume = "23", number = "1", pages = "27--40", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/bzyl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Esfahbod:TB23-1-41, author = "Behdad Esfahbod and Roozbeh Pournader", title = "{Farsi\TeX} and the {Iranian} {\TeX} community", journal = j-TUGboat, volume = "23", number = "1", pages = "41--45", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/farsitex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Feng:TB23-1-46, author = "Hong Feng", title = "The marriage of {\TeX} and {Lojban}", journal = j-TUGboat, volume = "23", number = "1", pages = "46--48", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/feng.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Hagen:TB23-1-49, author = "Hans Hagen", title = "{{\ConTeXt, \acro{XML} and \TeX: State of the art?}}", journal = j-TUGboat, volume = "23", number = "1", pages = "49--49", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Haralambous:TB23-1-50, author = "Yannis Haralambous and John Plaice", title = "{{Low-level Devan{\=a}gar{\=\i}{} support for Omega\Dash Adapting {\tt devnag}}}", journal = j-TUGboat, volume = "23", number = "1", pages = "50--56", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/haralambous.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Kastrup:TB23-1-57, author = "David Kastrup", title = "{{Revisiting \acro{WYSIWYG} paradigms for authoring \LaTeX}}", journal = j-TUGboat, volume = "23", number = "1", pages = "57--64", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/kastrup.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Moore:TB23-1-65, author = "Ross Moore", title = "{serendi\acro{PDF} with searchable math-fields in \acro{PDF} documents}", journal = j-TUGboat, volume = "23", number = "1", pages = "65--69", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Piska:TB23-1-70, author = "Karel P{\'\i}{\v{s}}ka", title = "{{A conversion of public Indic fonts from {\MF} into Type 1 format with \TeX{\smc trace}}}", journal = j-TUGboat, volume = "23", number = "1", pages = "70--73", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/piska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Popineau:TB23-1-74, author = "Fabrice Popineau", title = "{{\TeX} Live under Windows: What's new with the \nth{7} edition?}", journal = j-TUGboat, volume = "23", number = "1", pages = "74--79", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/popineau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Pournader:TB23-1-80, author = "Roozbeh Pournader", title = "{Catching up to Unicode}", journal = j-TUGboat, volume = "23", number = "1", pages = "80--85", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/roozbeh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Rahtz:TB23-1-86, author = "Sebastian Rahtz", title = "{Passive{\TeX}: An update}", journal = j-TUGboat, volume = "23", number = "1", pages = "86--89", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/rahtz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Rajkumar:TB23-1-90, author = "S. Rajkumar", title = "{Indic typesetting\Dash Challenges and opportunities}", journal = j-TUGboat, volume = "23", number = "1", pages = "90--92", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/rajkumar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Roegel:TB23-1-93, author = "Denis Roegel", title = "{{{\manual METAOBJ}\/: Very high-level objects in \MP}}", journal = j-TUGboat, volume = "23", number = "1", pages = "93--100", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/roegel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Shukla:TB23-1-101, author = "Wagish Shukla and Amitabh Trehan", title = "{Typesetting in Hindi, Sanskrit and Persian: A beginner's perspective}", journal = j-TUGboat, volume = "23", number = "1", pages = "101--105", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/trehan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Skoupy:TB23-1-106, author = "Karel Skoup{\'y}", title = "{New typesetting language and system architecture}", journal = j-TUGboat, volume = "23", number = "1", pages = "106--106", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/skoupyI.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Skoupy:TB23-1-107, author = "Karel Skoup{\'y}", title = "{{\TeX} file server}", journal = j-TUGboat, volume = "23", number = "1", pages = "107--107", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/skoupyII.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Watt:TB23-1-108, author = "Stephen M. Watt", title = "{Conserving implicit mathematical semantics in conversion between {\TeX} and MathML}", journal = j-TUGboat, volume = "23", number = "1", pages = "108--108", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/watt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-109, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "23", number = "1", pages = "109--110", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-110, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "23", number = "1", pages = "110--110", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/inst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-111, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "23", number = "1", pages = "111--111", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-112, author = "Anonymous", title = "{Just Published: {\TeX} Reference Manual by David Bausum}", journal = j-TUGboat, volume = "23", number = "1", pages = "112--112", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2002/", URL = "http://www.tug.org/TUGboat/tb23-1/kluwer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2002 Proceedings (Trivandrum).", } @Article{Anonymous:TB23-1-cover-3, author = "Anonymous", title = "{Blue Sky Research}", journal = j-TUGboat, volume = "23", number = "1", pages = "Cover 3", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "73", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB23-2-114, author = "Barbara Beeton", title = "{Editorial Comments}", journal = j-TUGboat, volume = "23", number = "2", pages = "114", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-2/tb74beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "74", journal-URL = "http://www.tug.org/TUGboat/", remark = "Formatting Information by Peter Flynn.", } @Article{Flynn:TB23-2-115, author = "Peter Flynn", title = "{Formatting information:\hfil {A beginner's introduction to typesetting with \LaTeX}}", journal = j-TUGboat, volume = "23", number = "2", pages = "115--237", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.ctan.org/tex-archive/info/beginlatex/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "74", journal-URL = "http://www.tug.org/TUGboat/", remark = "Formatting Information by Peter Flynn.", } @Article{Anonymous:TB23-2-238, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "23", number = "2", pages = "238--239", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "74", journal-URL = "http://www.tug.org/TUGboat/", remark = "Formatting Information by Peter Flynn.", } @Article{Anonymous:TB23-2-c3, author = "Anonymous", title = "{{\acro{TUG}\,2003 Announcement}}", journal = j-TUGboat, volume = "23", number = "2", pages = "{c\,3}-{c\,3}", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "74", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-2-239, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "23", number = "2", pages = "239--239", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "74", journal-URL = "http://www.tug.org/TUGboat/", remark = "Formatting Information by Peter Flynn.", } @Article{Anonymous:TB23-2-240, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "23", number = "2", pages = "240--240", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "74", journal-URL = "http://www.tug.org/TUGboat/", remark = "Formatting Information by Peter Flynn.", } @Article{Anonymous:TB23-3-243, author = "Anonymous", title = "Addresses", journal = j-TUGboat, volume = "23", number = "3/4", pages = "243--244", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB23-3-245, author = "Karl Berry", title = "{From the Board of Directors}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "245--245", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75gendel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB23-3-245, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "23", number = "3/4", pages = "245--247", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-247, author = "Anonymous", title = "{Hyphenation exception log}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "247--248", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-249, author = "Anonymous", title = "{Donald Knuth: All questions answered (University of Oslo, 30 August 2002)}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "249--261", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75knuth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB23-3-261, author = "Claudio Beccari", title = "{Floating point numbers and \MF, \MP, \TeX, and \PS{} Type 1 fonts}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "261--269", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75beccreal.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Revets:TB23-3-269, author = "Stefan A. Revets", title = "{The Octavo package}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "269--275", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75revets.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB23-3-276, author = "Claudio Beccari", title = "The {\sf teubner} {\LaTeX} package: Typesetting classical {Greek} philology", journal = j-TUGboat, volume = "23", number = "3/4", pages = "276--282", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75beccteub.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pal:TB23-3-282, author = "Palash B. Pal", title = "{Typesetting in Bengali script using \TeX}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "282--288", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75pal.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kuhn:TB23-3-288, author = "Jonathan Kuhn", title = "{interactiveworkbook}: {\LaTeX}-based interactive \acro{PDF} on the {Web}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "288--290", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75kuhn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Menshikov:TB23-3-291, author = "D. Men'shikov and A. Kostin and M. Vulis", title = "{Multiple Master math extension fonts}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "291--294", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75vulis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barton:TB23-3-294, author = "Thomas H. Barton", title = "{TrueType fonts in \PS}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "294--296", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75bart.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tsolomitis:TB23-3-296, author = "Antonis Tsolomitis", title = "{The {\bf Kerkis} font family}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "296--301", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75tsol.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schmidt:TB23-3-301, author = "Walter Schmidt", title = "{Euler-\kern-1pt VM: Generic math fonts for use with \LaTeX}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "301--303", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75schmidt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Saha:TB23-3-304, author = "Prasenjit Saha", title = "{Rambutan: Literate programming in Java}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "304--309", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75saha.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Obrecht:TB23-3-309, author = "Christian Obrecht", title = "{Eukleides: A geometry drawing language}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "309--313", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75obre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Casares:TB23-3-313, author = "Ram{\'o}n Casares", title = "{\MTeX}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "313--318", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75casa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LaPlante:TB23-3-319, author = "Mark LaPlante and William F. Adams", title = "{The treasure chest}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "319--329", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Feuerstack:TB23-3-329, author = "Thomas Feuerstack", title = "{Introduction to pdf\TeX}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "329--334", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75feu.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voss:TB23-3-335, author = "Herbert Vo{\ss}", title = "{{Constructing circuit diagrams with {\tt pst-circ}}}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "335--341", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gray:TB23-3-341, author = "Norman Gray", title = "{{Absolute positioning with {\sf textpos}}}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "341--344", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75gray.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Harders:TB23-3-344, author = "Harald Harders", title = "{Multilingual bibliographies: Using and extending the {\sf babelbib} package}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "344--353", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75harders.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-354, author = "Anonymous", title = "{{\it Les Cahiers GUTenberg\/}: Contents of Thematic Issue 41 (November 2001)}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "354--354", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-355, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "23", number = "3/4", pages = "355--357", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/calendar.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-358, author = "Anonymous", title = "{Practical {\TeX} 2004: training and techniques}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "358--358", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/practicaltex2004", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-cover-3, author = "Anonymous", title = "{{\acro{TUG}\,2004 announcement}}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "Cover 3", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB23-3-360, author = "Mimi Burbank", title = "{Production notes}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "360--360", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-360, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "23", number = "3/4", pages = "360--360", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Preston:TB23-3-244, author = "Roy Preston", title = "{Type Design as Art}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "244--244", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/grot.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Ogawa:TB23-3-360, author = "Arthur Ogawa", title = "{Report of \acro{TUG} election}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "360--365", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75boar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laakso:TB23-3-365, author = "Robin Laakso", title = "{Financial statements for 2001 and 2002}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "365--366", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-357, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "23", number = "3/4", pages = "357--357", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/instmem-list.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-375, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "375--375", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/forms/2004/memberapp.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-367, author = "Anonymous", title = "{Bugs in {\sl Computers \& Typesetting}, 6 July 2003}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "367--374", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/tb75errata.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-376, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "376--376", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB23-3-359, author = "Anonymous", title = "{{\TeX} Live, 2003 Edition}", journal = j-TUGboat, volume = "23", number = "3/4", pages = "359--359", year = "2002", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb23-3-4/texlive.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "75", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB24-1-2, author = "William Adams", title = "{Editorial remarks}", journal = j-TUGboat, volume = "24", number = "1", pages = "2--2", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/adams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Berry:TB24-1-3, author = "Karl Berry", title = "{{Welcome to \acro{TUG}\,2003}}", journal = j-TUGboat, volume = "24", number = "1", pages = "3--4", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/berry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-5, author = "Anonymous", title = "{Conference program and delegates}", journal = j-TUGboat, volume = "24", number = "1", pages = "5--9", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Rosell-Gonzalez:TB24-1-10, author = "Pablo Rosell-Gonz{\'a}lez", title = "Return to the classics", journal = j-TUGboat, volume = "24", number = "1", pages = "10--17", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-1/gonzalez.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moon:TB24-1-18, author = "Alun Moon", title = "Digital illumination", journal = j-TUGboat, volume = "24", number = "1", pages = "18--22", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/moon-celtic.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-23, author = "Anonymous", title = "Abstracts {(Daly \& Richter, Hagen, Janc, Moore)}", journal = j-TUGboat, volume = "24", number = "1", pages = "23--24", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/abs-publish.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Patashnik:TB24-1-25, author = "Oren Patashnik", title = "{\BibTeX} yesterday, today, and tomorrow", journal = j-TUGboat, volume = "24", number = "1", pages = "25--30", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/patashnik.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-31, author = "Anonymous", title = "{Abstracts (Daly, Hufflen)}", journal = j-TUGboat, volume = "24", number = "1", pages = "31--31", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/abs-biblio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Koch:TB24-1-32, author = "Richard Koch", title = "{TeXShop} in 2003", journal = j-TUGboat, volume = "24", number = "1", pages = "32--38", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/koch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Costanzo:TB24-1-39, author = "Francesco Costanzo and Gary Gray", title = "{{Creating labeled stand-alone figures in {\LaTeX} using {\warmreader} and Adobe Illustrator under Mac\,OS\,X}}", journal = j-TUGboat, volume = "24", number = "1", pages = "39--49", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/gray-warm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Saastamoinen:TB24-1-50, author = "Kalle Saastamoinen and Jaakko Ketola and Tuukka Kurppa and Liisa Torikka", title = "{Enabling Web access to a database of calculus problems using \LaTeX, PHP and \LaTeX2HTML}", journal = j-TUGboat, volume = "24", number = "1", pages = "50--52", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/saast.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Padovani:TB24-1-53, author = "Luca Padovani", title = "{Math\acro{ML} formatting with {\TeX} rules and {\TeX} fonts}", journal = j-TUGboat, volume = "24", number = "1", pages = "53--61", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/padovani.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-62, author = "Anonymous", title = "{Abstracts (Gurari, Quirk, Hagen, Hefferon, Lehmke)}", journal = j-TUGboat, volume = "24", number = "1", pages = "62--63", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/abs-inter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Jackowski:TB24-1-64, author = "Bogus{\l}aw Jackowski and Janusz M. Nowacki", title = "{Latin Modern: Enhancing Computer Modern with accents, accents, accents}", journal = j-TUGboat, volume = "24", number = "1", pages = "64--74", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Volovich:TB24-1-75, author = "Vladimir Volovich", title = "{{\acro{CM-S}uper: Automatic creation of efficient Type 1 fonts from {\MF} fonts}}", journal = j-TUGboat, volume = "24", number = "1", pages = "75--78", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/volovich.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Thanh:TB24-1-79, author = "H{\'a}n Th{\^e}\llap{\raise 0.5ex\hbox{\'{\relax}}} Th{\'a}nh", title = "Making {Type 1} fonts for {Vietnamese}", journal = j-TUGboat, volume = "24", number = "1", pages = "79--84", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-1/thanh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Yiu:TB24-1-85, author = "Candy L. K. Yiu and Wai Wong", title = "{Chinese character synthesis using \MP}", journal = j-TUGboat, volume = "24", number = "1", pages = "85--93", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/yiu.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-94, author = "Anonymous", title = "{Abstracts (Adams)}", journal = j-TUGboat, volume = "24", number = "1", pages = "94--94", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/abs-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Bilotta:TB24-1-95, author = "Giuseppe Bilotta", title = "{{\eOmega: A step towards the future with a look at the past}}", journal = j-TUGboat, volume = "24", number = "1", pages = "95--96", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/bilotta-eomega.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Hoenig:TB24-1-97, author = "Alan Hoenig", title = "{Makor: Typesetting Hebrew with Omega}", journal = j-TUGboat, volume = "24", number = "1", pages = "97--104", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Plaice:TB24-1-105, author = "John Plaice and Paul Swoboda and Yannis Haralambous and Chris Rowley", title = "{A multidimensional approach to typesetting}", journal = j-TUGboat, volume = "24", number = "1", pages = "105--114", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-115, author = "Anonymous", title = "{Abstracts (Cho)}", journal = j-TUGboat, volume = "24", number = "1", pages = "115--115", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/abs-multi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Moon:TB24-1-116, author = "Alun Moon", title = "{{Literate programming meets \acro{UML}}}", journal = j-TUGboat, volume = "24", number = "1", pages = "116--119", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/moon-uml.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Bilotta:TB24-1-120, author = "Giuseppe Bilotta", title = "{Math in \ConTeXt: Bridging the gap with (\kern-.1emAMS\kern.05em-)\LaTeX}", journal = j-TUGboat, volume = "24", number = "1", pages = "120--121", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/bilotta-context.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-122, author = "Anonymous", title = "{Abstracts (Bazargan et al., Esser, Lehmke, Popineau, Wierda)}", journal = j-TUGboat, volume = "24", number = "1", pages = "122--123", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/abs-tools.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Gray:TB24-1-124, author = "Gary Gray and Francesco Costanzo", title = "{Experiences and lessons learned teaching {\LaTeX} to university students}", journal = j-TUGboat, volume = "24", number = "1", pages = "124--131", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/gray-class.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Gaudeul:TB24-1-132, author = "Alexandre Gaudeul", title = "{The {\AllTeX} project: A case study of open source software}", journal = j-TUGboat, volume = "24", number = "1", pages = "132--145", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/gaudeul.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Odyniec:TB24-1-146, author = "Andrzej Odyniec", title = "{A Polished {\TeX} story}", journal = j-TUGboat, volume = "24", number = "1", pages = "146--150", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/odyniec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-151, author = "Anonymous", title = "{Abstracts (Bibby, Ranade)}", journal = j-TUGboat, volume = "24", number = "1", pages = "151--151", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-1-152, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "24", number = "1", pages = "152--153", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/calendar.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-c3, author = "Anonymous", title = "{TUG 2004 conference, Xanthi, Greece, August 30--September 3, 2004}", journal = j-TUGboat, volume = "24", number = "1", pages = "{c\,3}-{c\,3}", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-1-154, author = "Anonymous", title = "{TUG 2005 conference, Wuhan, China, August 23--25, 2005}", journal = j-TUGboat, volume = "24", number = "1", pages = "154--154", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-155, author = "Anonymous", title = "{Recognition of support from Apple}", journal = j-TUGboat, volume = "24", number = "1", pages = "155--155", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/appleinst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-155-2, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "24", number = "1", pages = "155--155", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/TUGboat/tb24-1/appleinst.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Anonymous:TB24-1-156, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "24", number = "1", pages = "156--156", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2003/", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "76", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2003 Proceedings.", } @Article{Berry:TB24-2-159, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "24", number = "2", pages = "159--159", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB24-2-160, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "24", number = "2", pages = "160--161", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Plaice:TB24-2-162, author = "John Plaice", title = "{Daniel Taupin, 1936--2003}", journal = j-TUGboat, volume = "24", number = "2", pages = "162--162", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Waud:TB24-2-163, author = "Douglas Waud", title = "{What is \TeX?}", journal = j-TUGboat, volume = "24", number = "2", pages = "163--164", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77waud-what.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lawrence:TB24-2-165, author = "Richard Lawrence", title = "{Maths = Typography?}", journal = j-TUGboat, volume = "24", number = "2", pages = "165--168", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77lawrence.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Garcia:TB24-2-169, author = "Federico Garcia", title = "{On musical typesetting: Sonata for {\TeX} and {\MF}, Op. 2}", journal = j-TUGboat, volume = "24", number = "2", pages = "169--182", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77garcia.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB24-2-183, author = "William Adams", title = "{There is no end: Omega and Zapfino}", journal = j-TUGboat, volume = "24", number = "2", pages = "183--199", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77adams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hall:TB24-2-200, author = "Timothy Hall", title = "{The {\MF} approach: Implicit, relative, and analytical font design}", journal = j-TUGboat, volume = "24", number = "2", pages = "200--205", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fairbairns:TB24-2-205, author = "Robin Fairbairns and Jim Hefferon and Rainer Sch{\"o}pf and Joachim Schrod and Graham Williams and Reinhard Zierke", title = "{{\acro{CTAN} plans}}", journal = j-TUGboat, volume = "24", number = "2", pages = "205--208", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hellstrom:TB24-2-208, author = "Lars Hellstr{\"o}m", title = "Some notes on templates", journal = j-TUGboat, volume = "24", number = "2", pages = "208--210", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77hellstrom.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB24-2-211, author = "David Walden", title = "{Writing a big book\Dash A first experience with \LaTeX}", journal = j-TUGboat, volume = "24", number = "2", pages = "211--215", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Syropoulos:TB24-2-216, author = "Apostolos Syropoulos", title = "{Designing packages for $ \Lambda $: An overview}", journal = j-TUGboat, volume = "24", number = "2", pages = "216--220", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77syropoulos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB24-2-221, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX} news, issues 14--16, 2001--2003}", journal = j-TUGboat, volume = "24", number = "2", pages = "221--223", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77ltnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Luck:TB24-2-224, author = "Uwe L{\"u}ck", title = "{{{\sf ednotes}\Dash critical edition typesetting with \LaTeX}}", journal = j-TUGboat, volume = "24", number = "2", pages = "224--236", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77lueck.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Scannell:TB24-2-236, author = "Kevin P. Scannell", title = "{Hyphenation patterns for minority languages}", journal = j-TUGboat, volume = "24", number = "2", pages = "236--239", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77scannell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Caird:TB24-2-240, author = "Andrew Caird", title = "{{\AllTeX, genealogy, and the LifeLines software}}", journal = j-TUGboat, volume = "24", number = "2", pages = "240--244", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77caird.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Talole:TB24-2-245, author = "S. E. Talole and S. B. Phadke", title = "{Generating {\LaTeX} documents through Matlab}", journal = j-TUGboat, volume = "24", number = "2", pages = "245--248", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77seta.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hufflen:TB24-2-249, author = "Jean-Michel Hufflen", title = "{Ml\BibTeX's Version 1.3}", journal = j-TUGboat, volume = "24", number = "2", pages = "249--262", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB24-2-262, author = "Peter Wilson", title = "{Glisterings}", journal = j-TUGboat, volume = "24", number = "2", pages = "262--265", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77wilson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LaPlante:TB24-2-265, author = "Mark LaPlante", title = "{The treasure chest}", journal = j-TUGboat, volume = "24", number = "2", pages = "265--275", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB24-2-275, author = "Claudio Beccari", title = "{The {\LaTeX} Companion, Second Edition}", journal = j-TUGboat, volume = "24", number = "2", pages = "275--277", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Waud:TB24-2-278, author = "Douglas Waud and Mimi Burbank", title = "{Guide to \LaTeX, \nth{4} Edition}", journal = j-TUGboat, volume = "24", number = "2", pages = "278--281", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77waud-kopka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-282, author = "Anonymous", title = "{{\it Les Cahiers GUTenberg\/}: Contents of Issue 42 (July 2003)}", journal = j-TUGboat, volume = "24", number = "2", pages = "282--282", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-283, author = "Anonymous", title = "{{\it MAPS\/}: Contents of issues 27--28 (2002)}", journal = j-TUGboat, volume = "24", number = "2", pages = "283--285", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-286, author = "Anonymous", title = "{{\it \TeX emplares\/}: Contents of issues 4--6 (2003--04)}", journal = j-TUGboat, volume = "24", number = "2", pages = "286--287", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77texemp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Katre:TB24-2-288, author = "S. A. Katre and Manjusha Joshi", title = "Report on the {Pune} workshop on {\LaTeX} and free mathematical software", journal = j-TUGboat, volume = "24", number = "2", pages = "288--290", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77pune.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB24-2-291, author = "Nelson Beebe and Wendy McKay and Ross Moore", title = "{{\acro{TUG} at Bay}}", journal = j-TUGboat, volume = "24", number = "2", pages = "291--293", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77tfaa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-294, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "24", number = "2", pages = "294--295", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-295, author = "Anonymous", title = "{{\acro{TUG}\,2005 announcement}}", journal = j-TUGboat, volume = "24", number = "2", pages = "295--295", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/tug2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-cover-3, author = "Anonymous", title = "{Euro\TeX\,2005 announcement}", journal = j-TUGboat, volume = "24", number = "2", pages = "Cover 3", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Burbank:TB24-2-296, author = "Mimi Burbank", title = "{Production notes}", journal = j-TUGboat, volume = "24", number = "2", pages = "296--296", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-296, author = "Anonymous", title = "Future issues", journal = j-TUGboat, volume = "24", number = "2", pages = "296--296", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laakso:TB24-2-296, author = "Robin Laakso", title = "{Financial statements for 2003}", journal = j-TUGboat, volume = "24", number = "2", pages = "296--297", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-2/tb77treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-298, author = "Anonymous", title = "{TUG 2005 election}", journal = j-TUGboat, volume = "24", number = "2", pages = "298--298", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/election/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-293, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "24", number = "2", pages = "293--293", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB24-2-299, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "24", number = "2", pages = "299--299", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "77", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB24-3-302, author = "Yannis Haralambous", title = "{The {Euro\TeX} 2003 conference}", journal = j-TUGboat, volume = "24", number = "3", pages = "302--305", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/edit.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-306, author = "Anonymous", title = "Conference program and delegates", journal = j-TUGboat, volume = "24", number = "3", pages = "306--310", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Paput:TB24-3-311, author = "Christian Paput", title = "{French} typographic patrimony, conservation and teaching", journal = j-TUGboat, volume = "24", number = "3", pages = "311--313", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/paput.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Andre:TB24-3-314, author = "Jacques Andr{\'e}", title = "The {Cassetin project}{\Dash} Towards an inventory of ancient types and the related standardised encoding", journal = j-TUGboat, volume = "24", number = "3", pages = "314--318", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/andre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Syropoulos:TB24-3-319, author = "Apostolos Syropoulos", title = "Replicating archaic documents: A typographic challenge", journal = j-TUGboat, volume = "24", number = "3", pages = "319--322", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/syropoulos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lazrek:TB24-3-323, author = "Azzeddine Lazrek", title = "{CurExt, typesetting variable-sized curved symbols}", journal = j-TUGboat, volume = "24", number = "3", pages = "323--327", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/lazrek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Atanasiu:TB24-3-328, author = "Vlad Atanasiu", title = "{Allographic biometrics and behavior synthesis}", journal = j-TUGboat, volume = "24", number = "3", pages = "328--333", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/atanasiu.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Mourad:TB24-3-334, author = "Ghassan Mourad", title = "{La virgule viendrait-elle de l'{\'e}criture arabe ?} ({French}) [{Did} the comma come from {Arabic} writing?]", journal = j-TUGboat, volume = "24", number = "3", pages = "334--338", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/mourad2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", language = "French", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Souchier:TB24-3-339, author = "Emmanu{\"e}l Souchier", title = "Quelques remarques sur le sens et la servitude de la typographie", journal = j-TUGboat, volume = "24", number = "3", pages = "339--350", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Maniette:TB24-3-351, author = "Yves Maniette", title = "{Syst{\`e}me automatis{\'e} de co-r{\'e}daction de livres}", journal = j-TUGboat, volume = "24", number = "3", pages = "351--356", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Turcan:TB24-3-357, author = "Isabelle Turcan and Viviane Berthelier", title = "{{\smash{\'E}thique et {\'e}dition scientifique d'ouvrages anciens sur support {\'e}lectronique}}", journal = j-TUGboat, volume = "24", number = "3", pages = "357--368", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Haralambous:TB24-3-369, author = "Yannis Haralambous and John Plaice", title = "{{X\LaTeX, a \acro{DTD}/schema which is very close to \LaTeX}}", journal = j-TUGboat, volume = "24", number = "3", pages = "369--376", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/haralambous.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Grimm:TB24-3-377, author = "Jos{\'e} Grimm", title = "{Tralics, a {\LaTeX} to {\XML} translator}", journal = j-TUGboat, volume = "24", number = "3", pages = "377--388", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/grimm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Pepping:TB24-3-389, author = "Simon Pepping", title = "{{Docbook In \ConTeXt}, a {\ConTeXt} {\XML} mapping for DocBook documents}", journal = j-TUGboat, volume = "24", number = "3", pages = "389--401", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kanellos:TB24-3-402, author = "Ioannis Kanellos", title = "{Intertextualit{\'e} et typographie num{\'e}rique\Dash consid{\'e}rations s{\'e}mantiques sur le livre {\'e}lectronique}", journal = j-TUGboat, volume = "24", number = "3", pages = "402--410", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/kanellos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Mourad:TB24-3-411, author = "Ghassan Mourad", title = "{Nouveaux signes de lecture et d'{\'e}criture pour les documents {\'e}lectroniques}", journal = j-TUGboat, volume = "24", number = "3", pages = "411--414", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/mourad1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Chaix:TB24-3-415, author = "Marie-Louise Chaix and Fabrice Popineau", title = "{The XE{\slc M}{\TeX} project}", journal = j-TUGboat, volume = "24", number = "3", pages = "415--419", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/popineau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Laurens:TB24-3-420, author = "J{\'e}r{\^o}me Laurens", title = "{{i\TeX Mac, an integrated {\TeX} environment for \MacOSX}}", journal = j-TUGboat, volume = "24", number = "3", pages = "420--426", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Vecsei:TB24-3-427, author = "Bal{\'a}zs Vecsei", title = "{{Description of knowledge of mathematical programs with {\TeX} and \XML}}", journal = j-TUGboat, volume = "24", number = "3", pages = "427--429", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/balazs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Turner:TB24-3-430, author = "David Turner and Werner Lemberg", title = "{Real-time grid fitting of typographic outlines}", journal = j-TUGboat, volume = "24", number = "3", pages = "430--434", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/lemberg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Sutto:TB24-3-435, author = "Jean-Pierre Sutto and Pier Daniele Napolitani", title = "{L'utilisation du Mauro\kern.1em-{\TeX} pour l'{\'e}dition critique de Francesco Maurolico}", journal = j-TUGboat, volume = "24", number = "3", pages = "435--440", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/napolitani.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Szabo:TB24-3-441, author = "P{\'e}ter Szab{\'o}", title = "Inserting external figures with {GraphicP}", journal = j-TUGboat, volume = "24", number = "3", pages = "441--448", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/szabo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Horak:TB24-3-449, author = "Karel Hor{\'a}k", title = "Geometric diversions with {\TeX}, {\MF} and {\MP}", journal = j-TUGboat, volume = "24", number = "3", pages = "449--452", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/horak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Boulanger:TB24-3-453, author = "Fr{\'e}d{\'e}ric Boulanger", title = "Printing digital photographs with {\LaTeX}", journal = j-TUGboat, volume = "24", number = "3", pages = "453--461", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/boulanger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Kastrup:TB24-3-462, author = "David Kastrup", title = "{Output routine requirements for advanced typesetting tasks}", journal = j-TUGboat, volume = "24", number = "3", pages = "462--467", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/kastrup.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Widmann:TB24-3-468, author = "Thomas Widmann", title = "{{Bibulus\Dash a Perl/{\XML} replacement for \sl BibTeX}}", journal = j-TUGboat, volume = "24", number = "3", pages = "468--471", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Dagnat:TB24-3-472, author = "Fabien Dagnat and Ronan Keryell and Laura Barrero Sastre and Emmanuel Donin de Rosi{\`e}re and Nicolas Torneri", title = "{{\sl {BibTeX{\raise.25ex\hbox{\sl c++}}}}}: Toward higher-order {\BibTeX}ing", journal = j-TUGboat, volume = "24", number = "3", pages = "472--488", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/keryell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Hufflen:TB24-3-489, author = "Jean-Michel Hufflen", title = "{European} bibliography styles and {Ml\sl BibTeX}", journal = j-TUGboat, volume = "24", number = "3", pages = "489--498", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Olsak:TB24-3-499, author = "Petr Ol{\v{s}}{\'a}k", title = "{Second version of enc\TeX: \acro{UTF}-8 support}", journal = j-TUGboat, volume = "24", number = "3", pages = "499--501", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/olsak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Milo:TB24-3-502, author = "Thomas Milo", title = "{{\acro{ALI-BABA} and the 4.0 Unicode characters\Dash New input and output concepts under Unicode}}", journal = j-TUGboat, volume = "24", number = "3", pages = "502--511", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/milo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Plaice:TB24-3-512, author = "John Plaice and Yannis Haralambous", title = "{Generating multiple outputs from \OMEGA}", journal = j-TUGboat, volume = "24", number = "3", pages = "512--518", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Sastry:TB24-3-519, author = "B. V. Venkata Krishna Sastry", title = "{Enhanced font features for future multilingual digital typography with sound-script-language attribute integration}", journal = j-TUGboat, volume = "24", number = "3", pages = "519--526", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/sastry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Bujdoso:TB24-3-527, author = "Gy{\"o}ngyi Bujdos{\'o}", title = "{Contemporary Hungarian types and designers}", journal = j-TUGboat, volume = "24", number = "3", pages = "527--530", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/bujdoso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Williams:TB24-3-531, author = "George Williams", title = "{Font creation with FontForge}", journal = j-TUGboat, volume = "24", number = "3", pages = "531--544", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/williams.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Peterlin:TB24-3-545, author = "Primo{\v{z}} Peterlin", title = "{The free \acro{UCS} outline fonts project\Dash{}An attempt to create a global font}", journal = j-TUGboat, volume = "24", number = "3", pages = "545--549", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/peterlin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Mehta:TB24-3-550, author = "Anish Mehta and G{\'a}bor Bella and Yannis Haralambous", title = "{Adapting {\OMEGA} to OpenType fonts}", journal = j-TUGboat, volume = "24", number = "3", pages = "550--556", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/bella.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Toledo:TB24-3-557, author = "Sivan Toledo and Zvika Rosenberg", title = "{Experience with OpenType Font Production}", journal = j-TUGboat, volume = "24", number = "3", pages = "557--568", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/toledo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Vakulenko:TB24-3-569, author = "Serge Vakulenko", title = "{{The {\manual METATYPE} project: Creating TrueType fonts based on \MF}}", journal = j-TUGboat, volume = "24", number = "3", pages = "569--574", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/toledo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB24-3-575, author = "Bogus{\l}aw Jackowski and Janusz Nowacki and Piotr Strzelczyk", title = "{Programming {\PS} Type 1 fonts using Meta\kern-.1em Type1: Auditing, enhancing, creating}", journal = j-TUGboat, volume = "24", number = "3", pages = "575--581", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Wong:TB24-3-582, author = "Wai Wong and Candy L. K. Yiu and Kelvin C. F. Ng", title = "{Typesetting rare Chinese characters in \LaTeX}", journal = j-TUGboat, volume = "24", number = "3", pages = "582--587", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/wong.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Devroye:TB24-3-588, author = "Luc Devroye", title = "{Formatting font formats}", journal = j-TUGboat, volume = "24", number = "3", pages = "588--596", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/devroye.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Tombeur:TB24-3-597, author = "Jef Tombeur", title = "{Polices d'apprentissage de l'{\'e}criture}", journal = j-TUGboat, volume = "24", number = "3", pages = "597--604", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/tombeur1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Tombeur:TB24-3-605, author = "Jef Tombeur", title = "{R{\'e}formes philanthropiques et r{\'e}formes orthotypographiques, alphabets artificiels et synth{\'e}tiques}", journal = j-TUGboat, volume = "24", number = "3", pages = "605--618", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/tombeur2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-619, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "24", number = "3", pages = "619--620", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/calendar.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-621, author = "Anonymous", title = "{{\acro{TUG}\,2005, 23--25 August 2005, Wuhan, China}}", journal = j-TUGboat, volume = "24", number = "3", pages = "621--621", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-622, author = "Anonymous", title = "{Practical \TeX\,2005, 14--17 June 2005, Chapel Hill, North Carolina}", journal = j-TUGboat, volume = "24", number = "3", pages = "622--622", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/practicaltex2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-621-2, author = "Anonymous", title = "{TUG 2005 election report}", journal = j-TUGboat, volume = "24", number = "3", pages = "621--621", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-623, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "24", number = "3", pages = "623--623", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-623-2, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "24", number = "3", pages = "623--623", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-624, author = "Anonymous", title = "{{\sl Easy Table}, Khanh Ha}", journal = j-TUGboat, volume = "24", number = "3", pages = "624--624", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://omega.enstb.org/eurotex2003/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb24-3/ezad.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2003 Proceedings (Brest, France).", } @Article{Anonymous:TB24-3-c3, author = "Anonymous", title = "{H. W. Caslon \& Co.\ Ltd}", journal = j-TUGboat, volume = "24", number = "3", pages = "{c\,3}-{c\,3}", year = "2003", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "78", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Carnes:TB25-1-2, author = "Lance Carnes", title = "Highlights of the {Practical {\TeX} 2004} conference", journal = j-TUGboat, volume = "25", number = "1", pages = "2--3", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-1/carnes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-1-4, author = "Anonymous", title = "Conference program and delegates and sponsors", journal = j-TUGboat, volume = "25", number = "1", pages = "4--5", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-1/confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB25-1-6, author = "Karl Berry", title = "{Welcome to Practical {\TeX} 2004}", journal = j-TUGboat, volume = "25", number = "1", pages = "6--6", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-1/berry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beebe:TB25-1-7, author = "Nelson H. F. Beebe", title = "{25 Years of {\TeX} and \MF: Looking back and looking forward\Dash \acro{TUG}\,2003 keynote address}", journal = j-TUGboat, volume = "25", number = "1", pages = "7--30", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-1/beebe-2003keynote.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB25-1-31, author = "Peter Flynn", title = "{{\TeX} and the interfaces\Dash Practical \TeX\,2004 keynote address}", journal = j-TUGboat, volume = "25", number = "1", pages = "31--34", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Thanh:TB25-1-35, author = "H{\'a}n Th{\^e}\llap{\raise 0.5ex\hbox{\'{\relax}}} Th{\'a}nh", title = "{Micro-typographic extensions of pdf{\TeX} in practice}", journal = j-TUGboat, volume = "25", number = "1", pages = "35--38", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-1/thanh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gurari:TB25-1-39, author = "Eitan M. Gurari", title = "{{\TeX4ht: \acro{HTML} production}}", journal = j-TUGboat, volume = "25", number = "1", pages = "39--47", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/gurari.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Hagen:TB25-1-48, author = "Hans Hagen", title = "{The state of \ConTeXt}", journal = j-TUGboat, volume = "25", number = "1", pages = "48--51", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/hagen-context.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Grathwohl:TB25-1-52, author = "Steve Grathwohl", title = "{A simple book design in \ConTeXt}", journal = j-TUGboat, volume = "25", number = "1", pages = "52--57", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/grathwohl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Peter:TB25-1-58, author = "Steve Peter", title = "{{\TeX} and linguistics}", journal = j-TUGboat, volume = "25", number = "1", pages = "58--62", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/peter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Moses:TB25-1-63, author = "Brooks Moses", title = "{MetaPlot, MetaContour, and other collaborations with \MP}", journal = j-TUGboat, volume = "25", number = "1", pages = "63--70", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/moses.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Richter:TB25-1-71, author = "William M. Richter", title = "{{\TeX} and scripting languages}", journal = j-TUGboat, volume = "25", number = "1", pages = "71--88", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/richter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Beebe:TB25-1-89, author = "Nelson H. F. Beebe", title = "{A bibliographer's toolbox}", journal = j-TUGboat, volume = "25", number = "1", pages = "89--104", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/beebe-bib.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Hoekwater:TB25-1-105, author = "Taco Hoekwater", title = "{MetaPost developments}", journal = j-TUGboat, volume = "25", number = "1", pages = "105--105", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Bilotta:TB25-1-105, author = "Giuseppe Bilotta", title = "{The $ \aleph $ (Aleph) project}", journal = j-TUGboat, volume = "25", number = "1", pages = "105--107", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/bilotta.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Hagen:TB25-1-108, author = "Hans Hagen", title = "{The {\TeX} Live 2004 collection}", journal = j-TUGboat, volume = "25", number = "1", pages = "108--111", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/hagen-tl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-112, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "25", number = "1", pages = "112--113", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/calendar.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-114, author = "Anonymous", title = "{{\acro{TUG}\,2005, 23--25 August 2005, Wuhan, China}}", journal = j-TUGboat, volume = "25", number = "1", pages = "114--114", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-cover-3, author = "Anonymous", title = "{Practical \TeX\,2005, 14--17 June 2005, Chapel Hill, North Carolina}", journal = j-TUGboat, volume = "25", number = "1", pages = "Cover 3", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-1-120, author = "Anonymous", title = "{Recognition of support from Apple}", journal = j-TUGboat, volume = "25", number = "1", pages = "120--120", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/pctexapple.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-115, author = "Anonymous", title = "{TUG membership application}", journal = j-TUGboat, volume = "25", number = "1", pages = "115--115", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-116, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "25", number = "1", pages = "116--116", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-116-2, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "25", number = "1", pages = "116--116", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-114-2, author = "Anonymous", title = "{{\sl The {\LaTeX} Companion}, \nth{2} edition, by Frank Mittelbach et al.}", journal = j-TUGboat, volume = "25", number = "1", pages = "114--114", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-117, author = "Anonymous", title = "{{\sl Easy Table}, Khanh Ha}", journal = j-TUGboat, volume = "25", number = "1", pages = "117--117", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/ezad.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-118, author = "Anonymous", title = "{River Valley Technologies}", journal = j-TUGboat, volume = "25", number = "1", pages = "118--118", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/riversword.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-118-2, author = "Anonymous", title = "{MacKichan Software, Inc.}", journal = j-TUGboat, volume = "25", number = "1", pages = "118--118", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/riversword.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-119, author = "Anonymous", title = "{Carleton Production Centre}", journal = j-TUGboat, volume = "25", number = "1", pages = "119--119", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/chch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-119-2, author = "Anonymous", title = "{Cheryl Ponchin Training}", journal = j-TUGboat, volume = "25", number = "1", pages = "119--119", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/chch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Anonymous:TB25-1-120-2, author = "Anonymous", title = "{Personal \TeX, Inc.}", journal = j-TUGboat, volume = "25", number = "1", pages = "120--120", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2004/", URL = "http://www.tug.org/TUGboat/tb25-1/pctexapple.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "80", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2004 Proceedings (San Francisco, California).", } @Article{Berry:TB25-2-123, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "25", number = "2", pages = "123--124", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB25-2-124, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "25", number = "2", pages = "124--125", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB25-2-126, author = "Jim {Hefferon}", title = "{{\acro{CTAN} for starters}}", journal = j-TUGboat, volume = "25", number = "2", pages = "126--127", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Peter:TB25-2-128, author = "Steve Peter", title = "{{\cs{starttext}: Practical \ConTeXt}}", journal = j-TUGboat, volume = "25", number = "2", pages = "128--130", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81peter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schmitz:TB25-2-131, author = "Thomas Schmitz", title = "{Virtual fonts\Dash a tutorial}", journal = j-TUGboat, volume = "25", number = "2", pages = "131--133", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81schmitz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB25-2-134, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "25", number = "2", pages = "134--136", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB25-2-136, author = "Claudio Beccari and Cristiano Pulone", title = "{Philological facilities for the Coptic script}", journal = j-TUGboat, volume = "25", number = "2", pages = "136--140", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lazrek:TB25-2-141, author = "Azzeddine Lazrek", title = "{{\sf Ry\acro{DA}rab}\Dash Typesetting Arabic mathematical expressions}", journal = j-TUGboat, volume = "25", number = "2", pages = "141--149", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81lazrek.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pakin:TB25-2-150, author = "Scott Pakin", title = "{Perl\TeX: Defining {\LaTeX} macros using Perl}", journal = j-TUGboat, volume = "25", number = "2", pages = "150--159", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81pakin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kroonenberg:TB25-2-159, author = "Siep Kroonenberg", title = "{{\TeX} and prepress}", journal = j-TUGboat, volume = "25", number = "2", pages = "159--165", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81kroonenberg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Castier:TB25-2-166, author = "Marcelo Castier and Vladimir F. Cabral", title = "Automatic typesetting of formulas using computer algebra", journal = j-TUGboat, volume = "25", number = "2", pages = "166--172", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81castier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hwang:TB25-2-172, author = "Andrew D. Hwang", title = "{{\tt ePiX}: A utility for creating mathematically accurate figures}", journal = j-TUGboat, volume = "25", number = "2", pages = "172--176", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81hwang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagon:TB25-2-177, author = "J. P. Hagon", title = "{{\LaTeX} in 3D: {\sf OpenDX} annotations}", journal = j-TUGboat, volume = "25", number = "2", pages = "177--187", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81hagon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dominici:TB25-2-188, author = "Massimiliano Dominici", title = "{\sf dramatist}: Another package for typesetting drama with {\LaTeX}", journal = j-TUGboat, volume = "25", number = "2", pages = "188--192", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81dominici.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Law:TB25-2-193, author = "Simon Law", title = "{Variable width boxes in \LaTeX}", journal = j-TUGboat, volume = "25", number = "2", pages = "193--193", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81law.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adriaens:TB25-2-194, author = "Hendri Adriaens and Uwe Kern", title = "{{\sf xkeyval}\Dash new developments and mechanisms in key processing}", journal = j-TUGboat, volume = "25", number = "2", pages = "194--199", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81adriaens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB25-2-199, author = "David Walden", title = "{A non-expert looks at a small {\TeX} macro}", journal = j-TUGboat, volume = "25", number = "2", pages = "199--201", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB25-2-201, author = "Peter Wilson", title = "{Glisterings: Package/package and class/package clashes}", journal = j-TUGboat, volume = "25", number = "2", pages = "201--202", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LaPlante:TB25-2-203, author = "Mark LaPlante", title = "The treasure chest", journal = j-TUGboat, volume = "25", number = "2", pages = "203--208", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-209, author = "Anonymous", title = "{{\it Zpravodaj\/}: Contents of issues 13(1), 14(1), 14(2) (2003--2004)}", journal = j-TUGboat, volume = "25", number = "2", pages = "209--210", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81zprav.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-210, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 1--4/2003}", journal = j-TUGboat, volume = "25", number = "2", pages = "210--212", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-213, author = "Anonymous", title = "{{\it Biuletyn GUST\/}: Contents of issues 20--21 (2004)}", journal = j-TUGboat, volume = "25", number = "2", pages = "213--215", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81gust.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-215, author = "Anonymous", title = "{{\it Les Cahiers GUTenberg\/}: Contents of issue 43 (2003)}", journal = j-TUGboat, volume = "25", number = "2", pages = "215--215", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81gust.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-216, author = "Anonymous", title = "{{\it MAPS\/}: Contents of issues 29--31 (2003--2004)}", journal = j-TUGboat, volume = "25", number = "2", pages = "216--220", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-221, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "25", number = "2", pages = "221--222", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bari:TB25-2-223, author = "Onofrio de Bari and Maurizio Himmelmann", title = "{A brief report on the first GuIT meeting}", journal = j-TUGboat, volume = "25", number = "2", pages = "223--223", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81guit.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-223, author = "Anonymous", title = "{{\acro{TUG}\,2005 announcement}}", journal = j-TUGboat, volume = "25", number = "2", pages = "223--223", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://tug.org/tug2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB25-2-224, author = "Karl Berry and Kaja Christiansen", title = "{{\TeX} Development Fund 2003--05 report}", journal = j-TUGboat, volume = "25", number = "2", pages = "224--225", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81devfund.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laakso:TB25-2-226, author = "Robin Laakso", title = "Financial statements for 2004", journal = j-TUGboat, volume = "25", number = "2", pages = "226--227", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB25-2-228, author = "Barbara Beeton", title = "{{\acro{TUG} 2005 election report}}", journal = j-TUGboat, volume = "25", number = "2", pages = "228--231", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb25-2/tb81elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-232, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "25", number = "2", pages = "232--232", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB25-2-232-2, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "25", number = "2", pages = "232--232", year = "2004", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "81", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB26-1-3, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "26", number = "1", pages = "3--3", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Beeton:TB26-1-3, author = "Barbara Beeton", title = "{Editorial comments}", journal = j-TUGboat, volume = "26", number = "1", pages = "3--5", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Beeton:TB26-1-5, author = "Barbara Beeton", title = "{Hyphenation exception log}", journal = j-TUGboat, volume = "26", number = "1", pages = "5--6", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Quaresma:TB26-1-7, author = "Pedro Quaresma", title = "{Stacks in \TeX}", journal = j-TUGboat, volume = "26", number = "1", pages = "7--9", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82quar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Roegel:TB26-1-10, author = "Denis Roegel", title = "{Kissing circles: A French romance in MetaPost}", journal = j-TUGboat, volume = "26", number = "1", pages = "10--17", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82roegel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Miller:TB26-1-17, author = "Tristan Miller", title = "{Using the \acro{RPM} package manager for {\AllTeX} packages}", journal = j-TUGboat, volume = "26", number = "1", pages = "17--28", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82miller-rpm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-29, author = "Anonymous", title = "{Conference program, delegates, and sponsors}", journal = j-TUGboat, volume = "26", number = "1", pages = "29--30", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Flom:TB26-1-31, author = "Peter Flom and Tristan Miller", title = "{Impressions from Prac\TeX'05}", journal = j-TUGboat, volume = "26", number = "1", pages = "31--32", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/impressions.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Beebe:TB26-1-33, author = "Nelson Beebe", title = "{The design of {\TeX} and {\slMF}: A retrospective}", journal = j-TUGboat, volume = "26", number = "1", pages = "33--41", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Flom:TB26-1-52, author = "Peter Flom", title = "{A {\LaTeX} fledgling struggles to take flight}", journal = j-TUGboat, volume = "26", number = "1", pages = "52--55", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/flom.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Schwartz:TB26-1-56, author = "Anita Schwartz", title = "{The art of {\LaTeX} problem solving}", journal = j-TUGboat, volume = "26", number = "1", pages = "56--58", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/schwartz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Hoppner:TB26-1-59, author = "Klaus H{\"o}ppner", title = "{Strategies for including graphics in {\LaTeX} documents}", journal = j-TUGboat, volume = "26", number = "1", pages = "59--62", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/hoeppner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Hogg:TB26-1-63, author = "Joseph Hogg", title = "{Making a booklet}", journal = j-TUGboat, volume = "26", number = "1", pages = "63--65", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/hogg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Flynn:TB26-1-66, author = "Peter Flynn", title = "{{\LaTeX} on the Web}", journal = j-TUGboat, volume = "26", number = "1", pages = "66--67", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Mertz:TB26-1-68, author = "Andrew Mertz and William Slough", title = "{Beamer by example}", journal = j-TUGboat, volume = "26", number = "1", pages = "68--73", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/mertz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Bazargan:TB26-1-74, author = "Kaveh Bazargan", title = "{Batch Commander: A graphical user interface for \TeX}", journal = j-TUGboat, volume = "26", number = "1", pages = "74--80", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/bazargan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Ignat:TB26-1-81, author = "David Ignat", title = "{Word to \LaTeX{} for a large, multi-author scientific paper}", journal = j-TUGboat, volume = "26", number = "1", pages = "81--84", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ignat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Miller:TB26-1-85, author = "Tristan Miller", title = "{Biblet}: A portable {\BibTeX} bibliography style for generating highly customizable \acro{XHTML}", journal = j-TUGboat, volume = "26", number = "1", pages = "85--96", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/miller-biblet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-97, author = "Anonymous", title = "Abstracts {(Allen, Burt, Fehd, Gurari, Janc, Kew, Peter)}", journal = j-TUGboat, volume = "26", number = "1", pages = "97--98", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-1-99, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "26", number = "1", pages = "99--100", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/tb82calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-104, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "26", number = "1", pages = "104--104", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-1-104-2, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "26", number = "1", pages = "104--104", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-1-101, author = "Anonymous", title = "{Silmaril Consultants}", journal = j-TUGboat, volume = "26", number = "1", pages = "101--101", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-101-2, author = "Anonymous", title = "{Joe Hogg}", journal = j-TUGboat, volume = "26", number = "1", pages = "101--101", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-101-3, author = "Anonymous", title = "{Carleton Production Centre}", journal = j-TUGboat, volume = "26", number = "1", pages = "101--101", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-102, author = "Anonymous", title = "{Personal {\TeX}, Inc.}", journal = j-TUGboat, volume = "26", number = "1", pages = "102--102", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-102-2, author = "Anonymous", title = "{River Valley Technologies}", journal = j-TUGboat, volume = "26", number = "1", pages = "102--102", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-102-3, author = "Anonymous", title = "{Design Science, Inc.}", journal = j-TUGboat, volume = "26", number = "1", pages = "102--102", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-102-4, author = "Anonymous", title = "{{\sl The {\LaTeX} Companion}, \nth{2} edition, by Frank Mittelbach et al.}", journal = j-TUGboat, volume = "26", number = "1", pages = "102--102", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-103, author = "Anonymous", title = "{Steve Peter}", journal = j-TUGboat, volume = "26", number = "1", pages = "103--103", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-103-2, author = "Anonymous", title = "{Cheryl Ponchin Training}", journal = j-TUGboat, volume = "26", number = "1", pages = "103--103", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-1-103-3, author = "Anonymous", title = "{MacKichan Software, Inc.}", journal = j-TUGboat, volume = "26", number = "1", pages = "103--103", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2005/", URL = "http://www.tug.org/TUGboat/tb26-1/ad3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "82", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2005 Proceedings (Chapel Hill, North Carolina).", } @Article{Anonymous:TB26-2-106, author = "Anonymous", title = "{Conference program, delegates, and sponsors}", journal = j-TUGboat, volume = "26", number = "2", pages = "106--107", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Laakso:TB26-2-108, author = "Robin Laakso", title = "{{Highlights from \acro{TUG}\,2005}}", journal = j-TUGboat, volume = "26", number = "2", pages = "108--109", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/laakso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-110, author = "Anonymous", title = "{Conference photos}", journal = j-TUGboat, volume = "26", number = "2", pages = "110--110", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/confphoto.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Wong:TB26-2-111, author = "Wai Wong", title = "{Typesetting Chinese: A personal perspective}", journal = j-TUGboat, volume = "26", number = "2", pages = "111--114", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/wong.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Kew:TB26-2-115, author = "Jonathan Kew", title = "{{\XeTeX, the Multilingual Lion: {\TeX} meets Unicode and smart font technologies}}", journal = j-TUGboat, volume = "26", number = "2", pages = "115--124", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/kew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Laguna:TB26-2-125, author = "Javier Rodr{\'\i}guez Laguna", title = "{{H{\'o}ng-Z\kern.05em{\`{}\i}: A Chinese \MF}}", journal = j-TUGboat, volume = "26", number = "2", pages = "125--128", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/laguna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Yiu:TB26-2-129, author = "Candy L. K. Yiu and Jim Binkley", title = "{Qin notation generator}", journal = j-TUGboat, volume = "26", number = "2", pages = "129--134", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/yiu.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Bagchee:TB26-2-135, author = "Nandan Bagchee and Eitan M. Gurari", title = "{SwiExr: Spatial math exercises and worksheets, in Braille and print}", journal = j-TUGboat, volume = "26", number = "2", pages = "135--141", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/gurari.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Taylor:TB26-2-142, author = "Philip Taylor", title = "{{Typesetting the Byzantine {\it Cappelli}}}", journal = j-TUGboat, volume = "26", number = "2", pages = "142--151", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/taylor.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Hagen:TB26-2-152, author = "Hans Hagen", title = "{Lua{\TeX}: Howling to the moon}", journal = j-TUGboat, volume = "26", number = "2", pages = "152--157", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Piska:TB26-2-158, author = "Karel P{\'\i}{\v{s}}ka", title = "{{Converting {\MF} sources to outline fonts using \MP}}", journal = j-TUGboat, volume = "26", number = "2", pages = "158--164", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/piska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Venkatesan:TB26-2-165, author = "S. K. Venkatesan", title = "{Moving from bytes to words to semantics}", journal = j-TUGboat, volume = "26", number = "2", pages = "165--168", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-2/venkat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-2-169, author = "Anonymous", title = "{Abstracts \ (Cho, Hong, Rowley, Taylor)}", journal = j-TUGboat, volume = "26", number = "2", pages = "169--169", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-2-170, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "26", number = "2", pages = "170--171", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/tb83calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-174, author = "Anonymous", title = "{{\TeX} Collection 2005 (\TeX\,Live, pro{\TeX}t, Mac\TeX, \acro{CTAN})}", journal = j-TUGboat, volume = "26", number = "2", pages = "174--174", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/texcollection05.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-175, author = "Anonymous", title = "{Euro{\TeX} 2006 announcement}", journal = j-TUGboat, volume = "26", number = "2", pages = "175--175", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/eurotex06.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-176, author = "Anonymous", title = "{TUG 2006 announcement}", journal = j-TUGboat, volume = "26", number = "2", pages = "176--176", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/TUGboat/tb26-2/tug06.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-172, author = "Anonymous", title = "{TUG membership form}", journal = j-TUGboat, volume = "26", number = "2", pages = "172--172", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-173, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "26", number = "2", pages = "173--173", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-173-2, author = "Anonymous", title = "{{\TeX} consulting and production services}", journal = j-TUGboat, volume = "26", number = "2", pages = "173--173", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2005/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2005 Proceedings (Wuhan, China).", } @Article{Anonymous:TB26-2-c3, author = "Anonymous", title = "{Table of contents, ordered by difficulty}", journal = j-TUGboat, volume = "26", number = "2", pages = "{c3}-{c3}", year = "2005", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "83", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB26-3-179, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "26", number = "3", pages = "179--179", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB26-3-180, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "26", number = "3", pages = "180--182", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pignalberi:TB26-3-183, author = "Gianluca Pignalberi", title = "Interview with {Donald E. Knuth}", journal = j-TUGboat, volume = "26", number = "3", pages = "183--185", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tomaszewski:TB26-3-186, author = "Andrzej Tomaszewski", title = "Implementing editors' ideas\Dash lots of fun, sometimes even more trouble", journal = j-TUGboat, volume = "26", number = "3", pages = "186--187", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84tomaszewski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB26-3-188, author = "Jim {Hefferon}", title = "Minutes in less than hours: {Using} {\LaTeX} resources", journal = j-TUGboat, volume = "26", number = "3", pages = "188--192", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Peter:TB26-3-193, author = "Steve Peter", title = "\cs{starttext}: {Swelled} rules and {MetaPost}", journal = j-TUGboat, volume = "26", number = "3", pages = "193--195", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84peter.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB26-3-196, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "26", number = "3", pages = "196--198", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB26-3-199, author = "Peter Wilson", title = "The alphabet tree", journal = j-TUGboat, volume = "26", number = "3", pages = "199--214", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84wilson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Robertson:TB26-3-215, author = "Will Robertson", title = "Advanced font features with {\XeTeX}\Dash the {\sf fontspec} package", journal = j-TUGboat, volume = "26", number = "3", pages = "215--223", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84robertson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vamvakas:TB26-3-224, author = "Ioannis Vamvakas and Panagiotis Kotopoulis", title = "{ByZ\LaTeX}: {A} package for typesetting {``Byzantine''} music", journal = j-TUGboat, volume = "26", number = "3", pages = "224--232", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84vamvakas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wierda:TB26-3-235, author = "Gerben Wierda", title = "{i-Installer}: {The} evolution of a {\TeX} install on {\MacOSX}", journal = j-TUGboat, volume = "26", number = "3", pages = "233--238", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84wierda.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schulz:TB26-3-239, author = "Herbert Schulz", title = "The {Mac\TeX} distribution", journal = j-TUGboat, volume = "26", number = "3", pages = "239--240", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84schulz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Preining:TB26-3-241, author = "Norbert Preining", title = "{\TeX} {Live} for {Debian}", journal = j-TUGboat, volume = "26", number = "3", pages = "241--242", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84preining.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB26-3-243, author = "Hans Hagen", title = "Hyphenation patterns in {\ConTeXt}", journal = j-TUGboat, volume = "26", number = "3", pages = "243--245", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barr:TB26-3-246, author = "Michael Barr", title = "{{\sf Diagxy}}, a {Lego}-like diagram package", journal = j-TUGboat, volume = "26", number = "3", pages = "246--249", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84barr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Henderson:TB26-3-250, author = "Troy Henderson", title = "Embedding fonts in {MetaPost} output", journal = j-TUGboat, volume = "26", number = "3", pages = "250--252", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB26-3-253, author = "Peter Wilson", title = "Glisterings", journal = j-TUGboat, volume = "26", number = "3", pages = "253--255", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-256, author = "Anonymous", title = "Pearls of {\TeX} programming", journal = j-TUGboat, volume = "26", number = "3", pages = "256--263", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84pearls.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LaPlante:TB26-3-264, author = "Mark LaPlante", title = "The treasure chest", journal = j-TUGboat, volume = "26", number = "3", pages = "264--267", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adriaens:TB26-3-268, author = "Hendri Adriaens and Christopher Ellison", title = "{\sf powerdot}\Dash making presentations with {\LaTeX}", journal = j-TUGboat, volume = "26", number = "3", pages = "268--272", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84adriaens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gregorio:TB26-3-273, author = "Enrico Gregorio", title = "Horrors in {\LaTeX}: How to misuse {\LaTeX} and make a {\it copy editor\/} unhappy", journal = j-TUGboat, volume = "26", number = "3", pages = "273--279", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84gregorio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB26-3-280, author = "Karl Berry and Oleg Katsitadze", title = "Eplain 3: {Expanded} plain {\TeX}", journal = j-TUGboat, volume = "26", number = "3", pages = "280--286", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84katsi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-287, author = "Anonymous", title = "{{\it \TeX emplares\/}}: {Contents} of issue 7 (2005)", journal = j-TUGboat, volume = "26", number = "3", pages = "287--287", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-287-2, author = "Anonymous", title = "{{\it Zpravodaj\/}}: {Contents} of issues {\bf 14}(3--4), {\bf 15}(1), {\bf 15}(2) (2004--05)", journal = j-TUGboat, volume = "26", number = "3", pages = "287--289", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-289, author = "Anonymous", title = "{{\it Les Cahiers GUTenberg\/}}: {Contents} of double issue 44--45 (2004)", journal = j-TUGboat, volume = "26", number = "3", pages = "289--290", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-290, author = "Anonymous", title = "{{\it MAPS\/}}: {Contents} of issues 32 (2005)", journal = j-TUGboat, volume = "26", number = "3", pages = "290--291", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-292, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}}: {Contents} of issues 2005-1--2005-4 (2005)", journal = j-TUGboat, volume = "26", number = "3", pages = "292--296", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-297, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "26", number = "3", pages = "297--298", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-302, author = "Anonymous", title = "{Practical {\TeX} 2006, Piscataway, NJ, July 30--August 1, 2006}", journal = j-TUGboat, volume = "26", number = "3", pages = "302--302", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-303, author = "Anonymous", title = "{Euro\TeX\,2006, Debrecen, Hungary, July 5--8, 2006}", journal = j-TUGboat, volume = "26", number = "3", pages = "303--303", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-304, author = "Anonymous", title = "{TUG\,2006, Marrakesh, Morocco, November 9--11, 2006}", journal = j-TUGboat, volume = "26", number = "3", pages = "304--304", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Laakso:TB26-3-298, author = "Robin Laakso", title = "Financial statements for 2005", journal = j-TUGboat, volume = "26", number = "3", pages = "298--299", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB26-3-300, author = "Karl Berry and Kaja Christiansen", title = "{\TeX} {Development Fund} 2005 report", journal = j-TUGboat, volume = "26", number = "3", pages = "300--300", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/tb84devfund.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-301, author = "Anonymous", title = "{TUG} membership form", journal = j-TUGboat, volume = "26", number = "3", pages = "301--301", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-302-2, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "26", number = "3", pages = "302--302", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-300, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "26", number = "3", pages = "300--300", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb26-3/consultants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB26-3-c3, author = "Anonymous", title = "Table of contents, ordered by difficulty", journal = j-TUGboat, volume = "26", number = "3", pages = "{c3}-{c3}", year = "2005", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "84", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB27-1-2, author = "Anonymous", title = "Conference delegates and sponsors", journal = j-TUGboat, volume = "27", number = "1", pages = "2--2", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Bujdoso:TB27-1-3, author = "Gy{\"o}ngyi Bujdos{\'o}", title = "The {Hungarian {\TeX} Rhapsody\Dash Euro{\TeX} 2006}", journal = j-TUGboat, volume = "27", number = "1", pages = "3--3", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86bujdoso-intro.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Bella:TB27-1-4, author = "G{\'a}bor Bella", title = "Impressions from {Euro{\TeX} 2006}", journal = j-TUGboat, volume = "27", number = "1", pages = "4--7", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86bella.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Viragvolgyi:TB27-1-8, author = "Andr{\'a}s Vir{\'a}gv{\"o}lgyi", title = "Would {Aldus Manutius} have used {\TeX}?", journal = j-TUGboat, volume = "27", number = "1", pages = "8--12", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86viragvolgyi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{al:TB27-1-13, author = "Katalin Fried \lowercase{et al.}", title = "The colourful side of {\TeX}", journal = j-TUGboat, volume = "27", number = "1", pages = "13--15", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86fried.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Hoekwater:TB27-1-16, author = "Taco Hoekwater", title = "Opening up the type", journal = j-TUGboat, volume = "27", number = "1", pages = "16--17", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86hoekwater-luatex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Hoekwater:TB27-1-18, author = "Taco Hoekwater", title = "{MetaPost} developments\Dash autumn 2006", journal = j-TUGboat, volume = "27", number = "1", pages = "18--21", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86hoekwater-metapost.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Kroonenberg:TB27-1-22, author = "Siep Kroonenberg", title = "Managing a network {\TeX} installation under {Windows}", journal = j-TUGboat, volume = "27", number = "1", pages = "22--27", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86kroonenberg-miktex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Bujdoso:TB27-1-28, author = "Gy{\"o}ngyi Bujdos{\'o}", title = "Typography based on-line help on {\TeX}", journal = j-TUGboat, volume = "27", number = "1", pages = "28--31", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86bujdoso-help.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Nemeth:TB27-1-32, author = "L{\'a}szl{\'o} N{\'e}meth", title = "Automatic non-standard hyphenation in {OpenOffice.org}", journal = j-TUGboat, volume = "27", number = "1", pages = "32--37", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86nemeth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Hagen:TB27-1-38, author = "Hans Hagen", title = "What tools do {\ConTeXt} users have?", journal = j-TUGboat, volume = "27", number = "1", pages = "38--42", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Miklos:TB27-1-43, author = "Ildik{\'o} Mikl{\'o}s", title = "{K{\"o}MaL} {CD}\Dash {The} execution", journal = j-TUGboat, volume = "27", number = "1", pages = "43--44", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86miklos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Bouche:TB27-1-45, author = "Thierry Bouche", title = "A {pdf\LaTeX}-based automated journal production system", journal = j-TUGboat, volume = "27", number = "1", pages = "45--50", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86bouche.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Bencze:TB27-1-51, author = "Istv{\'a}n Bencze and Bal{\'a}zs Fark and L{\'a}szl{\'o} Hatala and P{\'e}ter Jeszenszky", title = "Server side {\PDF} generation based on {\LaTeX} templates", journal = j-TUGboat, volume = "27", number = "1", pages = "51--56", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86bencze.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Szabo:TB27-1-57, author = "P{\'e}ter Szab{\'o} and Andr{\'a}s Hrask{\'o}", title = "Managing a math exercise database with {\LaTeX}", journal = j-TUGboat, volume = "27", number = "1", pages = "57--61", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86szabo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Hoekwater:TB27-1-62, author = "Taco Hoekwater and Hans Hagen", title = "The making of a ({\TeX}) font", journal = j-TUGboat, volume = "27", number = "1", pages = "62--65", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86hoekwater-cows.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Kroonenberg:TB27-1-66, author = "Siep Kroonenberg", title = "Font installation the shallow way", journal = j-TUGboat, volume = "27", number = "1", pages = "66--70", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86kroonenberg-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Piska:TB27-1-71, author = "Karel P{\'\i}{\v{s}}ka", title = "Font verification and comparison in examples", journal = j-TUGboat, volume = "27", number = "1", pages = "71--75", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86piska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Hufflen:TB27-1-76, author = "Jean-Michel Hufflen", title = "{Ml{\sl BibTeX}} meets {\ConTeXt}", journal = j-TUGboat, volume = "27", number = "1", pages = "76--82", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Jackowski:TB27-1-83, author = "Bogus{\l}aw Jackowski", title = "{Appendix G} illuminated", journal = j-TUGboat, volume = "27", number = "1", pages = "83--90", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Haralambous:TB27-1-91, author = "Yannis Haralambous and G{\'a}bor Bella and Atif Gulzar", title = "Open-belly surgery in {$ \Omega_2 $}", journal = j-TUGboat, volume = "27", number = "1", pages = "91--97", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86haralambous-o2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Haralambous:TB27-1-98, author = "Yannis Haralambous", title = "New hyphenation techniques in {$ \Omega_2 $}", journal = j-TUGboat, volume = "27", number = "1", pages = "98--103", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86haralambous-hyph.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Anonymous:TB27-1-104, author = "Anonymous", title = "Abstracts {(Fahmy, Hagen, Henkel, Hufflen, Rad{\'o} et al., Schr{\"o}der, Szab{\'o})}", journal = j-TUGboat, volume = "27", number = "1", pages = "104--105", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB27-1-106, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "27", number = "1", pages = "106--106", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb27-1/tb86calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Anonymous:TB27-1-107, author = "Anonymous", title = "{TUG 2007} election", journal = j-TUGboat, volume = "27", number = "1", pages = "107--107", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Anonymous:TB27-1-107-2, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "27", number = "1", pages = "107--107", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Anonymous:TB27-1-108, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "27", number = "1", pages = "108--108", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.matexhu.org/eurotex2006/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "86", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2006 Proceedings (Debrecen, Hungary).", } @Article{Berry:TB27-2-110, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "27", number = "2", pages = "110--110", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Beeton:TB27-2-111, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "27", number = "2", pages = "111--111", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Owens:TB27-2-112, author = "John Owens", title = "The installation and use of {OpenType} fonts in {\LaTeX}", journal = j-TUGboat, volume = "27", number = "2", pages = "112--118", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87owens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Wilson:TB27-2-119, author = "Peter Wilson", title = "Glisterings: {Address} lists, animated books", journal = j-TUGboat, volume = "27", number = "2", pages = "119--120", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Hall:TB27-2-121, author = "Timothy Hall", title = "Brackets around anything", journal = j-TUGboat, volume = "27", number = "2", pages = "121--124", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87hall.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Alex:TB27-2-125, author = "{Alex A. J.}", title = "Typesetting {Malayalam} using {\OMEGA}", journal = j-TUGboat, volume = "27", number = "2", pages = "125--126", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87aj.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-127, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "27", number = "2", pages = "127--130", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Hoekwater:TB27-2-131, author = "Taco Hoekwater", title = "{TUG 2006} report", journal = j-TUGboat, volume = "27", number = "2", pages = "131--136", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Benatia:TB27-2-137, author = "Mohamed Jamal Eddine Benatia and Mohamed Elyaakoubi and Azzeddine Lazrek", title = "{Arabic} text justification", journal = j-TUGboat, volume = "27", number = "2", pages = "137--146", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87benatia.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Jabri:TB27-2-147, author = "Youssef Jabri", title = "The {Arabi} system\Dash {\TeX} writes in {Arabic} and {Farsi}", journal = j-TUGboat, volume = "27", number = "2", pages = "147--153", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87jabri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Eddahibi:TB27-2-154, author = "Mustapha Eddahibi and Azzeddine Lazrek and Khalid Sami", title = "{{Dad\TeX}}\Dash {A} full {Arabic} interface", journal = j-TUGboat, volume = "27", number = "2", pages = "154--158", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87eddahibi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Fahmy:TB27-2-159, author = "Hossam A. H. Fahmy", title = "{AlQalam} for typesetting traditional {Arabic} texts", journal = j-TUGboat, volume = "27", number = "2", pages = "159--166", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87fahmy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Haralambous:TB27-2-167, author = "Yannis Haralambous", title = "Infrastructure for high-quality {Arabic} typesetting", journal = j-TUGboat, volume = "27", number = "2", pages = "167--175", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87haralambous.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Wagner:TB27-2-176, author = "Zden{\v{e}}k Wagner", title = "{Babel} speaks {Hindi}", journal = j-TUGboat, volume = "27", number = "2", pages = "176--180", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87wagner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Syropoulos:TB27-2-181, author = "Apostolos Syropoulos", title = "{\LaTeX} as a tool for the typographic reproduction of ancient texts", journal = j-TUGboat, volume = "27", number = "2", pages = "181--186", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87syropoulos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Smirnova:TB27-2-187, author = "Elena Smirnova and Stephen M. Watt", title = "Generating {\TeX} from mathematical content with respect to notational settings", journal = j-TUGboat, volume = "27", number = "2", pages = "187--196", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87smirnova.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Frischauf:TB27-2-197, author = "Adrian Frischauf and Paul Libbrecht", title = "{{\acrosl DVI\/}}2\/{{\acrosl SVG}}: {Using} {\LaTeX} layout on the {Web}", journal = j-TUGboat, volume = "27", number = "2", pages = "197--201", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87frischauf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Beccari:TB27-2-202, author = "Claudio Beccari", title = "{{\LaTeXe}}, {\tt pict2e} and complex numbers", journal = j-TUGboat, volume = "27", number = "2", pages = "202--212", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Hogholm:TB27-2-213, author = "Morten H{\o}gholm", title = "Page design in {\LaTeX3}", journal = j-TUGboat, volume = "27", number = "2", pages = "213--218", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87hoegholm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Hagen:TB27-2-219, author = "Hans Hagen", title = "\acro{MKII}--\acro{MKIV}", journal = j-TUGboat, volume = "27", number = "2", pages = "219--227", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87hagen-context.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Kew:TB27-2-228, author = "Jonathan Kew", title = "{Unicode} and multilingual typesetting with {\XeTeX}", journal = j-TUGboat, volume = "27", number = "2", pages = "228--229", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87kew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Hagen:TB27-2-230, author = "Hans Hagen and Jerzy B. Ludwichowski and Volker R. W. Schaa", title = "The {New Font Project}: {\TeX} {Gyre}", journal = j-TUGboat, volume = "27", number = "2", pages = "230--233", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87hagen-gyre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Piska:TB27-2-234, author = "Karel P{\'\i}{\v{s}}ka", title = "Outline font extensions for {Arabic} typesetting", journal = j-TUGboat, volume = "27", number = "2", pages = "234--237", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87piska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Mounayerji:TB27-2-238, author = "F. Mounayerji and M. A. Naal", title = "{Arabic} font building for {\LaTeX}", journal = j-TUGboat, volume = "27", number = "2", pages = "238--240", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87mounayerji.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Rowley:TB27-2-241, author = "Chris Rowley", title = "Everything we want to know about {Font Resources}", journal = j-TUGboat, volume = "27", number = "2", pages = "241--242", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87rowley.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Hufflen:TB27-2-243, author = "Jean-Michel Hufflen", title = "Names in {{\sl BibTeX}} and ml{{\sl BibTeX}}", journal = j-TUGboat, volume = "27", number = "2", pages = "243--253", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-254, author = "Anonymous", title = "Abstracts {(Beeton, Bujdos{\'o}, Feuerstack, Hagen, Hoekwater, Ludwichowski, Wierda)}", journal = j-TUGboat, volume = "27", number = "2", pages = "254--255", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB27-2-256, author = "Anonymous", title = "{{\it MAPS\/}: Contents of issues 33--34 (2005--06)}", journal = j-TUGboat, volume = "27", number = "2", pages = "256--257", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-258, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 1} (2006)", journal = j-TUGboat, volume = "27", number = "2", pages = "258--258", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-258-2, author = "Anonymous", title = "{{\it Biuletyn GUST\/}: Contents of issues 22--23 (2005--06)}", journal = j-TUGboat, volume = "27", number = "2", pages = "258--262", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-263, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "27", number = "2", pages = "263--263", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-264, author = "Anonymous", title = "{EuroBacho{\TeX} 2007} announcement", journal = j-TUGboat, volume = "27", number = "2", pages = "264--264", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87eurotex07.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Bari:TB27-2-265, author = "Onofrio de Bari", title = "The {3rd Annual GuIT Meeting}", journal = j-TUGboat, volume = "27", number = "2", pages = "265--265", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87guituktug.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Goldie:TB27-2-266, author = "Charles Goldie", title = "\acro{UKTUG} sponsors day of {\LaTeX}", journal = j-TUGboat, volume = "27", number = "2", pages = "266--266", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/TUGboat/tb27-2/tb87guituktug.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-266, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "27", number = "2", pages = "266--266", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Anonymous:TB27-2-267, author = "Anonymous", title = "{TUG} membership form", journal = j-TUGboat, volume = "27", number = "2", pages = "267--267", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB27-2-268, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "27", number = "2", pages = "268--268", year = "2006", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2006/", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "87", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2006 Proceedings (Marrakesh, Morocco), and regular articles.", } @Article{Berry:TB28-1-3, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "28", number = "1", pages = "3--3", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Beeton:TB28-1-4, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "28", number = "1", pages = "4--4", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-1/tb88beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB28-1-4, author = "Donald E. Knuth", title = "{\TeX}'s infinite glue is projective", journal = j-TUGboat, volume = "28", number = "1", pages = "4--4", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Parashchenko:TB28-1-5, author = "Oleg Parashchenko", title = "{{\TeX\acro{ML}}}: {Resurrecting} {\TeX} in the {\XML} world", journal = j-TUGboat, volume = "28", number = "1", pages = "5--10", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88parashchenko.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Beeton:TB28-1-11, author = "Barbara Beeton and Idris Hamid", title = "{Oriental \TeX}: A new direction in scholarly complex-script typesetting", journal = j-TUGboat, volume = "28", number = "1", pages = "11--11", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88hamid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Wilson:TB28-1-12, author = "Peter Wilson", title = "Glisterings: stringing along; loops", journal = j-TUGboat, volume = "28", number = "1", pages = "12--14", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{LaPlante:TB28-1-15, author = "Mark LaPlante", title = "The treasure chest", journal = j-TUGboat, volume = "28", number = "1", pages = "15--19", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Tortosa:TB28-1-20, author = "Ignacio {Llopis Tortosa} and Mar{\'\i}a Jos{\'e} {Castro Bleda}", title = "{paper\TeX}: {Creating} newspapers using {\LaTeXe}", journal = j-TUGboat, volume = "28", number = "1", pages = "20--23", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88tortosa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Team:TB28-1-24, author = "{\LaTeX{} Project Team}", title = "{\LaTeX} news, issue 17", journal = j-TUGboat, volume = "28", number = "1", pages = "24--25", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-1/tb88ltnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-1-26, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "28", number = "1", pages = "26--26", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Beeton:TB28-1-29, author = "Barbara Beeton", title = "How to create a {\TeX} journal: {A} personal journey", journal = j-TUGboat, volume = "28", number = "1", pages = "29--48", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88beet-keynote.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Walden:TB28-1-49, author = "David Walden", title = "A lifetime as an amateur compositor", journal = j-TUGboat, volume = "28", number = "1", pages = "49--60", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Dearborn:TB28-1-61, author = "Elizabeth Dearborn", title = "{\TeX} and medicine", journal = j-TUGboat, volume = "28", number = "1", pages = "61--64", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88dearborn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Breitenbucher:TB28-1-65, author = "Jon Breitenbucher", title = "{\LaTeX} at a liberal arts college", journal = j-TUGboat, volume = "28", number = "1", pages = "65--69", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88breitenbucher.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Veytsman:TB28-1-70, author = "Boris Veytsman", title = "Design of presentations: {Notes} on principles and {\LaTeX} implementation", journal = j-TUGboat, volume = "28", number = "1", pages = "70--76", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88veytsman-presentations.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Veytsman:TB28-1-77, author = "Boris Veytsman and Maria Shmilevich", title = "Automatic report generation with {Web}, {\TeX} and \acro{SQL}", journal = j-TUGboat, volume = "28", number = "1", pages = "77--79", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88veytsman-report.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Neveln:TB28-1-80, author = "Bob Neveln and Bob Alps", title = "Writing and checking complete proofs in {\TeX}", journal = j-TUGboat, volume = "28", number = "1", pages = "80--83", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88neveln.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Henderson:TB28-1-84, author = "Troy Henderson", title = "A beginner's guide to {MetaPost} for creating high-quality graphics", journal = j-TUGboat, volume = "28", number = "1", pages = "84--90", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Mertz:TB28-1-91, author = "Andrew Mertz and William Slough", title = "Graphics with \acro{PGF} and {Ti{\it k}Z}", journal = j-TUGboat, volume = "28", number = "1", pages = "91--99", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88mertz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Veytsman:TB28-1-100, author = "Boris Veytsman and Leila Akhmadeeva", title = "Drawing medical pedigree trees with {\TeX} and {PSTricks}", journal = j-TUGboat, volume = "28", number = "1", pages = "100--109", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88veytsman-pedigree.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Flynn:TB28-1-110, author = "Peter Flynn", title = "Rolling your own {Document Class}: {Using} {\LaTeX} to keep away from the {Dark Side}", journal = j-TUGboat, volume = "28", number = "1", pages = "110--123", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Hefferon:TB28-1-124, author = "Jim {Hefferon}", title = "{\LaTeX} resources", journal = j-TUGboat, volume = "28", number = "1", pages = "124--125", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Flom:TB28-1-126, author = "Peter Flom", title = "{\LaTeX} for academics and researchers who (think they) don't need it", journal = j-TUGboat, volume = "28", number = "1", pages = "126--128", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88flom.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Garcia:TB28-1-129, author = "Federico Garcia", title = "Hypertext capabilities with {pdf\/\LaTeX}", journal = j-TUGboat, volume = "28", number = "1", pages = "129--132", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88garcia.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Bazargan:TB28-1-133, author = "Kaveh Bazargan and C. V. Radhakrishnan", title = "Removing vertical stretch\Dash mimicking traditional typesetting with {\TeX}", journal = j-TUGboat, volume = "28", number = "1", pages = "133--136", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88bazargan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Anonymous:TB28-1-137, author = "Anonymous", title = "Abstracts {(Adams, Garcia, H{\"o}ppner, Hummel, Moye, Peter, Wetmore)}", journal = j-TUGboat, volume = "28", number = "1", pages = "137--137", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-1-138, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "28", number = "1", pages = "138--138", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Anonymous:TB28-1-139, author = "Anonymous", title = "{TUG 2007} announcement", journal = j-TUGboat, volume = "28", number = "1", pages = "139--139", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88tug07.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Anonymous:TB28-1-140, author = "Anonymous", title = "{EuroBacho\TeX} 2007 announcement", journal = j-TUGboat, volume = "28", number = "1", pages = "140--140", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88eurotex07.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Peter:TB28-1-141, author = "Steve Peter", title = "{TUG 2007} election report", journal = j-TUGboat, volume = "28", number = "1", pages = "141--144", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Walden:TB28-1-145, author = "David Walden", title = "Financial statements for 2006", journal = j-TUGboat, volume = "28", number = "1", pages = "145--146", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/TUGboat/tb28-1/tb88treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Anonymous:TB28-1-146, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "28", number = "1", pages = "146--146", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Anonymous:TB28-1-147, author = "Anonymous", title = "{TUG} membership form", journal = j-TUGboat, volume = "28", number = "1", pages = "147--147", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Anonymous:TB28-1-148, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "28", number = "1", pages = "148--148", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/practicaltex2006/", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "88", journal-URL = "http://www.tug.org/TUGboat/", remark = "Practical TeX 2006 Proceedings (Rutgers, New Jersey).", } @Article{Berry:TB28-2-151, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "28", number = "2", pages = "151", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB28-2-152, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "28", number = "2", pages = "152--153", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Moye:TB28-2-153, author = "Stephen Moye", title = "A wayward wayfarer's way to {\TeX}", journal = j-TUGboat, volume = "28", number = "2", pages = "153--158", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89moye.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Miklavec:TB28-2-159, author = "Mojca Miklavec", title = "{\ConTeXt} user meeting 2007: {Epen}, {March} 23--25", journal = j-TUGboat, volume = "28", number = "2", pages = "159--163", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89miklavec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guravage:TB28-2-164, author = "Michael Guravage", title = "{EuroBacho{\TeX} 2007}", journal = j-TUGboat, volume = "28", number = "2", pages = "164--171", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89guravage.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lee:TB28-2-172, author = "Kihwang Lee", title = "New {\TeX} activities in {Korea}", journal = j-TUGboat, volume = "28", number = "2", pages = "172--172", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89lee.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB28-2-172, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "28", number = "2", pages = "172--173", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB28-2-174, author = "Hans Hagen and Taco Hoekwater", title = "{Alphabetgeschichten} by {Hermann Zapf}", journal = j-TUGboat, volume = "28", number = "2", pages = "174--176", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", keywords = "Alphabetgeschichten == Alphabet history", } @Article{Robertson:TB28-2-177, author = "Will Robertson", title = "An exploration of the {Latin Modern} fonts", journal = j-TUGboat, volume = "28", number = "2", pages = "177--180", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89robertson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoppner:TB28-2-181, author = "Klaus H{\"o}ppner", title = "Creation of a {{\PS{} Type 1}} logo font with {MetaType\,1}", journal = j-TUGboat, volume = "28", number = "2", pages = "181--185", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89hoeppner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hellstrom:TB28-2-186, author = "Lars Hellstr{\"o}m", title = "Writing \acro{ETX} format font encoding specifications", journal = j-TUGboat, volume = "28", number = "2", pages = "186--197", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89hellstrom.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB28-2-198, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Font} styles", journal = j-TUGboat, volume = "28", number = "2", pages = "198--199", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hamid:TB28-2-200, author = "Idris Samawi Hamid", title = "Installing {\ConTeXt} expert fonts: {Minion Pro}", journal = j-TUGboat, volume = "28", number = "2", pages = "200--209", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89hamid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cho:TB28-2-210, author = "Jin-Hwan Cho", title = "Hacking {\DVI} files: {Birth} of {\DVI}asm", journal = j-TUGboat, volume = "28", number = "2", pages = "210--217", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89cho.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB28-2-218, author = "Denis Roegel", title = "A complex drawing in descriptive geometry", journal = j-TUGboat, volume = "28", number = "2", pages = "218--228", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89roegel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB28-2-229, author = "Peter Wilson", title = "Glisterings: {Paragraphs} regular; paragraphs particular; paragraphs {Russian}", journal = j-TUGboat, volume = "28", number = "2", pages = "229--232", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB28-2-233, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "28", number = "2", pages = "233--234", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Garcia:TB28-2-235, author = "Federico Garcia", title = "{\LaTeX} and the different bibliography styles", journal = j-TUGboat, volume = "28", number = "2", pages = "235--240", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89garcia.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schmidt:TB28-2-241, author = "Walter Schmidt", title = "Font selection in {\LaTeX}: {The} most frequently asked questions", journal = j-TUGboat, volume = "28", number = "2", pages = "241--242", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89schmidt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gregorio:TB28-2-247, author = "Enrico Gregorio", title = "Enjoying babel", journal = j-TUGboat, volume = "28", number = "2", pages = "247--255", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89gregorio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Reingold:TB28-2-256, author = "Edward M. Reingold", title = "Writing numbers in words in {\TeX}", journal = j-TUGboat, volume = "28", number = "2", pages = "256--259", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89reingold.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-260, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issues 2--3} (2006--2007)", journal = j-TUGboat, volume = "28", number = "2", pages = "260--261", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89abs-arscahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-261, author = "Anonymous", title = "{{\it Les Cahiers GUTenberg\/}: Contents of double issue 46--47 (2006)}", journal = j-TUGboat, volume = "28", number = "2", pages = "261--261", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89abs-arscahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-262, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 2006/1--2007/1}", journal = j-TUGboat, volume = "28", number = "2", pages = "262--263", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-263, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issues 2006-1--2007-2}", journal = j-TUGboat, volume = "28", number = "2", pages = "263--268", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-268, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "28", number = "2", pages = "268--268", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-269, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "28", number = "2", pages = "269--269", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-2/tb89calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-270, author = "Anonymous", title = "{TUG 2007} announcement", journal = j-TUGboat, volume = "28", number = "2", pages = "270--270", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/tug2007/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-271, author = "Anonymous", title = "{TUG 2008} announcement", journal = j-TUGboat, volume = "28", number = "2", pages = "271--271", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/tug2008", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB28-2-272, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "28", number = "2", pages = "272--282", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "89", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Arnold:TB28-3-276, author = "Tim Arnold", title = "{TUG 2007}: {A} few words", journal = j-TUGboat, volume = "28", number = "3", pages = "276--279", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90arnold.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Wilson:TB28-3-280, author = "Peter Wilson", title = "Between then and now\Dash A meandering memoir", journal = j-TUGboat, volume = "28", number = "3", pages = "280--298", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90wilson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Beeton:TB28-3-299, author = "Barbara Beeton", title = "The \acro{STIX} {Project}\Dash {From Unicode} to fonts", journal = j-TUGboat, volume = "28", number = "3", pages = "299--304", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Kew:TB28-3-305, author = "Jonathan Kew and Victor Gaultney", title = "Fonts for every language: \acro{SIL}'s font projects and the {Open Font License}", journal = j-TUGboat, volume = "28", number = "3", pages = "305", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90kew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Hammond:TB28-3-306, author = "William Hammond", title = "Dual presentation with math from one source using \acro{GELLMU}", journal = j-TUGboat, volume = "28", number = "3", pages = "306--311", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90hammond.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Hoekwater:TB28-3-312, author = "Taco Hoekwater", title = "{Lua\TeX}", journal = j-TUGboat, volume = "28", number = "3", pages = "312--313", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90hoekwater-luatex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Hagen:TB28-3-314, author = "Hans Hagen", title = "{\ConTeXt} {Mk\acro{IV}}: {Going} \acro{UTF}", journal = j-TUGboat, volume = "28", number = "3", pages = "314--316", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Hoekwater:TB28-3-317, author = "Taco Hoekwater and Hans Hagen", title = "{MPlib}: {MetaPost} as a reusable component", journal = j-TUGboat, volume = "28", number = "3", pages = "317--318", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90hoekwater-mplib.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Beebe:TB28-3-319, author = "Nelson Beebe", title = "Extending {\TeX} and {{\sl MF}} with floating-point arithmetic", journal = j-TUGboat, volume = "28", number = "3", pages = "319--328", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Koch:TB28-3-329, author = "Richard Koch", title = "Support for multiple {\TeX} distributions in {i-Installer} and {Mac\TeX}", journal = j-TUGboat, volume = "28", number = "3", pages = "329--334", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90koch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{MacKichan:TB28-3-335, author = "Barry MacKichan", title = "Design decisions for a structured front end to {\LaTeX}", journal = j-TUGboat, volume = "28", number = "3", pages = "335--339", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90mackichan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Topping:TB28-3-340, author = "Paul Topping", title = "{MathType 6.0}'s {\TeX} input for \acro{MS} {Word} and {Wikipedia}", journal = j-TUGboat, volume = "28", number = "3", pages = "340--341", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90topping.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Burgess:TB28-3-342, author = "Robert Burgess and Emin G{\"u}n Sirer", title = "Cross{\TeX}: {A} modern bibliography management tool", journal = j-TUGboat, volume = "28", number = "3", pages = "342--349", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90burgess.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Hoppner:TB28-3-350, author = "Klaus H{\"o}ppner", title = "Typesetting tables with {\LaTeX}", journal = j-TUGboat, volume = "28", number = "3", pages = "350--353", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90hoeppner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Mertz:TB28-3-354, author = "Andrew Mertz and William Slough", title = "Programming with {Perl\TeX}", journal = j-TUGboat, volume = "28", number = "3", pages = "354--362", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90mertz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Gurari:TB28-3-363, author = "Eitan Gurari", title = "{\LaTeX} conversion into normalized forms and speech", journal = j-TUGboat, volume = "28", number = "3", pages = "363--368", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90gurari.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-369, author = "Anonymous", title = "Abstracts {(Allen, DeLand, Hagen, Hamid, Hefferon, H{\o}gholm, Ierusalimschy, Kew, Rosenthol, Rowley, Stern)}", journal = j-TUGboat, volume = "28", number = "3", pages = "369--371", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB28-3-372, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Table} macros", journal = j-TUGboat, volume = "28", number = "3", pages = "372--374", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{TDFC:TB28-3-375, author = "{{\TeX} {Development Fund} committee}", title = "{A} roadmap for {\TeX} development", journal = j-TUGboat, volume = "28", number = "3", pages = "375--376", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb28-3/tb90devfund.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Editors:TB28-3-377, author = "{\TUB} Editors", title = "Random comments", journal = j-TUGboat, volume = "28", number = "3", pages = "377--378", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90random.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-378, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "28", number = "3", pages = "378--378", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-379, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "28", number = "3", pages = "379--379", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-380, author = "Anonymous", title = "{TUG 2008} announcement", journal = j-TUGboat, volume = "28", number = "3", pages = "380--380", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90tug08.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-381, author = "Anonymous", title = "Springer: {{\sl More Math Into \LaTeX}}; \ {von Hoerner} \& {Sulger}; {O'Reilly}", journal = j-TUGboat, volume = "28", number = "3", pages = "381--381", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-382, author = "Anonymous", title = "{MacKichan: Scientific WorkPlace, Scientific Word; Addison-Wesley: {\sl The {\LaTeX} Graphics Companion}}", journal = j-TUGboat, volume = "28", number = "3", pages = "382--382", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-383, author = "Anonymous", title = "{Cheryl Ponchin} Training; {Carleton Production Centre}; Design Science: {MathType$^6$}", journal = j-TUGboat, volume = "28", number = "3", pages = "383--383", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/TUGboat/tb28-3/tb90ads.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB28-3-384, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "28", number = "3", pages = "384--384", year = "2007", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.tug.org/tug2007/", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "90", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2007 Proceedings (San Diego, California).", } @Article{Anonymous:TB29-1-2, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "29", number = "1", pages = "2--5", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Ludwichowski:TB29-1-6, author = "Jerzy Ludwichowski and Petr Sojka", title = "{{EuroBacho\TeX}} 2007: {Paths} to the {Future}", journal = j-TUGboat, volume = "29", number = "1", pages = "6--12", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91ludwichowski-intro.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Guravage:TB29-1-13, author = "Sam Guravage", title = "Confessions of a teenage {\TeX} user", journal = j-TUGboat, volume = "29", number = "1", pages = "13--13", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91guravage.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Jackowska:TB29-1-14, author = "Gra{\.z}yna Jackowska", title = "Handmade paper: {A} mixture of handcraft, art and fun", journal = j-TUGboat, volume = "29", number = "1", pages = "14--15", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91jackowska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Tomaszewski:TB29-1-16, author = "Andrzej Tomaszewski", title = "Designing a special book: {With} both pleasure and {\ldots\,}fear", journal = j-TUGboat, volume = "29", number = "1", pages = "16--19", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91tomaszewski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Cendrowska:TB29-1-20, author = "Dorota Cendrowska", title = "Enumerations as an interesting form of text appearance", journal = j-TUGboat, volume = "29", number = "1", pages = "20--24", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91cendrowska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Ludwichowski:TB29-1-25, author = "Jerzy Ludwichowski and Bogus{\l}aw Jackowski and Janusz Nowacki", title = "Five years after: {Report} on international {\TeX} font projects", journal = j-TUGboat, volume = "29", number = "1", pages = "25--26", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91ludwichowski-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Nowacki:TB29-1-27, author = "Janusz Nowacki", title = "{Cyklop}: {A} new font family", journal = j-TUGboat, volume = "29", number = "1", pages = "27--27", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91nowacki-cyklop.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hagen:TB29-1-28, author = "Hans Hagen", title = "Do we need a font system in {\TeX}?", journal = j-TUGboat, volume = "29", number = "1", pages = "28--33", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hoekwater:TB29-1-34, author = "Taco Hoekwater", title = "{OpenType} fonts in {Lua\TeX}", journal = j-TUGboat, volume = "29", number = "1", pages = "34--35", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Thanh:TB29-1-36, author = "\Thanh", title = "Font-specific issues in {pdf{\TeX}}", journal = j-TUGboat, volume = "29", number = "1", pages = "36--41", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91thanh-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Horak:TB29-1-42, author = "Karel Hor{\'a}k", title = "Those obscure accents {\ldots}", journal = j-TUGboat, volume = "29", number = "1", pages = "42--44", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91horak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hoppner:TB29-1-45, author = "Klaus H{\"o}ppner", title = "Creation of a {PostScript Type\,1} logo font with {MetaType\,1}", journal = j-TUGboat, volume = "29", number = "1", pages = "45--49", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91hoeppner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Piska:TB29-1-50, author = "Karel P{\'\i}{\v{s}}ka", title = "Procedures for font comparison", journal = j-TUGboat, volume = "29", number = "1", pages = "50--56", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91piska-compare.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Piska:TB29-1-57, author = "Karel P{\'\i}{\v{s}}ka", title = "Comments and suggestions about the {Latin Modern} fonts", journal = j-TUGboat, volume = "29", number = "1", pages = "57--65", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91piska-lm.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Ludwichowski:TB29-1-66, author = "Jerzy Ludwichowski and Karl Berry", title = "The \acro{GUST} {Font License}: {An} application of the {{\LaTeX{} Project Public License}}", journal = j-TUGboat, volume = "29", number = "1", pages = "66--67", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91ludwichowski-gfl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Reutenauer:TB29-1-68, author = "Arthur Reutenauer", title = "A brief history of {\TeX}, volume {II}", journal = j-TUGboat, volume = "29", number = "1", pages = "68--72", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91reutenauer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Vieth:TB29-1-73, author = "Ulrik Vieth", title = "Overview of the {\TeX} historic archive", journal = j-TUGboat, volume = "29", number = "1", pages = "73--76", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Rycko:TB29-1-77, author = "Joanna Ludmi{\l}a Ry{\'c}ko", title = "{\TeX} {Clinic}", journal = j-TUGboat, volume = "29", number = "1", pages = "77--78", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91rycko.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sherif:TB29-1-79, author = "Ameer Sherif and Hossam Fahmy", title = "Parameterized {Arabic} font development for {AlQalam}", journal = j-TUGboat, volume = "29", number = "1", pages = "79--88", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91sherif.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Gulzar:TB29-1-89, author = "Atif Gulzar and Shafiq ur Rahman", title = "{Nastaleeq}: {A} challenge accepted by {Omega}", journal = j-TUGboat, volume = "29", number = "1", pages = "89--94", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91gulzar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Thanh:TB29-1-95, author = "\Thanh", title = "Typesetting {Vietnamese} with {\VnTeX} (and with the {\TeX} {Gyre} fonts too)", journal = j-TUGboat, volume = "29", number = "1", pages = "95--100", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91thanh-vntex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hufflen:TB29-1-101, author = "Jean-Michel Hufflen", title = "Managing order relations in {Ml\BibTeX}", journal = j-TUGboat, volume = "29", number = "1", pages = "101--108", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91hufflen-order.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hufflen:TB29-1-109, author = "Jean-Michel Hufflen", title = "Introducing {\LaTeX} users to \acro{XSL-FO}", journal = j-TUGboat, volume = "29", number = "1", pages = "109--116", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91hufflen-fo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Luczak:TB29-1-117, author = "Tomasz {\L}uczak", title = "Using {\TeX} in a wiki", journal = j-TUGboat, volume = "29", number = "1", pages = "117--117", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91luczak-wiki.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Sojka:TB29-1-118, author = "Petr Sojka and Michal R{\r{u}}{\v{z}}i{\v{c}}ka", title = "Single-source publishing in multiple formats for different output devices", journal = j-TUGboat, volume = "29", number = "1", pages = "118--124", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91sojka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Szabo:TB29-1-125, author = "P{\'e}ter Szab{\'o}", title = "Practical journal and proceedings publication on paper and on the web", journal = j-TUGboat, volume = "29", number = "1", pages = "125--132", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91szabo-pub.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hefferon:TB29-1-133, author = "Jim {Hefferon}", title = "An experimental {\CTAN} upload process", journal = j-TUGboat, volume = "29", number = "1", pages = "133--135", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Preining:TB29-1-136, author = "Norbert Preining", title = "{\TeX} ({Live}) on {Debian}", journal = j-TUGboat, volume = "29", number = "1", pages = "136--139", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91preining.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Kroonenberg:TB29-1-140, author = "Siep Kroonenberg", title = "{Epspdf}: {Easy} conversion between {PostScript} and \acro{PDF}", journal = j-TUGboat, volume = "29", number = "1", pages = "140--142", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91kroonenberg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Schroder:TB29-1-143, author = "Martin Schr{\"o}der", title = "{pdf{\TeX} 1.40}: {What}'s new", journal = j-TUGboat, volume = "29", number = "1", pages = "143--145", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91schroeder.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Kew:TB29-1-146, author = "Jonathan Kew", title = "{\XeTeX} {Live}", journal = j-TUGboat, volume = "29", number = "1", pages = "146--150", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91kew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Neugebauer:TB29-1-151, author = "Gerd Neugebauer", title = "Conventional scoping of registers\Dash {An} experiment in {\ExTeX}", journal = j-TUGboat, volume = "29", number = "1", pages = "151--156", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91neugebauer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Hufflen:TB29-1-157, author = "Jean-Michel Hufflen", title = "{{Ml\BibTeX}}: {Reporting} the experience", journal = j-TUGboat, volume = "29", number = "1", pages = "157--162", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91hufflen-mlbibtex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Kastrup:TB29-1-163, author = "David Kastrup", title = "Writing {\AllTeX} documents with {AUC\TeX} in {Emacs}", journal = j-TUGboat, volume = "29", number = "1", pages = "163--163", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91kastrup-emacs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Luczak:TB29-1-164, author = "Tomasz {\L}uczak", title = "{\LyX}: An editor not just for secretaries", journal = j-TUGboat, volume = "29", number = "1", pages = "164--165", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91luczak-lyx.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Szabo:TB29-1-166, author = "P{\'e}ter Szab{\'o}", title = "Automated {\DVD} menu authoring with {pdf\LaTeX}", journal = j-TUGboat, volume = "29", number = "1", pages = "166--175", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91szabo-dvd.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Walczak:TB29-1-176, author = "Zofia Walczak", title = "Graphics in {\LaTeX} using {\TikZ}", journal = j-TUGboat, volume = "29", number = "1", pages = "176--179", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91walczak.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Murzynowski:TB29-1-180, author = "Grzegorz Murzynowski", title = "{\origLaTeX} vs.\ {\gmLaTeXplain}\Dash a modification of the logo", journal = j-TUGboat, volume = "29", number = "1", pages = "180--180", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91murzynowski-logo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Kastrup:TB29-1-181, author = "David Kastrup", title = "Benefits, care and feeding of the {\tt bigfoot} package", journal = j-TUGboat, volume = "29", number = "1", pages = "181--183", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91kastrup-bigfoot.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Grosse:TB29-1-184, author = "Johannes Gro{\ss}e", title = "{MathPSfrag}: {\LaTeX} labels in {Mathematica} plots", journal = j-TUGboat, volume = "29", number = "1", pages = "184--189", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91grosse.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kastrup:TB29-1-190, author = "David Kastrup", title = "{\tt makematch}, a {\LaTeX} package for pattern matching with wildcards", journal = j-TUGboat, volume = "29", number = "1", pages = "190--192", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91kastrup-match.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Kastrup:TB29-1-193, author = "David Kastrup", title = "{\tt qstest}, a {\LaTeX} package for unit tests", journal = j-TUGboat, volume = "29", number = "1", pages = "193--198", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91kastrup-qstest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Murzynowski:TB29-1-199, author = "Grzegorz Murzynowski", title = "{\tt gmverse} and {\tt gmcontinuo}\Dash some nontrivial placement of text on a page", journal = j-TUGboat, volume = "29", number = "1", pages = "199--200", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91murzynowski-text.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Murzynowski:TB29-1-201, author = "Grzegorz Murzynowski", title = "The {\tt gmdoc} bundle\Dash a new tool for documenting {{\AllTeX}} sources", journal = j-TUGboat, volume = "29", number = "1", pages = "201--206", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91murzynowski-gmdoc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Jackowski:TB29-1-207, author = "Pawe{\l} Jackowski", title = "{\TeX} beauties and oddities: {A} permanent call for {\TeX} pearls", journal = j-TUGboat, volume = "29", number = "1", pages = "207--215", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91pearls.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Nowacki:TB29-1-216, author = "Janusz Nowacki", title = "Crossword", journal = j-TUGboat, volume = "29", number = "1", pages = "216--216", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91nowacki-crossword.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Anonymous:TB29-1-217, author = "Anonymous", title = "Abstracts {(Hagen, Hoekwater, Kastrup, Lotz, Moore, Ry{\'c}ko, Tomaszewski)}", journal = j-TUGboat, volume = "29", number = "1", pages = "217--218", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB29-1-219, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Table} macros {II}", journal = j-TUGboat, volume = "29", number = "1", pages = "219--222", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Anonymous:TB29-1-223, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "29", number = "1", pages = "223--223", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Anonymous:TB29-1-223-2, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "29", number = "1", pages = "223--223", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Laugier:TB29-1-224, author = "Maurice Laugier", title = "{{\rm In memoriam}} {Bernard Gaulle}", journal = j-TUGboat, volume = "29", number = "1", pages = "224--224", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.gust.org.pl/conferences/EuroBachoTeX2007; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-1/tb91laugier.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "91", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroBachoTeX 2007 Proceedings.", } @Article{Berry:TB29-2-231, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "29", number = "2", pages = "231--231", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB29-2-232, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "29", number = "2", pages = "232--233", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB29-2-233, author = "Donald Knuth", title = "The {\TeX} tuneup of 2008", journal = j-TUGboat, volume = "29", number = "2", pages = "233--238", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB29-2-239, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "29", number = "2", pages = "239--239", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB29-2-240, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "29", number = "2", pages = "240--241", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tsagkalos:TB29-2-242, author = "Vassilios Tsagkalos", title = "The {Greek Font Society}", journal = j-TUGboat, volume = "29", number = "2", pages = "242--245", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92tsagkalos.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB29-2-246, author = "Claudio Beccari and Andrea Guadagni", title = "Designing and producing a reference book with {\LaTeX}: {{\sl The Engineer's Quick Reference Handbook}}", journal = j-TUGboat, volume = "29", number = "2", pages = "246--254", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92becc-refdesign.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guiggiani:TB29-2-255, author = "Massimo Guiggiani and Lapo Mori", title = "Suggestions on how {\it not} to mishandle mathematical formul{\ae}", journal = j-TUGboat, volume = "29", number = "2", pages = "255--263", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92guiggiani.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Rankin:TB29-2-264, author = "John Rankin", title = "{Wikipublisher}: {A Web}-based system to make online and print versions of the same content", journal = j-TUGboat, volume = "29", number = "2", pages = "264--269", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92rankin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Eijkhout:TB29-2-270, author = "Victor Eijkhout", title = "Character encoding", journal = j-TUGboat, volume = "29", number = "2", pages = "270--277", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB29-2-278, author = "Claudio Beccari", title = "{\sf lxfonts}: {\LaTeX} slide fonts revived", journal = j-TUGboat, volume = "29", number = "2", pages = "278--282", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92becc-slidefonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB29-2-283, author = "Hans Hagen and Taco Hoekwater and Volker R. W. Schaa", title = "Reshaping {Euler}: {A} collaboration with {Hermann Zapf}", journal = j-TUGboat, volume = "29", number = "2", pages = "283--287", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92hagen-euler.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bowman:TB29-2-288, author = "John Bowman and Andy Hammerlindl", title = "{Asymptote}: {A} vector graphics language", journal = j-TUGboat, volume = "29", number = "2", pages = "288--294", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92bowman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB29-2-295, author = "Hans Hagen", title = "The {Luafication} of {\TeX} and {\ConTeXt}", journal = j-TUGboat, volume = "29", number = "2", pages = "295--302", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92hagen-luatex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barrett:TB29-2-303, author = "Edward Barrett", title = "Porting {\TeX} {Live} to {OpenBSD}", journal = j-TUGboat, volume = "29", number = "2", pages = "303--304", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92barrett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pakin:TB29-2-305, author = "Scott Pakin", title = "Good things come in little packages: {An} introduction to writing {\tt .ins} and {\tt .dtx} files", journal = j-TUGboat, volume = "29", number = "2", pages = "305--314", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92pakin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB29-2-315, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Indentation}", journal = j-TUGboat, volume = "29", number = "2", pages = "315--316", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB29-2-317, author = "Denis Roegel", title = "{Kanji--Sudokus}: {Integrating Chinese} and graphics", journal = j-TUGboat, volume = "29", number = "2", pages = "317--319", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92roegel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB29-2-320, author = "Pawe{\l} Jackowski", title = "Interesting loops and iterations\Dash second helping", journal = j-TUGboat, volume = "29", number = "2", pages = "320--323", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB29-2-324, author = "Peter Wilson", title = "Glisterings: {More} on paragraphs regular; {\LaTeX}'s defining triumvirate; {\TeX}'s dictator", journal = j-TUGboat, volume = "29", number = "2", pages = "324--327", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB29-2-328, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "29", number = "2", pages = "328--330", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vieth:TB29-2-331, author = "Ulrik Vieth", title = "Book review: {\it {Fonts} \& {Encodings}} by {Yannis Haralambous}", journal = j-TUGboat, volume = "29", number = "2", pages = "331--332", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schroeder:TB29-2-333, author = "Bernd Schroeder", title = "Software review: {{\TeX\kern-.02em\acro{CAD}}} for {Windows}", journal = j-TUGboat, volume = "29", number = "2", pages = "333--334", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92schroeder.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB29-2-334, author = "Frank Mittelbach", title = "{\tt \char`\\looseness} on the loose", journal = j-TUGboat, volume = "29", number = "2", pages = "334--334", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-335, author = "Anonymous", title = "{{\sl MAPS\/}: Contents of issue 35 (2007)}", journal = j-TUGboat, volume = "29", number = "2", pages = "335--335", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-336, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 2007/2--2008/1}", journal = j-TUGboat, volume = "29", number = "2", pages = "336--336", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-337, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issues 16--20} (2007--2008)", journal = j-TUGboat, volume = "29", number = "2", pages = "337--338", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92eutypon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-338, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 4} (2007)", journal = j-TUGboat, volume = "29", number = "2", pages = "338--339", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-339, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issues 2007-3--2008-1}", journal = j-TUGboat, volume = "29", number = "2", pages = "339--342", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB29-2-343, author = "David Walden", title = "{TUG} financial statements for 2007", journal = j-TUGboat, volume = "29", number = "2", pages = "343--344", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-344, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "29", number = "2", pages = "344--344", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-345, author = "Anonymous", title = "{TUG} membership form", journal = j-TUGboat, volume = "29", number = "2", pages = "345--345", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-346, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "29", number = "2", pages = "346--346", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-347, author = "Anonymous", title = "{TUG 2008} announcement", journal = j-TUGboat, volume = "29", number = "2", pages = "347--347", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-2/tb92tug08.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-2-348, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "29", number = "2", pages = "348--348", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "92", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-3-350, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "29", number = "3", pages = "350--351", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Flynn:TB29-3-352, author = "Peter Flynn", title = "{TUG 2008}: \TeX's \nth{30} birthday", journal = j-TUGboat, volume = "29", number = "3", pages = "352--355", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Mansfield:TB29-3-356, author = "Niall Mansfield", title = "How to develop your own document class\Dash our experience", journal = j-TUGboat, volume = "29", number = "3", pages = "356--361", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93mansfield.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Kew:TB29-3-362, author = "Jonathan Kew", title = "{\TeX}works: {Lowering} the barrier to entry", journal = j-TUGboat, volume = "29", number = "3", pages = "362--364", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93kew.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Laurens:TB29-3-365, author = "J{\'e}r{\^o}me Laurens", title = "Direct and reverse synchronization with {Sync\TeX}", journal = j-TUGboat, volume = "29", number = "3", pages = "365--371", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93laurens.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Schrod:TB29-3-372, author = "Joachim Schrod", title = "{Xindy} revisited: {Multi-lingual} index creation for the \acro{UTF}-8 age", journal = j-TUGboat, volume = "29", number = "3", pages = "372--375", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93schrod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Hoekwater:TB29-3-380, author = "Taco Hoekwater", title = "{MetaPost} developments: \acro{MP}lib project report", journal = j-TUGboat, volume = "29", number = "3", pages = "380--382", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Hagen:TB29-3-383, author = "Hans Hagen", title = "The {{\TeX--Lua}} mix", journal = j-TUGboat, volume = "29", number = "3", pages = "383--391", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93hagen-mix.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{McCool:TB29-3-376, author = "Joe McCool", title = "A newbie's experiences with {Lilypond}, {Lilypond-book}, {\LaTeX} and {Perl}", journal = j-TUGboat, volume = "29", number = "3", pages = "376--379", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93mccool.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pocza:TB29-3-392, author = "Kriszti{\'a}n P{\'o}cza and Mih{\'a}ly Bicz{\'o} and Zolt{\'a}n Porkol{\'a}b", title = "{docx2tex}: {Word 2007} to {\TeX}", journal = j-TUGboat, volume = "29", number = "3", pages = "392--400", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93pocza.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Hufflen:TB29-3-401, author = "Jean-Michel Hufflen", title = "Languages for bibliography styles", journal = j-TUGboat, volume = "29", number = "3", pages = "401--412", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Rowley:TB29-3-413, author = "Chris Rowley", title = "Vistas for {\TeX}: liberate the typography! {(Part I)}", journal = j-TUGboat, volume = "29", number = "3", pages = "413--417", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93rowley.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Crossland:TB29-3-418, author = "Dave Crossland", title = "Why didn't {\MF} catch on?", journal = j-TUGboat, volume = "29", number = "3", pages = "418--420", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93crossland.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Piska:TB29-3-421, author = "Karel P{\'\i}{\v{s}}ka", title = "Creating cuneiform fonts with {MetaType1} and {FontForge}", journal = j-TUGboat, volume = "29", number = "3", pages = "421--425", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93piska.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Vieth:TB29-3-426, author = "Ulrik Vieth", title = "Do we need a {`Cork'} math font encoding?", journal = j-TUGboat, volume = "29", number = "3", pages = "426--434", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Sherif:TB29-3-435, author = "Ameer Sherif and Hossam Fahmy", title = "Meta-designing parameterized {Arabic} fonts for {AlQalam}", journal = j-TUGboat, volume = "29", number = "3", pages = "435--443", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93sherif.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Joshi:TB29-3-444, author = "Manjusha Joshi", title = "Smart ways of drawing \acro{PST}ricks figures", journal = j-TUGboat, volume = "29", number = "3", pages = "444--445", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93joshi-pstricks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Hagen:TB29-3-446, author = "Hans Hagen", title = "The {MetaPost} library and {Lua\TeX}", journal = j-TUGboat, volume = "29", number = "3", pages = "446--453", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93hagen-mplib.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Miklavec:TB29-3-454, author = "Mojca Miklavec and Arthur Reutenauer", title = "Putting the {Cork} back in the bottle\Dash {Improving Unicode} support in {\TeX}", journal = j-TUGboat, volume = "29", number = "3", pages = "454--457", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93miklavec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Sarman:TB29-3-458, author = "Stanislav Jan {\v{S}}arman", title = "Writing {Gregg Shorthand} with {\MF} and {\LaTeX}", journal = j-TUGboat, volume = "29", number = "3", pages = "458--461", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93sarman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Hagen:TB29-3-462, author = "Hans Hagen", title = "The {Lua\TeX} way: {\tt \char`\\framed}", journal = j-TUGboat, volume = "29", number = "3", pages = "462--463", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93hagen-framed.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Moore:TB29-3-464, author = "Ross Moore", title = "Advanced features for publishing mathematics, in {{\PDF}} and on the {Web}", journal = j-TUGboat, volume = "29", number = "3", pages = "464--473", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Plaice:TB29-3-474, author = "John Plaice and Blanca Mancilla and Chris Rowley", title = "Multidimensional text", journal = j-TUGboat, volume = "29", number = "3", pages = "474--479", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Joshi:TB29-3-480, author = "Manjusha Joshi", title = "Data mining: {Role} of {\TeX} files", journal = j-TUGboat, volume = "29", number = "3", pages = "480--481", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93joshi-mining.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Anonymous:TB29-3-482, author = "Anonymous", title = "Abstracts {(Fine, Hagen, Henkel, Hoekwater, H{\o}gholm, K{\"u}ster, Mancilla et al., Mittelbach, Peter, Rahilly et al., Rhatigan, Veytsman \& Akhmadeeva, Veytsman)}", journal = j-TUGboat, volume = "29", number = "3", pages = "482--484", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB29-3-485, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "29", number = "3", pages = "485--485", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Anonymous:TB29-3-486, author = "Anonymous", title = "{TUG\,2009} announcement", journal = j-TUGboat, volume = "29", number = "3", pages = "486--486", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb29-3/tb93tug09.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Anonymous:TB29-3-487, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "29", number = "3", pages = "487--487", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Anonymous:TB29-3-484, author = "Anonymous", title = "{TUG} institutional members", journal = j-TUGboat, volume = "29", number = "3", pages = "484--484", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Anonymous:TB29-3-488, author = "Anonymous", title = "{TUG 2009} election", journal = j-TUGboat, volume = "29", number = "3", pages = "488--488", year = "2008", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2008/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/election/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "93", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2008 Proceedings.", } @Article{Berry:TB30-1-3, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "30", number = "1", pages = "3--3", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB30-1-4, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "30", number = "1", pages = "4--4", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Daly:TB30-1-4, author = "Patrick Daly", title = "{Helmut Kopka}, 1932--2009", journal = j-TUGboat, volume = "30", number = "1", pages = "4--5", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94daly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cho:TB30-1-6, author = "Jin-Hwan Cho", title = "\acro{DVI} specials for \acro{PDF} generation", journal = j-TUGboat, volume = "30", number = "1", pages = "6--11", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94cho.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Perry:TB30-1-12, author = "David Perry", title = "Ancient {\TeX}: Using {\XeTeX} to support classical and medieval studies", journal = j-TUGboat, volume = "30", number = "1", pages = "12", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94perry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Prichystal:TB30-1-18, author = "Jan P{\v{r}}ichystal", title = "{{\TeX}on\kern-.03em Web}", journal = j-TUGboat, volume = "30", number = "1", pages = "18--19", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94prichystal.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB30-1-20, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "30", number = "1", pages = "20--21", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vieth:TB30-1-22, author = "Ulrik Vieth", title = "{OpenType} math illuminated", journal = j-TUGboat, volume = "30", number = "1", pages = "22", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thanh:TB30-1-32, author = "\Thanh", title = "A closer look at {TrueType} fonts and {{pdf\TeX}}", journal = j-TUGboat, volume = "30", number = "1", pages = "32--34", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94thanh.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crossland:TB30-1-35, author = "Dave Crossland", title = "{The Open Font Library}", journal = j-TUGboat, volume = "30", number = "1", pages = "35--35", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94crossland.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mori:TB30-1-36, author = "Lapo Mori", title = "Managing bibliographies with {\LaTeX}", journal = j-TUGboat, volume = "30", number = "1", pages = "36--48", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94mori.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hufflen:TB30-1-49, author = "Jean-Michel Hufflen", title = "Managing languages within {{Ml\BibTeX}}", journal = j-TUGboat, volume = "30", number = "1", pages = "49--57", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bowman:TB30-1-58, author = "John Bowman and Orest Shardt", title = "Asymptote: {Lifting} {\TeX} to three dimensions", journal = j-TUGboat, volume = "30", number = "1", pages = "58--63", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94bowman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zheng:TB30-1-64, author = "Wentao Zheng", title = "Supporting layout routines in {MetaPost}", journal = j-TUGboat, volume = "30", number = "1", pages = "64--68", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94zheng.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB30-1-69, author = "Peter Wilson", title = "Glisterings: {Reprise}; {MetaPost} and {{pdf\/\LaTeX}}; {Spidrons}", journal = j-TUGboat, volume = "30", number = "1", pages = "69--73", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB30-1-74, author = "Denis Roegel", title = "{MetaPost} macros for drawing {Chinese} and {Japanese} abaci", journal = j-TUGboat, volume = "30", number = "1", pages = "74--79", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94roegel-abacus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB30-1-80, author = "Denis Roegel", title = "Spheres, great circles and parallels", journal = j-TUGboat, volume = "30", number = "1", pages = "80--87", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94roegel-spheres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Roegel:TB30-1-88, author = "Denis Roegel", title = "An introduction to nomography: {Garrigues'} nomogram for the computation of {Easter}", journal = j-TUGboat, volume = "30", number = "1", pages = "88--104", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94roegel-garrigues.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Team:TB30-1-10, author = "{\LaTeX} Project Team", title = "{{\LaTeX3}} news, issues 1--2", journal = j-TUGboat, volume = "30", number = "1", pages = "105--106", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB30-1-107, author = "Joseph Wright", title = "{{\LaTeX3}} programming: {External} perspectives", journal = j-TUGboat, volume = "30", number = "1", pages = "107--109", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94wright-latex3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB30-1-110, author = "Joseph Wright and Christian Feuers{\"a}nger", title = "Implementing key--value input: {An} introduction", journal = j-TUGboat, volume = "30", number = "1", pages = "110--122", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94wright-keyval.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Zyka:TB30-1-123, author = "V{\'\i}t Z{\'y}ka", title = "Current typesetting position in {{pdf\TeX}}", journal = j-TUGboat, volume = "30", number = "1", pages = "123--124", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94zyka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tai:TB30-1-125, author = "Kaihsu Tai", title = "In response to ``mathematical formul{\ae}''", journal = j-TUGboat, volume = "30", number = "1", pages = "125--125", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94tai.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Guiggiani:TB30-1-126, author = "Massimo Guiggiani and Lapo Mori", title = "In response to {Kaihsu Tai}", journal = j-TUGboat, volume = "30", number = "1", pages = "126--126", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94guiggiani.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB30-1-127, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "30", number = "1", pages = "127", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-131, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issues 5--7} (2008--2009)", journal = j-TUGboat, volume = "30", number = "1", pages = "131--132", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-133, author = "Anonymous", title = "{{\sl Baskerville\/}: Contents of issue 10.1 (2009)}", journal = j-TUGboat, volume = "30", number = "1", pages = "133--133", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-134, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 2008/2--2009/2}", journal = j-TUGboat, volume = "30", number = "1", pages = "134--135", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-135, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issue 21} (2008)", journal = j-TUGboat, volume = "30", number = "1", pages = "135--135", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-136, author = "Anonymous", title = "{{\sl nine MAPS\/}: Contents of issue 36--37 (2008)}", journal = j-TUGboat, volume = "30", number = "1", pages = "136--137", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-138, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issues 2008-2--2008-3}", journal = j-TUGboat, volume = "30", number = "1", pages = "138--138", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-139, author = "Anonymous", title = "{{\it \TeX emplares\/}: Contents of issue 8 (2006)}", journal = j-TUGboat, volume = "30", number = "1", pages = "139--139", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94texemp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-140, author = "Anonymous", title = "{{\it Zpravodaj\/}: Contents of issues 16(2)--18(4) (2006--2008)}", journal = j-TUGboat, volume = "30", number = "1", pages = "140--143", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94zprav.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-144, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "30", number = "1", pages = "144--144", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB30-1-145, author = "Barbara Beeton", title = "\acro{TUG} 2009 election report", journal = j-TUGboat, volume = "30", number = "1", pages = "145--145", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{TDF:TB30-1-148, author = "{{\TeX} Development Fund committee}", title = "{\TeX} {Development Fund} 2009 report", journal = j-TUGboat, volume = "30", number = "1", pages = "148--148", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94devfund.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB30-1-149, author = "David Walden", title = "\acro{TUG} financial statements for 2009", journal = j-TUGboat, volume = "30", number = "1", pages = "149--150", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-151, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "30", number = "1", pages = "151--151", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-1/tb94calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-1-152, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "30", number = "1", pages = "152--152", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "94", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-2-154, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "30", number = "2", pages = "154--154", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Walden:TB30-2-159, author = "David Walden", title = "Profile of {Eitan Gurari} (1947--2009)", journal = j-TUGboat, volume = "30", number = "2", pages = "159--162", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95gurari.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB30-2-163, author = "Boris Veytsman", title = "{\LaTeX} class writing for wizard apprentices", journal = j-TUGboat, volume = "30", number = "2", pages = "163--168", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95veytsman-classes.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Reutenauer:TB30-2-169, author = "Arthur Reutenauer", title = "{Lua{\TeX}} for the {\LaTeX} user: {An} introduction", journal = j-TUGboat, volume = "30", number = "2", pages = "169--169", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95reutenauer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Moore:TB30-2-170, author = "Ross Moore", title = "Ongoing efforts to generate ``tagged {PDF}'' using {{pdf\TeX}}", journal = j-TUGboat, volume = "30", number = "2", pages = "170--175", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95moore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Quinn:TB30-2-176, author = "Frank Quinn", title = "The {Edu{\TeX}TUG} working group", journal = j-TUGboat, volume = "30", number = "2", pages = "176--176", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95quinn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hefferon:TB30-2-177, author = "Jim {Hefferon}", title = "Becoming a {CTAN} mirror", journal = j-TUGboat, volume = "30", number = "2", pages = "177--178", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95heff-mirrors.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Berry:TB30-2-179, author = "Karl Berry", title = "{\TeX} {Live} 2009 news", journal = j-TUGboat, volume = "30", number = "2", pages = "179--179", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95berry-tl.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Arnold:TB30-2-180, author = "Tim Arnold", title = "Getting started with {{plas\TeX}}", journal = j-TUGboat, volume = "30", number = "2", pages = "180--182", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95arnold.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hagen:TB30-2-183, author = "Hans Hagen", title = "{Lua\TeX}: {Halfway} to version 1", journal = j-TUGboat, volume = "30", number = "2", pages = "183--186", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95hagen-luatex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hagen:TB30-2-187, author = "Hans Hagen", title = "{Lua\TeX} and {{\ConTeXt}}: {Where} we stand", journal = j-TUGboat, volume = "30", number = "2", pages = "187--190", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95hagen-stand.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Neveln:TB30-2-191, author = "Bob Neveln and Bob Alps", title = "{ProofCheck}: {Writing} and checking complete proofs in {\LaTeX}", journal = j-TUGboat, volume = "30", number = "2", pages = "191--195", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95neveln.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Berry:TB30-2-196, author = "Karl Berry and David Walden", title = "{\TeX} {People}: {The TUG} interviews project and book", journal = j-TUGboat, volume = "30", number = "2", pages = "196--202", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95berry-interviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Walden:TB30-2-203, author = "David Walden", title = "Self-publishing: {Experiences} and opinions", journal = j-TUGboat, volume = "30", number = "2", pages = "203--208", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hoppner:TB30-2-209, author = "Klaus H{\"o}ppner", title = "Introduction to {{\MP}}", journal = j-TUGboat, volume = "30", number = "2", pages = "209--213", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95hoeppner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Mertz:TB30-2-214, author = "Andrew Mertz and William Slough", title = "A {Ti{\it k}Z} tutorial: {Generating} graphics in the spirit of {\TeX}", journal = j-TUGboat, volume = "30", number = "2", pages = "214--226", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95mertz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB30-2-227, author = "Boris Veytsman and Leila Akhmadeeva", title = "Medical pedigrees: {Typography} and interfaces", journal = j-TUGboat, volume = "30", number = "2", pages = "227--235", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95veytsman-pedigree.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hefferon:TB30-2-236, author = "Jim {Hefferon}", title = "A first look at the {\TeX} {Gyre} fonts", journal = j-TUGboat, volume = "30", number = "2", pages = "236--240", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95heff-gyre.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hagen:TB30-2-241, author = "Hans Hagen", title = "Plain {\TeX} and {OpenType}", journal = j-TUGboat, volume = "30", number = "2", pages = "241--242", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95hagen-opentype.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Mahajan:TB30-2-243, author = "Aditya Mahajan", title = "Integrating {Unicode} and {OpenType} math in {{\ConTeXt}}", journal = j-TUGboat, volume = "30", number = "2", pages = "243--246", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95mahajan-cmath.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Mahajan:TB30-2-247, author = "Aditya Mahajan", title = "{Lua{\TeX}}: {A} user's perspective", journal = j-TUGboat, volume = "30", number = "2", pages = "247--251", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95mahajan-luatex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Beebe:TB30-2-252, author = "Nelson Beebe", title = "{{\BibTeX}} meets relational databases", journal = j-TUGboat, volume = "30", number = "2", pages = "252--271", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95beebe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Bazargan:TB30-2-272, author = "Kaveh Bazargan", title = "{\TeX} as an {eBook} reader", journal = j-TUGboat, volume = "30", number = "2", pages = "272--273", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95bazargan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Story:TB30-2-281, author = "D. P. Story", title = "Rich media annotations and {\AcroFLeX}", journal = j-TUGboat, volume = "30", number = "2", pages = "281--284", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95story.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Beccari:TB30-2-285, author = "Claudio Beccari", title = "Use of the {\tt \char`\\write18} feature for composing indexes", journal = j-TUGboat, volume = "30", number = "2", pages = "285--286", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95becc.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Wilson:TB30-2-287, author = "Peter Wilson", title = "Glisterings: {Repetition}; {Rectangular text}", journal = j-TUGboat, volume = "30", number = "2", pages = "287--289", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Robertson:TB30-2-290, author = "Will Robertson", title = "{Peter Wilson}'s {Herries Press} packages", journal = j-TUGboat, volume = "30", number = "2", pages = "290--292", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95robertson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-293, author = "Anonymous", title = "{{\it Biuletyn GUST\/}: Contents of issues 25--26 (2009)}", journal = j-TUGboat, volume = "30", number = "2", pages = "293--296", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95gust.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-296, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issue 2009/3}", journal = j-TUGboat, volume = "30", number = "2", pages = "296--296", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-296-2, author = "Anonymous", title = "{{\it Zpravodaj\/}: Contents of issue 19(1--2) (2009)}", journal = j-TUGboat, volume = "30", number = "2", pages = "296--297", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-298, author = "Anonymous", title = "TUG 2009 abstracts \ (Cho, de {Souza}, {Hamid}, {H{\o}{}gholm}, {Rowley})", journal = j-TUGboat, volume = "30", number = "2", pages = "298--299", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-299, author = "Anonymous", title = "{TUG} institutional members", journal = j-TUGboat, volume = "30", number = "2", pages = "299--299", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-300, author = "Anonymous", title = "{Cheryl Ponchin Training}; {O'Reilly Media}; {Design Science}", journal = j-TUGboat, volume = "30", number = "2", pages = "300--300", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-2-301, author = "Anonymous", title = "{MacKichan Software}; {River Valley Technologies}; {A-R Editions}", journal = j-TUGboat, volume = "30", number = "2", pages = "301--301", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-2-302, author = "Anonymous", title = "{TUG}\,2010 announcement", journal = j-TUGboat, volume = "30", number = "2", pages = "302--302", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/tug2010/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-303, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "30", number = "2", pages = "303--303", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb30-2/tb95calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Anonymous:TB30-2-304, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "30", number = "2", pages = "304--304", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://tug.org/tug2009/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "95", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2009 Proceedings.", } @Article{Hagen:TB30-3-1, author = "Hans Hagen", title = "Euro{\TeX} 2009", journal = j-TUGboat, volume = "30", number = "3", pages = "1--1", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hagen-e2009.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Anonymous:TB30-3-2, author = "Anonymous", title = "Announcement: Euro{\TeX} conference 2010", journal = j-TUGboat, volume = "30", number = "3", pages = "2--2", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96eurotex10.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Anonymous:TB30-3-3, author = "Anonymous", title = "Announcement: \nth{4} international {{\ConTeXt}} meeting 2010", journal = j-TUGboat, volume = "30", number = "3", pages = "3--3", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96context10.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Anonymous:TB30-3-4, author = "Anonymous", title = "Announcement: {TUG} conference 2010", journal = j-TUGboat, volume = "30", number = "3", pages = "4--4", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Anonymous:TB30-3-4-2, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "30", number = "3", pages = "4--4", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Laan:TB30-3-5, author = "Kees van der Laan", title = "{\TeX} education\Dash a neglected approach", journal = j-TUGboat, volume = "30", number = "3", pages = "5--33", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96laan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Scarso:TB30-3-34, author = "Luigi Scarso", title = "Lua{\TeX} lunatic", journal = j-TUGboat, volume = "30", number = "3", pages = "34--58", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96scarso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Egger:TB30-3-59, author = "Willi Egger", title = "Decorating {CD-ROMs} and {DVDs}", journal = j-TUGboat, volume = "30", number = "3", pages = "59--71", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96egger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hagen:TB30-3-72, author = "Hans Hagen", title = "The language mix", journal = j-TUGboat, volume = "30", number = "3", pages = "72--77", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hagen-mix.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Huisman:TB30-3-78, author = "Jelle Huisman", title = "E16 \& {DEtool}\Dash typesetting language data using {{\ConTeXt}}", journal = j-TUGboat, volume = "30", number = "3", pages = "78--85", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96huisman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Kroonenberg:TB30-3-86, author = "Siep Kroonenberg", title = "A network {{\TeX Live}} installation at the {University} of {Groningen}", journal = j-TUGboat, volume = "30", number = "3", pages = "86--91", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96kroonenberg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hufflen:TB30-3-92, author = "Jean-Michel Hufflen", title = "Using {\TeX}'s language within a course about functional programming", journal = j-TUGboat, volume = "30", number = "3", pages = "92--98", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hufflen-func.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Aebischer:TB30-3-99, author = "Anne-Marie Aebischer and Bruno Aebischer and Jean-Michel Hufflen and Fran{\c{c}}ois P{\'e}tiard", title = "Introducing new {French}-speaking users to {\LaTeX} quickly and convincingly", journal = j-TUGboat, volume = "30", number = "3", pages = "99--104", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96aebischer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hagen:TB30-3-105, author = "Hans Hagen", title = "Oriental {\TeX} by a dummy", journal = j-TUGboat, volume = "30", number = "3", pages = "105--106", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hagen-otex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Sarman:TB30-3-107, author = "Stanislav Jan {\v{S}}arman", title = "Writing {Pitman} shorthand with {{\MF}} and {\LaTeX}", journal = j-TUGboat, volume = "30", number = "3", pages = "107--111", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96sarman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Szabo:TB30-3-112, author = "P{\'e}ter Szab{\'o}", title = "Optimizing {PDF} output size of {\TeX} documents", journal = j-TUGboat, volume = "30", number = "3", pages = "112--130", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96szabo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hoekwater:TB30-3-131, author = "Taco Hoekwater", title = "Generating {PDF} for e-reader devices", journal = j-TUGboat, volume = "30", number = "3", pages = "131--135", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hoekwater-ereader.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hoekwater:TB30-3-136, author = "Taco Hoekwater", title = "{Lua\TeX} says goodbye to {Pascal}", journal = j-TUGboat, volume = "30", number = "3", pages = "136--140", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hoekwater-pascal.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hoekwater:TB30-3-141, author = "Taco Hoekwater", title = "The Typesetting of Statistics", journal = j-TUGboat, volume = "30", number = "3", pages = "141--142", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hoekwater-statistics.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Hagen:TB30-3-143, author = "Hans Hagen and Taco Hoekwater", title = "{MetaPost 2} project goals", journal = j-TUGboat, volume = "30", number = "3", pages = "143--144", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96hagen-mp2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Trapp:TB30-3-145, author = "John Trapp", title = "Using {\LaTeX} as a computing language", journal = j-TUGboat, volume = "30", number = "3", pages = "145--165", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96trapp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Vieth:TB30-3-166, author = "Ulrik Vieth", title = "Experiences typesetting mathematical physics", journal = j-TUGboat, volume = "30", number = "3", pages = "166--178", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Anonymous:TB30-3-179, author = "Anonymous", title = "Abstracts {(Hagen, Lemmes, Walczak, Fine, Kew, Yatskovsky, Schr{\"o}der, Hoekwater, Ludwichowski, Jackowski, P{\'\i}{\v{s}}ka, Miklavec \& Reutenauer)}", journal = j-TUGboat, volume = "30", number = "3", pages = "179--181", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB30-3-182, author = "Anonymous", title = "Participant list", journal = j-TUGboat, volume = "30", number = "3", pages = "182--182", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/TUGboat/tb30-3/tb96names-e2009.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Anonymous:TB30-3-183, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "30", number = "3", pages = "183--183", year = "2009", ISSN = "0896-3207", bibdate = "Mon May 25 14:17:16 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib; http://www.ntg.nl/EuroTeX2009/", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "96", journal-URL = "http://www.tug.org/TUGboat/", remark = "EuroTeX 2009 Proceedings.", } @Article{Berry:TB31-1-3, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "31", number = "1", pages = "3--3", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB31-1-4, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "31", number = "1", pages = "4--5", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wessler:TB31-1-6, author = "Evan Wessler", title = "An argument for learning {\LaTeX}: {The} benefits of typesetting and beyond", journal = j-TUGboat, volume = "31", number = "1", pages = "6--8", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97wessler.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mars:TB31-1-9, author = "Nicolaas Mars", title = "A computer scientist self-publishing in the humanities", journal = j-TUGboat, volume = "31", number = "1", pages = "9--11", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97mars.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Isambert:TB31-1-12, author = "Paul Isambert", title = "Strategies against widows", journal = j-TUGboat, volume = "31", number = "1", pages = "12--17", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97isambert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Miede:TB31-1-18, author = "Andr{\'e} Miede", title = "Theses and other beautiful documents with {\tt classicthesis}", journal = j-TUGboat, volume = "31", number = "1", pages = "18--20", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97miede.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB31-1-21, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "31", number = "1", pages = "21--22", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Parashchenko:TB31-1-23, author = "Oleg Parashchenko", title = "Minimal setup for a ({Cyrillic}) {TrueType} font", journal = j-TUGboat, volume = "31", number = "1", pages = "23--25", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97parashchenko.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB31-1-26, author = "Hans Hagen", title = "{Lua\TeX}: {Microtypography} for plain fonts", journal = j-TUGboat, volume = "31", number = "1", pages = "26--26", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97hagen-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dhawan:TB31-1-27, author = "Amit Raj Dhawan", title = "Mathematical typefaces in {\TeX} documents", journal = j-TUGboat, volume = "31", number = "1", pages = "27--31", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97dhawan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB31-1-32, author = "Hans Hagen", title = "{Lua\TeX}: {Deeply} nested notes", journal = j-TUGboat, volume = "31", number = "1", pages = "32--35", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97hagen-nested.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voss:TB31-1-31, author = "Herbert Vo{\ss}", title = "The current state of the {PSTricks} project", journal = j-TUGboat, volume = "31", number = "1", pages = "36--49", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB31-1-50, author = "Joseph Wright", title = "Plotting experimental data using {\tt pgfplots}", journal = j-TUGboat, volume = "31", number = "1", pages = "50--58", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97wright-pgfplots.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kmiecik:TB31-1-59, author = "Mateusz Kmiecik", title = "From {Logo} to {MetaPost}", journal = j-TUGboat, volume = "31", number = "1", pages = "59--63", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97kmiecik-logo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB31-1-64, author = "{{\LaTeX} Project Team}", title = "{\LaTeX} news, issue 19", journal = j-TUGboat, volume = "31", number = "1", pages = "64--64", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97ltnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Talbot:TB31-1-65, author = "Nicola Talbot", title = "{Talbot} packages: {An} overview", journal = j-TUGboat, volume = "31", number = "1", pages = "65--67", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97talbot.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kmiecik:TB31-1-68, author = "Jacek Kmiecik", title = "Tuning {\LaTeX} to one's own needs", journal = j-TUGboat, volume = "31", number = "1", pages = "68--75", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97kmiecik-latex.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Merciadri:TB31-1-76, author = "Luca Merciadri", title = "Some misunderstood or unknown {{\LaTeXe}} tricks", journal = j-TUGboat, volume = "31", number = "1", pages = "76--78", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97merciadri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB31-1-79, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX3}} news, issue 3", journal = j-TUGboat, volume = "31", number = "1", pages = "79--79", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB31-1-80, author = "Joseph Wright", title = "Beyond {\tt\char`\\newcommand} with {\tt xparse}", journal = j-TUGboat, volume = "31", number = "1", pages = "80--82", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97wright-xparse.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB31-1-83, author = "Joseph Wright", title = "Programming key--value in {\tt expl3}", journal = j-TUGboat, volume = "31", number = "1", pages = "83--87", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97wright-l3keys.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB31-1-88, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Conditional} processing", journal = j-TUGboat, volume = "31", number = "1", pages = "88--89", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB31-1-90, author = "Peter Wilson", title = "Glisterings: {Counting}; {Changing} the layout", journal = j-TUGboat, volume = "31", number = "1", pages = "90--93", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hall:TB31-1-94, author = "Timothy Hall", title = "The exact placement of superscripts and subscripts", journal = j-TUGboat, volume = "31", number = "1", pages = "94--95", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97hall.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB31-1-96, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "31", number = "1", pages = "96--98", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-99, author = "Anonymous", title = "{{\it Ars\TeX nica\/}}: Contents of issue 8 ({October 2009})", journal = j-TUGboat, volume = "31", number = "1", pages = "99--99", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-100, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 2009/4--2010/2}", journal = j-TUGboat, volume = "31", number = "1", pages = "100--100", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-101, author = "Anonymous", title = "{{\sl Asian Journal of \TeX\/}: Contents of Volume 3 (2009)}", journal = j-TUGboat, volume = "31", number = "1", pages = "101--102", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97ajt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-102, author = "Anonymous", title = "{{\it Les Cahiers {\slnine GUT}enberg\/}: Contents of issues 48--53 (2006--2009)}", journal = j-TUGboat, volume = "31", number = "1", pages = "102--103", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-104, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issue 22--23} (2009)", journal = j-TUGboat, volume = "31", number = "1", pages = "104--104", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97eutypon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-105, author = "Anonymous", title = "{{\slnine {MAPS}\/}: Contents of issue 38--39 (2009)}", journal = j-TUGboat, volume = "31", number = "1", pages = "105--105", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-105-2, author = "Anonymous", title = "{{\sl Baskerville\/}: Contents of issue 10.2 (2009)}", journal = j-TUGboat, volume = "31", number = "1", pages = "105--105", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-106, author = "Anonymous", title = "{{\it Zpravodaj\/}: Contents of issue 16(1), 19(3)--19(4) (2006, 2009)}", journal = j-TUGboat, volume = "31", number = "1", pages = "106--108", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97zprav.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB31-1-109, author = "David Walden", title = "{\tug} financial statements for 2009", journal = j-TUGboat, volume = "31", number = "1", pages = "109--110", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-110, author = "Anonymous", title = "{{\acro{TUG} institutional members}}", journal = j-TUGboat, volume = "31", number = "1", pages = "110--110", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-111, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "31", number = "1", pages = "111--111", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-1/tb97calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-1-112, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "31", number = "1", pages = "112--112", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "97", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-2-114, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "31", number = "2", pages = "114--116", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Walden:TB31-2-117, author = "David Walden", title = "{{\TUG}} 2010 conference report", journal = j-TUGboat, volume = "31", number = "2", pages = "117--120", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Knuth:TB31-2-121, author = "Donald Knuth", title = "An Earthshaking Announcement", journal = j-TUGboat, volume = "31", number = "2", pages = "121--124", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Walden:TB31-2-125, author = "David {Walden (moderator)}", title = "{\tug} 2010 {Panel}: {Don Knuth} \& {Stanford \TeX\ Project} members", journal = j-TUGboat, volume = "31", number = "2", pages = "125--137", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98panel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Beeton:TB31-2-138, author = "Barbara Beeton", title = "Thoughts on \acro{TUG} 2010", journal = j-TUGboat, volume = "31", number = "2", pages = "138--139", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hefferon:TB31-2-143, author = "Jim {Hefferon}", title = "{{\CTAN}} packages get keywords", journal = j-TUGboat, volume = "31", number = "2", pages = "143--144", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Voss:TB31-2-145, author = "Herbert Vo{\ss}", title = "From {{\PS}} to {{\PDF}} with {\tt epstopdf}, {\tt pdftricks}, {\tt pst-pdf}, {\tt auto-pst-pdf}, {\tt pst2pdf}, and more", journal = j-TUGboat, volume = "31", number = "2", pages = "145--147", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hicks:TB31-2-148, author = "Stephen Hicks", title = "Improving margin paragraphs", journal = j-TUGboat, volume = "31", number = "2", pages = "148--150", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hicks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Arora:TB31-2-151, author = "Pavneet Arora", title = "Using {\LaTeX} to generate dynamic mathematics worksheets for the web", journal = j-TUGboat, volume = "31", number = "2", pages = "151--153", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98arora.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Gander:TB31-2-154, author = "Walter Gander", title = "Writing the first {\LaTeX} book", journal = j-TUGboat, volume = "31", number = "2", pages = "154--157", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98gander.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hoenig:TB31-2-158, author = "Alan Hoenig", title = "{\TeX} helps you learn {Chinese} character meanings", journal = j-TUGboat, volume = "31", number = "2", pages = "158--161", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hoenig.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Verna:TB31-2-162, author = "Didier Verna", title = "Classes, styles, conflicts: {The} biological realm of {\LaTeX}", journal = j-TUGboat, volume = "31", number = "2", pages = "162--172", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98verna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Berry:TB31-2-173, author = "Karl Berry", title = "{{\TeX} Live 2010} news", journal = j-TUGboat, volume = "31", number = "2", pages = "173--173", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98berry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hoekwater:TB31-2-174, author = "Taco Hoekwater and Hartmut Henkel", title = "{{Lua\TeX} 0.60}: {An} overview of changes", journal = j-TUGboat, volume = "31", number = "2", pages = "174--177", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hagen:TB31-2-178, author = "Hans Hagen", title = "{Lua\TeX}: {\PDF} merging", journal = j-TUGboat, volume = "31", number = "2", pages = "178--179", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hagen-pdfmerge.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hagen:TB31-2-180, author = "Hans Hagen", title = "The {\TeX} paragraph builder in {Lua}", journal = j-TUGboat, volume = "31", number = "2", pages = "180--182", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hagen-parbuilder.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Childs:TB31-2-183, author = "Bart Childs", title = "Thirty years of literate programming and more?", journal = j-TUGboat, volume = "31", number = "2", pages = "183--188", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Ziegenhagen:TB31-2-189, author = "Uwe Ziegenhagen", title = "Dynamic reporting with {R\slash Sweave} and {\LaTeX}", journal = j-TUGboat, volume = "31", number = "2", pages = "189--192", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98ziegenhagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Doob:TB31-2-193, author = "Michael Doob", title = "A web-based {\TeX} previewer: {The} ecstasy and the agony", journal = j-TUGboat, volume = "31", number = "2", pages = "193--196", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98doob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hamid:TB31-2-197, author = "Idris Samawi Hamid", title = "Qur\ringhalfrighti{\=a}nic typography comes of age: {{\AE{}sthetics}}, layering, and paragraph optimization in {\ConTeXt}", journal = j-TUGboat, volume = "31", number = "2", pages = "197--202", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hamid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Bowman:TB31-2-203, author = "John Bowman", title = "{Asymptote}: Interactive {\TeX}-aware \acro{3D} vector graphics", journal = j-TUGboat, volume = "31", number = "2", pages = "203--205", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98bowman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Bourgeois:TB31-2-206, author = "Mathieu Bourgeois and Roger Villemaire", title = "Drawing structured diagrams with \acro{SDDL}", journal = j-TUGboat, volume = "31", number = "2", pages = "206--210", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98bourgeois.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Robertson:TB31-2-211, author = "Will Robertson", title = "{Unicode} mathematics in {\LaTeX}: {Advantages} and challenges", journal = j-TUGboat, volume = "31", number = "2", pages = "211--220", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98robertson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Kuster:TB31-2-221, author = "Johannes K{\"u}ster", title = "Math never seen", journal = j-TUGboat, volume = "31", number = "2", pages = "221--229", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98kuester.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Veytsman:TB31-2-230, author = "Boris Veytsman", title = "Are virtual fonts obsolete?", journal = j-TUGboat, volume = "31", number = "2", pages = "230--235", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98veytsman-vf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Veytsman:TB31-2-236, author = "Boris Veytsman and Leila Akhmadeeva", title = "{\TeX} in the \acro{GLAMP} world: {On-demand} creation of documents online", journal = j-TUGboat, volume = "31", number = "2", pages = "236--239", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98veytsman-glamp.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Hammond:TB31-2-240, author = "William Hammond", title = "{\LaTeX} profiles as objects in the category of markup languages", journal = j-TUGboat, volume = "31", number = "2", pages = "240--247", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98hammond.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Anonymous:TB31-2-248, author = "Anonymous", title = "{\tug} 2010 abstracts ({Bazargan}, {Cheswick}, {Doumont}, {Grathwohl} \& {Ruddy}, {Hagen} \& {Hoekwater}, {Hobby}, {Kew}, {Mittelbach}, {Moore}, {Rowley}, {Rundell})", journal = j-TUGboat, volume = "31", number = "2", pages = "248--249", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Anonymous:TB31-2-250, author = "Anonymous", title = "{Addison-Wesley; von Hoerner\&Sulger}", journal = j-TUGboat, volume = "31", number = "2", pages = "250--250", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98sponsors.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Anonymous:TB31-2-251, author = "Anonymous", title = "{Cheryl Ponchin Training}; {River Valley Technologies}", journal = j-TUGboat, volume = "31", number = "2", pages = "251--251", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-2-252, author = "Anonymous", title = "{Principiae}; {University Science Books}", journal = j-TUGboat, volume = "31", number = "2", pages = "252--252", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-2-253, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "31", number = "2", pages = "253--253", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-2/tb98calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Anonymous:TB31-2-254, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "31", number = "2", pages = "254--255", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Anonymous:TB31-2-255, author = "Anonymous", title = "{{\acro{TUG} institutional members}}", journal = j-TUGboat, volume = "31", number = "2", pages = "255--255", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://tug.org/tug2010/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2010 Proceedings.", } @Article{Anonymous:TB31-2-256, author = "Anonymous", title = "{{\acro{TUG} 2011 election}}", journal = j-TUGboat, volume = "31", number = "2", pages = "256--256", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "98", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB31-3-158, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "31", number = "3", pages = "158--158", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB31-3-158, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "31", number = "3", pages = "158--159", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB31-3-160, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "31", number = "3", pages = "160--160", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Caignaert:TB31-3-161, author = "Christophe Caignaert", title = "A story of {\it kpfonts\/}: {Reaching} the limits of \acro{NFSS}", journal = j-TUGboat, volume = "31", number = "3", pages = "161--174", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99caignaert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB31-3-175, author = "Jim {Hefferon}", title = "Giving it away", journal = j-TUGboat, volume = "31", number = "3", pages = "175--183", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB31-3-177, author = "Peter Wilson", title = "Glisterings: Meandering miniature books", journal = j-TUGboat, volume = "31", number = "3", pages = "177--183", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Isambert:TB31-3-184, author = "Paul Isambert", title = "Three things you can do with {Lua\TeX} that would be extremely painful otherwise", journal = j-TUGboat, volume = "31", number = "3", pages = "184--190", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99isambert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Merciadri:TB31-3-191, author = "Luca Merciadri", title = "Some misunderstood or unknown {{\LaTeXe}} tricks {II}", journal = j-TUGboat, volume = "31", number = "3", pages = "191--194", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99merciadri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB31-3-194, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX3}} news, issue 3", journal = j-TUGboat, volume = "31", number = "3", pages = "194--194", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB31-3-195, author = "Joseph Wright", title = "From {\tt\char`\\newcommand} to {{\tt\char`\\DocumentNewCommand}} with {\tt xparse}", journal = j-TUGboat, volume = "31", number = "3", pages = "195--202", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99wright.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB31-3-197, author = "Hans Hagen", title = "Tagged {{\PDF}} in {\ConTeXt}", journal = j-TUGboat, volume = "31", number = "3", pages = "197--202", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Scarso:TB31-3-203, author = "Luigi Scarso", title = "Introduction to colours in {\ConTeXt} {{\acro{MK}iV}}", journal = j-TUGboat, volume = "31", number = "3", pages = "203--207", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99scarso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Parashchenko:TB31-3-208, author = "Oleg Parashchenko", title = "Generate {\TeX} documents using {\tt pdfscript}", journal = j-TUGboat, volume = "31", number = "3", pages = "208--218", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99parashchenko.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Centonza:TB31-3-213, author = "Matteo Centonza and Vito Piserchia", title = "{{\tt illumino}}: {An} {\XML} document production system with a {\TeX} core", journal = j-TUGboat, volume = "31", number = "3", pages = "213--218", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99centonza.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hufflen:TB31-3-219, author = "Jean-Michel Hufflen", title = "Managing printed and online versions of large educational documents", journal = j-TUGboat, volume = "31", number = "3", pages = "219--222", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Barnett:TB31-3-223, author = "Michael Barnett", title = "Aligning text in diagrams exported by {Mathematica}: {A} question about the {\PS} infrastructure", journal = j-TUGboat, volume = "31", number = "3", pages = "223--226", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99barnett.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB31-3-227, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "31", number = "3", pages = "227--228", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-229, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 9} (October 2010)", journal = j-TUGboat, volume = "31", number = "3", pages = "229--229", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-230, author = "Anonymous", title = "{{\slnine {MAPS}\/}: Contents of issue 40 (2010)}", journal = j-TUGboat, volume = "31", number = "3", pages = "230--230", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-231, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issue 2010-1}", journal = j-TUGboat, volume = "31", number = "3", pages = "231--232", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-233, author = "Anonymous", title = "{{\it Zpravodaj\/}: Contents of issues 20(1--2), 20(3) (2010)}", journal = j-TUGboat, volume = "31", number = "3", pages = "233--235", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99zprav.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-236, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issue 2010/3}", journal = j-TUGboat, volume = "31", number = "3", pages = "236--236", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-237, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "31", number = "3", pages = "237--237", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb31-3/tb99calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-238, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "31", number = "3", pages = "238--239", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-239, author = "Anonymous", title = "{\tug} institutional members", journal = j-TUGboat, volume = "31", number = "3", pages = "239--239", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB31-3-240, author = "Anonymous", title = "{\tug} 2011 election", journal = j-TUGboat, volume = "31", number = "3", pages = "240--240", year = "2010", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "99", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB32-1-3, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "32", number = "1", pages = "3--3", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB32-1-4, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "32", number = "1", pages = "4--5", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Damrau:TB32-1-6, author = "Jackie Damrau", title = "{Mimi Burbank}", journal = j-TUGboat, volume = "32", number = "1", pages = "6--6", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100damrau.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB32-1-7, author = "Christina Thiele", title = "Missing {Mimi}", journal = j-TUGboat, volume = "32", number = "1", pages = "7--8", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB32-1-9, author = "Hans Hagen", title = "16 years of {\ConTeXt}", journal = j-TUGboat, volume = "32", number = "1", pages = "9--16", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100hagen-16.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB32-1-17, author = "David Walden and Karl Berry", title = "{{\TUB}}'s 100 issues\Dash Basic statistics and random gleanings", journal = j-TUGboat, volume = "32", number = "1", pages = "17--22", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB32-1-23, author = "Karl Berry and David Walden", title = "{{\TUB}} online", journal = j-TUGboat, volume = "32", number = "1", pages = "23--26", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100berry.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB32-1-27, author = "Boris Veytsman", title = "{\TeX} consulting for fun and profit", journal = j-TUGboat, volume = "32", number = "1", pages = "27--29", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100veytsman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB32-1-30, author = "Jim {Hefferon}", title = "Which way to the forum?", journal = j-TUGboat, volume = "32", number = "1", pages = "30--31", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hwang:TB32-1-32, author = "Andrew Hwang", title = "{\LaTeX} at {Distributed Proofreaders} and the electronic preservation of mathematical literature at {Project Gutenberg}", journal = j-TUGboat, volume = "32", number = "1", pages = "32--38", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100hwang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Farar:TB32-1-39, author = "Pavel Far{\'a}{\v{r}}", title = "Introducing the {{\acro{PT} Sans}} and {{\acro{PT} Serif}} typefaces", journal = j-TUGboat, volume = "32", number = "1", pages = "39--42", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100farar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB32-1-43, author = "Hans Hagen", title = "Handling math: {A} retrospective", journal = j-TUGboat, volume = "32", number = "1", pages = "43--46", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100hagen-math.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{West:TB32-1-47, author = "Andrew West", title = "The rules for long {\it s}", journal = j-TUGboat, volume = "32", number = "1", pages = "47--55", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100west.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gregorio:TB32-1-56, author = "Enrico Gregorio", title = "Installing {{\TeX} Live 2010} on {Ubuntu}", journal = j-TUGboat, volume = "32", number = "1", pages = "56--61", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100gregorio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoekwater:TB32-1-62, author = "Taco Hoekwater", title = "{{\tt tlcontrib.metatex.org}}: {A} complement to {{\TeX} Live}", journal = j-TUGboat, volume = "32", number = "1", pages = "62--67", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Isambert:TB32-1-68, author = "Paul Isambert", title = "{Lua\TeX}: {What} it takes to make a paragraph", journal = j-TUGboat, volume = "32", number = "1", pages = "68--76", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100isambert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB32-1-77, author = "Pawe{\l} Jackowski", title = "{Luna}\Dash my side of the moon", journal = j-TUGboat, volume = "32", number = "1", pages = "77--82", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB32-1-83, author = "Frank Mittelbach", title = "Reflections on the history of the {{\LaTeX} Project Public License (\acro{LPPL})}\Dash{A} software license for {\LaTeX} and more", journal = j-TUGboat, volume = "32", number = "1", pages = "83--94", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB32-1-95, author = "Joseph Wright", title = "{{\sf siunitx}}: {A} comprehensive {(\acro{SI})} units package", journal = j-TUGboat, volume = "32", number = "1", pages = "95--98", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100wright-siunitx.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB32-1-99, author = "Peter Wilson", title = "Glisterings: {Framing}, new frames", journal = j-TUGboat, volume = "32", number = "1", pages = "99--103", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Merciadri:TB32-1-104, author = "Luca Merciadri", title = "Some misunderstood or unknown {{\LaTeXe}} tricks {III}", journal = j-TUGboat, volume = "32", number = "1", pages = "104--107", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100merciadri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB32-1-108, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX3}} news, issue 5", journal = j-TUGboat, volume = "32", number = "1", pages = "108--108", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB32-1-109, author = "Boris Veytsman", title = "Book review: {{\sl Typesetting tables with \LaTeX}}", journal = j-TUGboat, volume = "32", number = "1", pages = "109--109", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100reviews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB32-1-110, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "32", number = "1", pages = "110--112", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB32-1-113, author = "Joseph Wright", title = "`Magic' comments in {\TeXworks 0.4}", journal = j-TUGboat, volume = "32", number = "1", pages = "113--113", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100wright-texworks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-114, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issue 24--25} (October 2010)", journal = j-TUGboat, volume = "32", number = "1", pages = "114--114", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100eutypon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-115, author = "Anonymous", title = "{{\slnine {MAPS}\/}: Contents of issue 41 (2010)}", journal = j-TUGboat, volume = "32", number = "1", pages = "115--115", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-116, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issue 2010-2}", journal = j-TUGboat, volume = "32", number = "1", pages = "116--116", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-117, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 4/2010--1/2011}", journal = j-TUGboat, volume = "32", number = "1", pages = "117--117", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-118, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 10} (October 2010)", journal = j-TUGboat, volume = "32", number = "1", pages = "118--118", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-119, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "32", number = "1", pages = "119--120", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fine:TB32-1-120, author = "Jonathan Fine", title = "Is {\TeX} obsolete?", journal = j-TUGboat, volume = "32", number = "1", pages = "120--120", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100fine.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-121, author = "Anonymous", title = "{{\acro{TUG}}} institutional members", journal = j-TUGboat, volume = "32", number = "1", pages = "121--121", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB32-1-121, author = "David Walden", title = "{{\acro{TUG}}} financial statements for 2010", journal = j-TUGboat, volume = "32", number = "1", pages = "121--122", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-127, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "32", number = "1", pages = "127--127", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-1-128, author = "Anonymous", title = "{\tug}\,2011 announcement", journal = j-TUGboat, volume = "32", number = "1", pages = "128--128", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-1/tb100tug11.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "100", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB32-2-131, author = "Karl Berry", title = "From the {President}", journal = j-TUGboat, volume = "32", number = "2", pages = "131", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB32-2-131, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "32", number = "2", pages = "131", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{TCeditors:TB32-2-132, author = "{{\TeX} Collection editors}", title = "{{\TeX} Collection 2011 \DVD}", journal = j-TUGboat, volume = "32", number = "2", pages = "132--132", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101texcoll.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Loffler:TB32-2-133, author = "Stefan L{\"o}ffler", title = "{\TeXworks}\Dash {As} you like it", journal = j-TUGboat, volume = "32", number = "2", pages = "133--135", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101loeffler.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoekwater:TB32-2-136, author = "Taco Hoekwater", title = "{MetaPost 1.750}: {Numerical} engines", journal = j-TUGboat, volume = "32", number = "2", pages = "136--138", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voss:TB32-2-139, author = "Herbert Vo{\ss}", title = "Reading and executing source code", journal = j-TUGboat, volume = "32", number = "2", pages = "139--144", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pszczola:TB32-2-145, author = "Krzysztof Pszczo{\l}a", title = "Teaching {\LaTeX} to the students of mathematics\Dash the experience from {The Jan Kochanowski University}", journal = j-TUGboat, volume = "32", number = "2", pages = "145--145", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101pszczola.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Isambert:TB32-2-146, author = "Paul Isambert", title = "Drawing tables: Graphic fun with {Lua\TeX}", journal = j-TUGboat, volume = "32", number = "2", pages = "146--151", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101isambert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB32-2-152, author = "Hans Hagen", title = "{E}-books: {Old} wine in new bottles", journal = j-TUGboat, volume = "32", number = "2", pages = "152--157", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cheswick:TB32-2-158, author = "William Cheswick", title = "{i\TeX}\Dash {Document} formatting in an ereader world", journal = j-TUGboat, volume = "32", number = "2", pages = "158--163", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101cheswick.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sharpe:TB32-2-164, author = "Michael Sharpe", title = "Math alphabets and the {\tt mathalfa} package", journal = j-TUGboat, volume = "32", number = "2", pages = "164--168", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101sharpe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vieth:TB32-2-169, author = "Ulrik Vieth and Mojca Miklavec", title = "Another incarnation of {Lucida}: {Towards Lucida OpenType}", journal = j-TUGboat, volume = "32", number = "2", pages = "169--176", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Scarso:TB32-2-177, author = "Luigi Scarso", title = "{{\acro{MFL}}ua}", journal = j-TUGboat, volume = "32", number = "2", pages = "177--184", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101scarso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Grunewald:TB32-2-185, author = "Michael Le Barbier Gr{\"u}newald", title = "Macro interfaces and the {\tt getoptk} package", journal = j-TUGboat, volume = "32", number = "2", pages = "185--192", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101grunewald.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Parashchenko:TB32-2-193, author = "Oleg Parashchenko", title = "The {\tt cals} package: {Multipage} tables with decorations", journal = j-TUGboat, volume = "32", number = "2", pages = "193--201", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101parashchenko.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB32-2-202, author = "Peter Wilson", title = "Glisterings: {Ornaments}", journal = j-TUGboat, volume = "32", number = "2", pages = "202--205", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Merciadri:TB32-2-206, author = "Luca Merciadri", title = "{Merciadri} packages: An overview", journal = j-TUGboat, volume = "32", number = "2", pages = "206--210", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101merciadri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB32-2-211, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Paper} setup", journal = j-TUGboat, volume = "32", number = "2", pages = "211--212", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB32-2-213, author = "David Walden", title = "Experiences with notes, references, and bibliographies", journal = j-TUGboat, volume = "32", number = "2", pages = "213--216", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Shaw:TB32-2-217, author = "Paul Shaw", title = "Sixty years of book design at {St.\ Gallen, Switzerland}", journal = j-TUGboat, volume = "32", number = "2", pages = "217--224", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101shaw.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-2-224, author = "Anonymous", title = "{{\acro{TUG} institutional members}}", journal = j-TUGboat, volume = "32", number = "2", pages = "224", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB32-2-225, author = "William Adams", title = "Book review: {{\sl A Specimen Portfolio of Wood Type in the Cary Collection}}", journal = j-TUGboat, volume = "32", number = "2", pages = "225--228", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101reviews-woodtype.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB32-2-226, author = "Boris Veytsman", title = "Book review: {{\sl The Art of the Book in the Twentieth Century}}", journal = j-TUGboat, volume = "32", number = "2", pages = "226--229", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101reviews-kelly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB32-2-228, author = "Boris Veytsman", title = "Book review: {{\sl {\LaTeX} Beginner's Guide}}", journal = j-TUGboat, volume = "32", number = "2", pages = "228--229", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101reviews-kottwitz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB32-2-230, author = "David Walden", title = "An appreciation: {{\sl The Art of Computer Programming, Volume 4A}}", journal = j-TUGboat, volume = "32", number = "2", pages = "230--232", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101reviews-knuth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB32-2-233, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "32", number = "2", pages = "233--234", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-2-235, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 4/2010--1/2011}", journal = j-TUGboat, volume = "32", number = "2", pages = "235--235", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-2-236, author = "Anonymous", title = "{{\it Zpravodaj\/}: Contents of issue 20(4) (2010)}", journal = j-TUGboat, volume = "32", number = "2", pages = "236--236", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101zprav.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-2-237, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "32", number = "2", pages = "237--238", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hefferon:TB32-2-238, author = "Jim {Hefferon}", title = "Status of the {American} core {{\CTAN}} node", journal = j-TUGboat, volume = "32", number = "2", pages = "238--238", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-2-239, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "32", number = "2", pages = "239--239", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-2-240, author = "Anonymous", title = "{TUG\,2011} announcement", journal = j-TUGboat, volume = "32", number = "2", pages = "240--240", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sun Nov 27 15:57:23 MST 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-2/tb101tug11.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "101", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB32-3-242, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "32", number = "3", pages = "242--244", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Beeton:TB32-3-245, author = "Barbara Beeton", title = "\acro{TUG} 2011 in {India}", journal = j-TUGboat, volume = "32", number = "3", pages = "245--247", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Kottwitz:TB32-3-248, author = "Stefan Kottwitz", title = "{\TeX} online communities\Dash discussion and content", journal = j-TUGboat, volume = "32", number = "3", pages = "248--250", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102kottwitz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Moudgalya:TB32-3-251, author = "Kannan Moudgalya", title = "{\LaTeX} training through spoken tutorials", journal = j-TUGboat, volume = "32", number = "3", pages = "251--256", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102moudgalya.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Wetmore:TB32-3-257, author = "Alan Wetmore", title = "e-{Readers} and {\LaTeX}", journal = j-TUGboat, volume = "32", number = "3", pages = "257--260", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102wetmore.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Veytsman:TB32-3-261, author = "Boris Veytsman and Michael Ware", title = "Ebooks and paper sizes: {Output} routines made easier", journal = j-TUGboat, volume = "32", number = "3", pages = "261--265", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102veytsman-ebooks.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Rishi:TB32-3-266, author = "Rishi T.", title = "{\LaTeX} to {ePub}", journal = j-TUGboat, volume = "32", number = "3", pages = "266--268", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102rishi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Joshi:TB32-3-269, author = "Manjusha Joshi", title = "A dream of computing and {\LaTeX}ing together: {A} reality with {Sage\TeX}", journal = j-TUGboat, volume = "32", number = "3", pages = "269--271", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102joshi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Kielhorn:TB32-3-272, author = "Axel Kielhorn", title = "Multi-target publishing", journal = j-TUGboat, volume = "32", number = "3", pages = "272--277", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102kielhorn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Venkatesan:TB32-3-279, author = "S. K. Venkatesan", title = "On the use of {\TeX} as an authoring language for {\HTML5}", journal = j-TUGboat, volume = "32", number = "3", pages = "279--280", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/venkatesan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sankar:TB32-3-281, author = "S. Sankar and S. Mahalakshmi and L. Ganesh", title = "An {{\XML}} model of {{\CSS3}} as an {{X\LaTeX-\TeX\acro{ML}-\HTML5}} stylesheet language", journal = j-TUGboat, volume = "32", number = "3", pages = "281--284", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102sankar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Veytsman:TB32-3-285, author = "Boris Veytsman and Leyla Akhmadeeva", title = "Towards evidence-based typography: {Literature} review and experiment design", journal = j-TUGboat, volume = "32", number = "3", pages = "285--288", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102veytsman-typo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Hufflen:TB32-3-289, author = "Jean-Michel Hufflen", title = "A comparative study of methods for bibliographies", journal = j-TUGboat, volume = "32", number = "3", pages = "289--301", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102hufflen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Housley:TB32-3-302, author = "Brian Housley", title = "The {\tt hletter} class and style for producing flexible letters and page headings", journal = j-TUGboat, volume = "32", number = "3", pages = "302--308", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102housley.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Verna:TB32-3-309, author = "Didier Verna", title = "Towards {\LaTeX} coding standards", journal = j-TUGboat, volume = "32", number = "3", pages = "309--328", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102verna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-329, author = "Anonymous", title = "{\acro{TUG} 2011 abstracts} \ ({Bazargan}, {Crossland}, {Radhakrishnan}, {Doumont}, {Mittelbach}, {Moore}, {Rishi}, {Skoup{\'y}}, {Sojka}, {Wujastyk})", journal = j-TUGboat, volume = "32", number = "3", pages = "329--330", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{LPT:TB32-3-331, author = "{{\LaTeX} Project Team}", title = "{\LaTeX} news, issue 20", journal = j-TUGboat, volume = "32", number = "3", pages = "331--332", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102ltnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Beitzel:TB32-3-333, author = "Brian Beitzel", title = "The {\tt meetingmins} {\LaTeX} class: {Hierarchically} organized meeting agendas and minutes", journal = j-TUGboat, volume = "32", number = "3", pages = "333--334", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102beitzel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Ruiz-Agundez:TB32-3-335, author = "Igor Ruiz-Agundez", title = "Collaborative {\LaTeX} writing with {Google Docs}", journal = j-TUGboat, volume = "32", number = "3", pages = "335--338", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102ruiz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Wilson:TB32-3-339, author = "Peter Wilson", title = "Glisterings: {Verbatim} arguments; {Cut} off in its prime", journal = j-TUGboat, volume = "32", number = "3", pages = "339--341", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Merciadri:TB32-3-342, author = "Luca Merciadri", title = "Some {{\LaTeXe}} tricks and tips (\acro{IV})", journal = j-TUGboat, volume = "32", number = "3", pages = "342--344", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102merciadri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Isambert:TB32-3-345, author = "Paul Isambert", title = "{\TeX} as you like it: {The} {\tt interpreter} package", journal = j-TUGboat, volume = "32", number = "3", pages = "345--348", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102isambert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Dziubinski:TB32-3-349, author = "Wiktor Dziubi{\'n}ski and Marcin Woli{\'n}ski and Grzegorz Murzynowski", title = "{\acro{PARCAT}}\Dash {Applying} {\TeX} in industry", journal = j-TUGboat, volume = "32", number = "3", pages = "349--356", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102murzynowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Crossland:TB32-3-357, author = "Dave Crossland", title = "{\tug} {Libre Font Fund}, {Google Web Fonts}, and {Kickstarter}", journal = j-TUGboat, volume = "32", number = "3", pages = "357--357", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102fontfund.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Veytsman:TB32-3-358, author = "Boris Veytsman", title = "Book review: {{\sl {Bodoni}, Manual of Typography\Dash {Manuale} tipografico (1818)}}", journal = j-TUGboat, volume = "32", number = "3", pages = "358--358", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102reviews-bodoni.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Veytsman:TB32-3-359, author = "Boris Veytsman", title = "Book review: {{\sl {\LaTeX} and Friends}}", journal = j-TUGboat, volume = "32", number = "3", pages = "359--360", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102reviews-ltxfriends.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Berry:TB32-3-361, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "32", number = "3", pages = "361--361", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-362, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issues 11--12} (2011)", journal = j-TUGboat, volume = "32", number = "3", pages = "362--363", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-363, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issue 3/2011}", journal = j-TUGboat, volume = "32", number = "3", pages = "363--364", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-364, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issue 2011-1}", journal = j-TUGboat, volume = "32", number = "3", pages = "364--364", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-365, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "32", number = "3", pages = "365--366", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-366, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "32", number = "3", pages = "366--366", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-367, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "32", number = "3", pages = "367--367", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB32-3-368, author = "Anonymous", title = "\acro{TUG}\,2012 announcement", journal = j-TUGboat, volume = "32", number = "3", pages = "368--368", year = "2011", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2011/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb32-3/tb102tug12.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "102", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2011 Proceedings.", } @Article{Anonymous:TB33-1-2, author = "Anonymous", title = "{{\acro{TUG}\,2012 announcement}}", journal = j-TUGboat, volume = "33", number = "1", pages = "2--2", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103tug12.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Peter:TB33-1-3, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "33", number = "1", pages = "3--3", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB33-1-3, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "33", number = "1", pages = "3--4", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB33-1-5, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "33", number = "1", pages = "5--6", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Armbruster:TB33-1-7, author = "Bruce Armbruster and Jeannie Howard Siegman", title = "In memoriam: {Tony Siegman}, 1931--2011", journal = j-TUGboat, volume = "33", number = "1", pages = "7--7", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103siegman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB33-1-8, author = "Peter Flynn", title = "Typographers' {Inn}", journal = j-TUGboat, volume = "33", number = "1", pages = "8--10", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB33-1-11, author = "Karl Berry", title = "{Lucida OpenType} fonts available from \acro{TUG}", journal = j-TUGboat, volume = "33", number = "1", pages = "11--11", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103lucida.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosny:TB33-1-12, author = "Khaled Hosny", title = "The {Amiri} typeface", journal = j-TUGboat, volume = "33", number = "1", pages = "12--12", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103hosny.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kime:TB33-1-13, author = "Philip Kime", title = "Biber\Dash{}the next generation backend processor for {{\Bib\LaTeX}}", journal = j-TUGboat, volume = "33", number = "1", pages = "13--15", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103kime.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB33-1-16, author = "Claudio Beccari", title = "{{\XeLaTeX}} and the {{\PDF}} archivable format", journal = j-TUGboat, volume = "33", number = "1", pages = "16--20", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103becc-pdfa.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Madsen:TB33-1-21, author = "Lars Madsen", title = "Avoid eqnarray!", journal = j-TUGboat, volume = "33", number = "1", pages = "21--25", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103madsen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beccari:TB33-1-26, author = "Claudio Beccari", title = "The unknown {\it picture} environment", journal = j-TUGboat, volume = "33", number = "1", pages = "26--32", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103becc-picture.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beitzel:TB33-1-33, author = "Brian Beitzel", title = "The {\tt apa6} {\LaTeX} class: {Challenges} encountered updating to new requirements", journal = j-TUGboat, volume = "33", number = "1", pages = "33--38", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103beitzel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB33-1-39, author = "Peter Wilson", title = "Glisterings: {Timelines}; {Parsing} a filename", journal = j-TUGboat, volume = "33", number = "1", pages = "39--42", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Merciadri:TB33-1-43, author = "Luca Merciadri", title = "Some {{\LaTeXe}} tricks and tips (\acro{V})", journal = j-TUGboat, volume = "33", number = "1", pages = "43--45", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103merciadri.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB33-1-46, author = "{{\LaTeX} Project Team}", title = "{{\LaTeX3}} news, issues 6--7", journal = j-TUGboat, volume = "33", number = "1", pages = "46--47", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Henderson:TB33-1-48, author = "Troy Henderson", title = "User-friendly web utilities for generating {\LaTeX} output and {MetaPost} graphics", journal = j-TUGboat, volume = "33", number = "1", pages = "48--50", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103henderson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB33-1-53, author = "Joseph Wright", title = "{\TeX} on {Windows}: {{MiK\TeX}} or {\TeX} Live?", journal = j-TUGboat, volume = "33", number = "1", pages = "53--53", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103wright.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gundlach:TB33-1-54, author = "Patrick Gundlach", title = "Generating barcodes with {{Lua\TeX}}", journal = j-TUGboat, volume = "33", number = "1", pages = "54--58", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103gundlach.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Isambert:TB33-1-59, author = "Paul Isambert", title = "{OpenType} fonts in {{Lua\TeX}}", journal = j-TUGboat, volume = "33", number = "1", pages = "59--85", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103isambert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB33-1-86, author = "Hans Hagen", title = "{{\ConTeXt}}: {Updating} the code base", journal = j-TUGboat, volume = "33", number = "1", pages = "86--97", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB33-1-98, author = "Bogus{\l}aw Jackowski", title = "Computing the area and winding number for a {B{\'e}zier} curve", journal = j-TUGboat, volume = "33", number = "1", pages = "98--101", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wolcott:TB33-1-102, author = "Keith Wolcott", title = "Three-dimensional graphics with {{\acro{PGF}}}/{{\TikZ}}", journal = j-TUGboat, volume = "33", number = "1", pages = "102--113", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103wolcott.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Arora:TB33-1-114, author = "Pavneet Arora", title = "Book review: {\sl {Trees}, maps, and theorems}", journal = j-TUGboat, volume = "33", number = "1", pages = "114--115", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103reviews-doumont.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB33-1-116, author = "Boris Veytsman", title = "Book review: {{\sl {Design} for Hackers}}", journal = j-TUGboat, volume = "33", number = "1", pages = "116--117", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103reviews-kadavy.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB33-1-118, author = "David Walden", title = "Book review: {{\sl Companion to the Papers of Donald Knuth}}", journal = j-TUGboat, volume = "33", number = "1", pages = "118--118", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103reviews-knuth9-walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB33-1-119, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "33", number = "1", pages = "119", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-1-121a, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issue 26--27} ({October} 2011)", journal = j-TUGboat, volume = "33", number = "1", pages = "121--121", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-1-121b, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 4/2011--1/2012}", journal = j-TUGboat, volume = "33", number = "1", pages = "121--122", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-1-124, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "33", number = "1", pages = "124--125", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-1-126, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "33", number = "1", pages = "126--126", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB33-1-126, author = "Karl Berry", title = "\acro{TUG} financial statements for 2011", journal = j-TUGboat, volume = "33", number = "1", pages = "126--127", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-1-128, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "33", number = "1", pages = "128", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-1/tb103calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "103", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-2-130, author = "Anonymous", title = "Conference program, delegates, and sponsors", journal = j-TUGboat, volume = "33", number = "2", pages = "130--131", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Articles/tb33-2/tb104confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Latchman:TB33-2-132, author = "David Latchman", title = "\acro{TUG} 2012: {A} first-time attendee", journal = j-TUGboat, volume = "33", number = "2", pages = "132--137", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Articles/tb33-2/tb104latchman-tug12.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-138, author = "Anonymous", title = "Roundtable discussion: {\TeX} consulting", journal = j-TUGboat, volume = "33", number = "2", pages = "138--145", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Articles/tb33-2/tb104panel.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Walden:TB33-2-146, author = "David Walden", title = "My {Boston}: {Some} printing and publishing history", journal = j-TUGboat, volume = "33", number = "2", pages = "146--155", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Veytsman:TB33-2-156, author = "Boris Veytsman and Leyla Akhmadeeva", title = "Towards evidence-based typography: {First} results", journal = j-TUGboat, volume = "33", number = "2", pages = "156--157", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104veytsman-typo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Garcia:TB33-2-158, author = "Federico Garcia", title = "{\TeX} and music: {An} update on {\TeX}{\it muse}", journal = j-TUGboat, volume = "33", number = "2", pages = "158--164", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104garcia.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{LPT:TB33-2-165, author = "{{\LaTeX} Project Team}", title = "{\LaTeX3} news, issue 8", journal = j-TUGboat, volume = "33", number = "2", pages = "165--166", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Latchman:TB33-2-167, author = "David Latchman", title = "Preparing your thesis in {\LaTeX}", journal = j-TUGboat, volume = "33", number = "2", pages = "167--171", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104latchman-thesis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Flynn:TB33-2-172, author = "Peter Flynn", title = "A university thesis class: {Automation} and its pitfalls", journal = j-TUGboat, volume = "33", number = "2", pages = "172--177", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104flynn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Childs:TB33-2-178, author = "Bart Childs", title = "{\LaTeX} source from word processors", journal = j-TUGboat, volume = "33", number = "2", pages = "178--183", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104childs.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Koch:TB33-2-184, author = "Richard Koch", title = "The {Mac\TeX} install package for \acro{OS\,X}", journal = j-TUGboat, volume = "33", number = "2", pages = "184--191", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104koch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Veytsman:TB33-2-192, author = "Boris Veytsman", title = "{\TeX} and friends on a {Pad}", journal = j-TUGboat, volume = "33", number = "2", pages = "192--195", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104veytsman-pad.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Arora:TB33-2-196, author = "Pavneet Arora", title = "{\acro{YAWN}}\Dash {A} {\TeX}-enabled workflow for project estimation", journal = j-TUGboat, volume = "33", number = "2", pages = "196--198", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104arora.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Verna:TB33-2-199, author = "Didier Verna", title = "Star {\TeX}: {The Next} {Generation}", journal = j-TUGboat, volume = "33", number = "2", pages = "199--208", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104verna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Neveln:TB33-2-209, author = "Bob Neveln and Bob Alps", title = "Adapting {ProofCheck} to the author's needs", journal = j-TUGboat, volume = "33", number = "2", pages = "209--212", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104neveln.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Doob:TB33-2-213, author = "Michael Doob and Jim {Hefferon}", title = "Approaching {Asymptote}", journal = j-TUGboat, volume = "33", number = "2", pages = "213--218", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104doob.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Hendrickson:TB33-2-219, author = "Amy Hendrickson", title = "The joy of\/ \cs{csname...}\cs{endcsname}", journal = j-TUGboat, volume = "33", number = "2", pages = "219--224", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104hendrickson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-225, author = "Anonymous", title = "{\acro{TUG} 2012 abstracts} \ ({Cheswick}, {Garcia}, {Henderson}, {Mansour}, {Mittelbach}, {Peter}, {Preining}, {Robertson}, {Thiele})", journal = j-TUGboat, volume = "33", number = "2", pages = "225--226", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/Articles/tb33-2/tb104abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-228, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 13} (2012)", journal = j-TUGboat, volume = "33", number = "2", pages = "228--228", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-229, author = "Anonymous", title = "{{\slnine {MAPS}\/}: Contents of issue 42 (2011)}", journal = j-TUGboat, volume = "33", number = "2", pages = "229--229", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Berry:TB33-2-230, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "33", number = "2", pages = "230--231", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Veytsman:TB33-2-232, author = "Boris Veytsman", title = "Book review: {{\sl About more alphabets: The types of Hermann Zapf}}", journal = j-TUGboat, volume = "33", number = "2", pages = "232--232", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104reviews-kelly-zapf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-233, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "33", number = "2", pages = "233--234", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-235, author = "Anonymous", title = "{{\acro{TUG} institutional members}}", journal = j-TUGboat, volume = "33", number = "2", pages = "235--235", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-235-2, author = "Anonymous", title = "{\TeX} {Collection} 2012", journal = j-TUGboat, volume = "33", number = "2", pages = "235--235", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Anonymous:TB33-2-236, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "33", number = "2", pages = "236--236", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://tug.org/tug2012/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-2/tb104calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "104", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2012 Proceedings.", } @Article{Peter:TB33-3-239, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "33", number = "3", pages = "239--239", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB33-3-240, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "33", number = "3", pages = "240--241", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kohm:TB33-3-241, author = "Markus Kohm", title = "{{\acro{KOMA-S}cript}} comes of age", journal = j-TUGboat, volume = "33", number = "3", pages = "241--244", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105kohm-maturity.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thiele:TB33-3-245, author = "Christina Thiele", title = "Almost 30 years of using {\TeX}", journal = j-TUGboat, volume = "33", number = "3", pages = "245--262", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105thiele.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thurnherr:TB33-3-263, author = "Thomas Thurnherr", title = "Changing the font size in {\LaTeX}", journal = j-TUGboat, volume = "33", number = "3", pages = "263--264", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105thurnherr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuster:TB33-3-265, author = "Robert Fuster", title = "The {\tt calculator} and {\tt calculus} packages: {Arithmetic} and functional calculations inside {\LaTeX}", journal = j-TUGboat, volume = "33", number = "3", pages = "265--271", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105fuster.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Niederberger:TB33-3-272, author = "Clemens Niederberger", title = "The {\tt xtemplate} package: An example", journal = j-TUGboat, volume = "33", number = "3", pages = "272--275", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105niederberger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pupalaikis:TB33-3-276, author = "Peter Pupalaikis", title = "A patent application design flow in {\LaTeX} and {\LyX}", journal = j-TUGboat, volume = "33", number = "3", pages = "276--281", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105pupalaikis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Kohm:TB33-3-282, author = "Markus Kohm", title = "Page style tricks with {\tt scrpage2}", journal = j-TUGboat, volume = "33", number = "3", pages = "282--284", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105kohm-scrpage2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voipio:TB33-3-285, author = "Mari Voipio", title = "{Craf\TeX}: {Applying} {\TeX}, {MetaPost}, and friends in crafts", journal = j-TUGboat, volume = "33", number = "3", pages = "285--288", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105voipio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Delprat:TB33-3-289, author = "Bruno Delprat and Stepan Orevkov", title = "{Maya\acro{PS}}: {Maya} hieroglyphics with {\AllTeX}", journal = j-TUGboat, volume = "33", number = "3", pages = "289--294", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105delprat.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mansour:TB33-3-295, author = "Sherif Mansour and Hossam Fahmy", title = "Experiences with {Arabic} font development", journal = j-TUGboat, volume = "33", number = "3", pages = "295--298", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105mansour.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB33-3-299, author = "Boris Veytsman", title = "The fonts we choose", journal = j-TUGboat, volume = "33", number = "3", pages = "299--300", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105veytsman-fonts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voss:TB33-3-301, author = "Herbert Vo{\ss}", title = "Using {\TeX} {GyrePagella OpenType Math}", journal = j-TUGboat, volume = "33", number = "3", pages = "301--301", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Vieth:TB33-3-302, author = "Ulrik Vieth", title = "{OpenType} math font development: {Progress} and challenges", journal = j-TUGboat, volume = "33", number = "3", pages = "302--308", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105vieth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Romer:TB33-3-309, author = "Linus Romer", title = "From drawn to filled paths", journal = j-TUGboat, volume = "33", number = "3", pages = "309--312", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105romer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB33-3-313, author = "Peter Wilson", title = "Glisterings: {Cutout} windows", journal = j-TUGboat, volume = "33", number = "3", pages = "313--315", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB33-3-316, author = "Boris Veytsman", title = "Stubborn leaders and juggling boxes: {A} slightly unusual table of contents", journal = j-TUGboat, volume = "33", number = "3", pages = "316--318", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105veytsman-leaders.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB33-3-319, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "33", number = "3", pages = "319--320", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB33-3-320, author = "Boris Veytsman", title = "Book review: {{\sl {\slnine PST}ricks: Graphics and PostScript for {\TeX} and \LaTeX}}", journal = j-TUGboat, volume = "33", number = "3", pages = "320--321", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105reviews-voss.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB33-3-322, author = "David Walden", title = "Book review: {{\sl Just My Type: A book about fonts}}", journal = j-TUGboat, volume = "33", number = "3", pages = "322--323", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105reviews-garfield.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-324, author = "Anonymous", title = "{{\it Les Cahiers {\slnine GUT\kern-.03em}enberg\/}}: {Contents} of issue 56 (2011) (simultaneously published as {{\slnine MAPS}} 43 and {{\it Zpravodaj\/}} 2--4/2011)", journal = j-TUGboat, volume = "33", number = "3", pages = "324--325", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-325, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 14} (October 2012)", journal = j-TUGboat, volume = "33", number = "3", pages = "325--326", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105arstexnica.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-326, author = "Anonymous", title = "{{\it The Prac{\TeX} Journal\/}: Contents of issue 2012-1}", journal = j-TUGboat, volume = "33", number = "3", pages = "326--327", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105pracjourn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB33-3-328, author = "Don Knuth", title = "{\acro{PUB}} and pre-{\TeX}\ history", journal = j-TUGboat, volume = "33", number = "3", pages = "328--328", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-328, author = "Anonymous", title = "\acro{TUG}\,2013 announcement", journal = j-TUGboat, volume = "33", number = "3", pages = "328--328", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105tug13.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-329, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "33", number = "3", pages = "329--329", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb33-3/tb105calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-330, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "33", number = "3", pages = "330--331", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-238, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "33", number = "3", pages = "238--238", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB33-3-332, author = "Anonymous", title = "\acro{TUG} 2013 election", journal = j-TUGboat, volume = "33", number = "3", pages = "332--332", year = "2012", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:03 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "105", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Peter:TB34-1-3, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "34", number = "1", pages = "3--3", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB34-1-4, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "34", number = "1", pages = "4--5", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Neugebauer:TB34-1-6, author = "Gerd Neugebauer", title = "{\CTAN}: {Relaunch} of the {Web} portal", journal = j-TUGboat, volume = "34", number = "1", pages = "6--6", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106neugebauer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tennent:TB34-1-10, author = "Bob Tennent", title = "{Fonts!\ Fonts!\ Fonts!}", journal = j-TUGboat, volume = "34", number = "1", pages = "10--13", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106tennent.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB34-1-14, author = "Peter Flynn", title = "Typographers' {Inn}", journal = j-TUGboat, volume = "34", number = "1", pages = "14--16", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voipio:TB34-1-17, author = "Mari Voipio", title = "Entry-level {MetaPost}: {On} the grid", journal = j-TUGboat, volume = "34", number = "1", pages = "17--20", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106voipio-grid.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voipio:TB34-1-21, author = "Mari Voipio", title = "Recreating historical patterns with {MetaPost}", journal = j-TUGboat, volume = "34", number = "1", pages = "21--25", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106voipio-patterns.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fuster:TB34-1-26, author = "Robert Fuster", title = "The {\tt xpicture} package", journal = j-TUGboat, volume = "34", number = "1", pages = "26--33", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106fuster.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thurnherr:TB34-1-34, author = "Thomas Thurnherr", title = "Side-by-side figures in {\LaTeX}", journal = j-TUGboat, volume = "34", number = "1", pages = "34--36", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106thurnherr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB34-1-37, author = "Peter Wilson", title = "Glisterings: {Repetition}; {Verbatims}; {Small} pages; {Prefixing} section heads", journal = j-TUGboat, volume = "34", number = "1", pages = "37--39", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Messineo:TB34-1-40, author = "Grazia Messineo and Salvatore Vassallo", title = "The {\tt esami} package for examinations", journal = j-TUGboat, volume = "34", number = "1", pages = "40--46", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106messineo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB34-1-47, author = "Frank Mittelbach", title = "{E-\TeX}: Guidelines for future {\TeX} extensions\Dash revisited", journal = j-TUGboat, volume = "34", number = "1", pages = "47--63", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Scarso:TB34-1-64, author = "Luigi Scarso", title = "{LuaJIT\TeX}", journal = j-TUGboat, volume = "34", number = "1", pages = "64--71", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106scarso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB34-1-72, author = "Hans Hagen", title = "{\ConTeXt}: {Just-in-time} {Lua\TeX}", journal = j-TUGboat, volume = "34", number = "1", pages = "72--78", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mahajan:TB34-1-79, author = "Aditya Mahajan", title = "{\ConTeXt} basics for users: {Images}", journal = j-TUGboat, volume = "34", number = "1", pages = "79--82", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106mahajan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Olsak:TB34-1-83, author = "Petr Ol{\v{s}}{\'a}k", title = "New {\CS}plain of 2012", journal = j-TUGboat, volume = "34", number = "1", pages = "83--87", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106olsak-csplain.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Olsak:TB34-1-88, author = "Petr Ol{\v{s}}{\'a}k", title = "{OPmac}: {Macros} for plain {\TeX}", journal = j-TUGboat, volume = "34", number = "1", pages = "88--95", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106olsak-opmac.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB34-1-96, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "34", number = "1", pages = "96--97", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB34-1-97, author = "Karl Berry", title = "Production notes", journal = j-TUGboat, volume = "34", number = "1", pages = "97--97", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB34-1-98, author = "Boris Veytsman", title = "Book review: {{\sl The Computer Science of {\TeX} and \LaTeX}}", journal = j-TUGboat, volume = "34", number = "1", pages = "98--98", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106reviews-eijkhout.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-99, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issues 4/2012--1/2013}", journal = j-TUGboat, volume = "34", number = "1", pages = "99--99", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-100, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issue 28--29} (October 2012)", journal = j-TUGboat, volume = "34", number = "1", pages = "100--100", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106eutypon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-101, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "34", number = "1", pages = "101--101", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-102, author = "Anonymous", title = "{{\acro{TUG}\,2013 announcement}}", journal = j-TUGboat, volume = "34", number = "1", pages = "102--102", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106tug13.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-103, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "34", number = "1", pages = "103--104", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-2, author = "Anonymous", title = "{\TUB} editorial information", journal = j-TUGboat, volume = "34", number = "1", pages = "2--2", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-2-2, author = "Anonymous", title = "{{\acro{TUG} institutional members}}", journal = j-TUGboat, volume = "34", number = "1", pages = "2--2", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-105, author = "Anonymous", title = "{{\acro{TUG} membership form}}", journal = j-TUGboat, volume = "34", number = "1", pages = "105--105", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB34-1-106, author = "Karl Berry", title = "{{\acro{TUG} financial statements for 2012}}", journal = j-TUGboat, volume = "34", number = "1", pages = "106--106", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-1-107, author = "Anonymous", title = "{{\acro{TUG} 2013 election}}", journal = j-TUGboat, volume = "34", number = "1", pages = "107--107", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Quinn:TB34-1-108, author = "Daniel Quinn", title = "Colophon", journal = j-TUGboat, volume = "34", number = "1", pages = "108--108", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-1/tb106quinn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "106", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Peter:TB34-2-111, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "34", number = "2", pages = "111--111", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB34-2-111, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "34", number = "2", pages = "111--112", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Henderson:TB34-2-112, author = "Doug Henderson", title = "In memoriam: {Barry Smith} (1953--2012)", journal = j-TUGboat, volume = "34", number = "2", pages = "112--112", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107smith.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB34-2-113, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "34", number = "2", pages = "113--114", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilcox:TB34-2-114, author = "Adeline Wilcox", title = "Running {\TeX} under {Windows PowerShell}", journal = j-TUGboat, volume = "34", number = "2", pages = "114", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107wilcox.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB34-2-115, author = "Hans Hagen", title = "Does {\TeX} have a future?", journal = j-TUGboat, volume = "34", number = "2", pages = "115--119", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{TCeditors:TB34-2-120, author = "{{\TeX} Collection editors}", title = "{{\TeX} Collection 2013 \DVD}", journal = j-TUGboat, volume = "34", number = "2", pages = "120--120", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107texcoll.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hosny:TB34-2-121, author = "Khaled Hosny", title = "What is new in {\XeTeX} 0.9999?", journal = j-TUGboat, volume = "34", number = "2", pages = "121--122", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107hosny.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoekwater:TB34-2-123, author = "Taco Hoekwater", title = "{MetaPost}: \acro{PNG} output", journal = j-TUGboat, volume = "34", number = "2", pages = "123--123", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hunniger:TB34-2-124, author = "Dirk H{\"u}nniger", title = "Converting {Wikipedia} articles to {\LaTeX}", journal = j-TUGboat, volume = "34", number = "2", pages = "124--124", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107huenniger.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sharpe:TB34-2-125, author = "Michael Sharpe", title = "A survey of text font families", journal = j-TUGboat, volume = "34", number = "2", pages = "125--131", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107sharpe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB34-2-132, author = "Peter Wilson", title = "Glisterings: {A} font of fleurons; {Fonts}, {{\GNU/Linux}}, and {\XeTeX}; {Mixing} traditional and system fonts", journal = j-TUGboat, volume = "34", number = "2", pages = "132--135", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wang:TB34-2-136, author = "Yue Wang", title = "Interview with {Charles Bigelow}", journal = j-TUGboat, volume = "34", number = "2", pages = "136--167", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107bigelow-wang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bigelow:TB34-2-168, author = "Charles Bigelow", title = "Oh, oh, zero!", journal = j-TUGboat, volume = "34", number = "2", pages = "168--181", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107bigelow-zero.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB34-2-181, author = "Karl Berry", title = "Production notes", journal = j-TUGboat, volume = "34", number = "2", pages = "181--181", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107prod.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB34-2-182, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "34", number = "2", pages = "182--183", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lupkowski:TB34-2-184, author = "Pawe{\l} {\L}upkowski and Mariusz Urba{\'n}ski", title = "Preparing for scientific conferences with {\LaTeX}: {A} short practical how-to", journal = j-TUGboat, volume = "34", number = "2", pages = "184--189", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107lupkowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Esser:TB34-2-190, author = "Hans-Georg E{\ss}er", title = "{LiPPGen}: {A} presentation generator for literate-programming-based teaching", journal = j-TUGboat, volume = "34", number = "2", pages = "190--195", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107esser.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voipio:TB34-2-196, author = "Mari Voipio", title = "Entry-level {MetaPost} 2: {Move} it!", journal = j-TUGboat, volume = "34", number = "2", pages = "196--199", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107voipio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dugge:TB34-2-200, author = "Juernjakob Dugge", title = "Creating {Tufte}-style bar charts and scatterplots using \acro{PGFP}lots", journal = j-TUGboat, volume = "34", number = "2", pages = "200--204", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107dugge.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Jackowski:TB34-2-205, author = "Bogus{\l}aw Jackowski", title = "Typographers, programmers and mathematicians, or the case of an {\ae}{}sthetically pleasing interpolation", journal = j-TUGboat, volume = "34", number = "2", pages = "205--222", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107jackowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Donnelly:TB34-2-223, author = "Kevin Donnelly", title = "Representing linguistic pitch in {(\Xe\kern-1pt)\LaTeX}", journal = j-TUGboat, volume = "34", number = "2", pages = "223--227", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107donnelly.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB34-2-228, author = "Boris Veytsman", title = "Book review: {{\it Learning \LaTeX}}", journal = j-TUGboat, volume = "34", number = "2", pages = "228--228", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107reviews-learnltx.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB34-2-229, author = "Boris Veytsman", title = "Book review: {{\it Zapf Exhibition: The Calligraphy of Hermann \& Gudrun Zapf}}", journal = j-TUGboat, volume = "34", number = "2", pages = "229--229", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107reviews-zapfexhibition.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB34-2-230, author = "Will Adams", title = "Book review: {{\it What Our Lettering Needs}}", journal = j-TUGboat, volume = "34", number = "2", pages = "230--230", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107reviews-zapfhallmark.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB34-2-231, author = "Boris Veytsman", title = "Book review: {{\it {\LaTeX} Quick Reference}}", journal = j-TUGboat, volume = "34", number = "2", pages = "231--231", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107reviews-vossltxref.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB34-2-232, author = "Boris Veytsman", title = "Book review: {{\it Presentations with \LaTeX}}", journal = j-TUGboat, volume = "34", number = "2", pages = "232--233", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107reviews-vosspres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-233, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "34", number = "2", pages = "233--234", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-235, author = "Anonymous", title = "{{\it Die \TeX nische Kom{\"o}die\/}: Contents of issue 2/2013}", journal = j-TUGboat, volume = "34", number = "2", pages = "235--235", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-235-2, author = "Anonymous", title = "{{\it Ars\TeX nica\/}: Contents of issue 15} ({April} 2013)", journal = j-TUGboat, volume = "34", number = "2", pages = "235--235", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-236, author = "Anonymous", title = "{{\acro{GUST}: EuroBacho{\TeX}2013 proceedings}}", journal = j-TUGboat, volume = "34", number = "2", pages = "236--239", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107gust.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-110, author = "Anonymous", title = "{\TUB} editorial information", journal = j-TUGboat, volume = "34", number = "2", pages = "110--110", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-110-2, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "34", number = "2", pages = "110--110", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-240, author = "Anonymous", title = "\acro{TUG} 2013 election", journal = j-TUGboat, volume = "34", number = "2", pages = "240--242", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-243, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "34", number = "2", pages = "243--243", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-2-244, author = "Anonymous", title = "\acro{TUG}\,2013 announcement", journal = j-TUGboat, volume = "34", number = "2", pages = "244--244", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-2/tb107tug13.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "107", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB34-3-246, author = "Anonymous", title = "Conference sponsors, participants, and program", journal = j-TUGboat, volume = "34", number = "3", pages = "246--249", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108confinfo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Preining:TB34-3-252, author = "Norbert Preining", title = "\acro{TUG} 2013 in {Tokyo}", journal = j-TUGboat, volume = "34", number = "3", pages = "252--258", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108preining-tug13.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Verna:TB34-3-259, author = "Didier Verna", title = "The incredible tale of the author who didn't want to do the publisher's job, $ \ldots $", journal = j-TUGboat, volume = "34", number = "3", pages = "259--262", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108verna.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Lewis:TB34-3-263, author = "Jason Lewis", title = "How to make a product catalogue that doesn't look like a dissertation", journal = j-TUGboat, volume = "34", number = "3", pages = "263--267", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108lewis.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Ma:TB34-3-268, author = "Clerk Ma and Jie Su", title = "{Project Fandol}: \acro{GPL} fonts for {Chinese} typesetting", journal = j-TUGboat, volume = "34", number = "3", pages = "268", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108ma-fandol.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Skala:TB34-3-269, author = "Matthew Skala", title = "{Tsukurimashou}: {A} {Japanese}-language font meta-family", journal = j-TUGboat, volume = "34", number = "3", pages = "269--278", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108skala.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Ma:TB34-3-279, author = "Clerk Ma", title = "{Braille} fonts in {Project Fandol}", journal = j-TUGboat, volume = "34", number = "3", pages = "279--280", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108ma-braille.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Nakano:TB34-3-281, author = "Ken Nakano and Hajime Kobayashi", title = "Case study: {Typesetting} old documents of {Japan}", journal = j-TUGboat, volume = "34", number = "3", pages = "281--284", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108nakano.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Tanaka:TB34-3-285, author = "Takuji Tanaka", title = "{up\TeX}\Dash {Unicode} version of {p\TeX} with \acro{CJK} extensions", journal = j-TUGboat, volume = "34", number = "3", pages = "285--288", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108tanaka.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Plaice:TB34-3-289, author = "John Plaice", title = "Typesetting and layout in multiple directions\Dash Proposed solution", journal = j-TUGboat, volume = "34", number = "3", pages = "289--292", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108plaice.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Preining:TB34-3-293, author = "Norbert Preining", title = "{{\TeX} Live Manager}'s rare gems: {User} mode and multiple repository support", journal = j-TUGboat, volume = "34", number = "3", pages = "293--296", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108preining-tlmgr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Preining:TB34-3-297, author = "Norbert Preining", title = "Redistributing {\TeX} and friends", journal = j-TUGboat, volume = "34", number = "3", pages = "297--301", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108preining-distro.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Mertz:TB34-3-302, author = "Andrew Mertz and William Slough", title = "A gentle introduction to {Python\TeX}", journal = j-TUGboat, volume = "34", number = "3", pages = "302--312", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108mertz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Wang:TB34-3-313, author = "Lu Wang and Wanmin Liu", title = "Online publishing via {pdf2html\acro{EX}}", journal = j-TUGboat, volume = "34", number = "3", pages = "313--324", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108wang.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Fujita:TB34-3-325, author = "Shinsaku Fujita", title = "The {\XyMTeX} system for publishing interdisciplinary chemistry/mathematics books", journal = j-TUGboat, volume = "34", number = "3", pages = "325--328", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108fujita.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Arora:TB34-3-329, author = "Pavneet Arora", title = "{\acro{TANSU}}\Dash {A} workflow for cabinet layout", journal = j-TUGboat, volume = "34", number = "3", pages = "329--331", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108arora.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Hagen:TB34-3-332, author = "Nathan Hagen", title = "Bibulous\Dash {A} drop-in {\BibTeX} replacement based on style templates", journal = j-TUGboat, volume = "34", number = "3", pages = "332--339", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108hagen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Cohen:TB34-3-340, author = "Michael Cohen and Yannis Haralambous and Boris Veytsman", title = "{The} multibibliography package", journal = j-TUGboat, volume = "34", number = "3", pages = "340--343", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108cohen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Hankus:TB34-3-344, author = "Aleksandra Hankus and Zofia Walczak", title = "{\LaTeX} and graphics: {Basics} and packages", journal = j-TUGboat, volume = "34", number = "3", pages = "344--348", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108hankus.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Veytsman:TB34-3-349, author = "Boris Veytsman and Leyla Akhmadeeva", title = "Plots in {\LaTeX}: {Gnuplot, Octave, make}", journal = j-TUGboat, volume = "34", number = "3", pages = "349--356", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108veytsman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Voipio:TB34-3-357, author = "Mari Voipio", title = "Entry-level {MetaPost} 3: {Color}", journal = j-TUGboat, volume = "34", number = "3", pages = "357--359", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108voipio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Anonymous:TB34-3-360, author = "Anonymous", title = "{\acro{TUG} 2013 abstracts} \ ({Cho}, {Hagen}, {Hakuta}, {Maeda} \& {Kaneko}, {Minoda}, {Mittelbach}, {Moore}, {Shikano}, {Takata}, {Terada}, {Verna}, {Wetmore}, {Yabe})", journal = j-TUGboat, volume = "34", number = "3", pages = "360--362", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Anonymous:TB34-3-364, author = "Anonymous", title = "{{\slnine {MAPS}\/}: Contents of issue 44 (2013)}", journal = j-TUGboat, volume = "34", number = "3", pages = "364--365", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108maps.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Anonymous:TB34-3-365, author = "Anonymous", title = "{{\sl Die \TeX nische Kom{\"o}die\/}: Contents of issues 3--4/2013}", journal = j-TUGboat, volume = "34", number = "3", pages = "365--365", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Berry:TB34-3-366, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "34", number = "3", pages = "366--367", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Bitouze:TB34-3-367, author = "Denis Bitouz{\'e}", title = "In memoriam: {Jean-Pierre Drucbert} (1947--2009)", journal = j-TUGboat, volume = "34", number = "3", pages = "367--367", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108drucbert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Walden:TB34-3-368, author = "Dave Walden", title = "Book review: {{\sl Essential Knuth}}", journal = j-TUGboat, volume = "34", number = "3", pages = "368--369", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108reviews-knuth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Ma:TB34-3-369, author = "Clerk Ma", title = "Book review: {{\sl Introduction to \LaTeX}}", journal = j-TUGboat, volume = "34", number = "3", pages = "369--369", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108reviews-liuintro.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Anonymous:TB34-3-370, author = "Anonymous", title = "{{\acro{TUG} institutional members}}", journal = j-TUGboat, volume = "34", number = "3", pages = "370--370", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Anonymous:TB34-3-370-2, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "34", number = "3", pages = "370--371", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Anonymous:TB34-3-372, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "34", number = "3", pages = "372--372", year = "2013", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2013/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb34-3/tb108calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "108", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2013 Proceedings.", } @Article{Peter:TB35-1-2, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "35", number = "1", pages = "2--2", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB35-1-3, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "35", number = "1", pages = "3--4", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB35-1-5, author = "Donald Knuth", title = "The {\TeX} tuneup of 2014", journal = j-TUGboat, volume = "35", number = "1", pages = "5--8", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109knut.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hunt:TB35-1-9, author = "James Hunt", title = "Making lists: {A} journey into unknown grammar", journal = j-TUGboat, volume = "35", number = "1", pages = "9--15", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109hunt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hufflen:TB35-1-16, author = "Jean-Michel Hufflen", title = "In memoriam {Jean-Pierre Drucbert}", journal = j-TUGboat, volume = "35", number = "1", pages = "16--16", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109drucbert.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Gaspar:TB35-1-16, author = "Jaime Gaspar", title = "Does not suffice to run {\tt latex} a finite number of times to get cross-references right", journal = j-TUGboat, volume = "35", number = "1", pages = "16--16", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109gaspar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Romer:TB35-1-17, author = "Linus Romer", title = "Fetamont: {An} extended logo typeface", journal = j-TUGboat, volume = "35", number = "1", pages = "17--21", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109romer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB35-1-22, author = "{{\LaTeX} Project Team}", title = "{\LaTeX3} news, issue 9", journal = j-TUGboat, volume = "35", number = "1", pages = "22--26", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109l3news.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thurnherr:TB35-1-27, author = "Thomas Thurnherr", title = "Introduction to presentations with {\tt beamer}", journal = j-TUGboat, volume = "35", number = "1", pages = "27--30", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109thurnherr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB35-1-31, author = "Joseph Wright", title = "The {\tt beamer} class: {Controlling} overlays", journal = j-TUGboat, volume = "35", number = "1", pages = "31--33", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109wright.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Pagnossin:TB35-1-34, author = "Ivan Pagnossin", title = "Boxes and more boxes", journal = j-TUGboat, volume = "35", number = "1", pages = "34--35", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109pagnossin.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB35-1-36, author = "Peter Wilson", title = "Glisterings: {Glyphs}, long labels", journal = j-TUGboat, volume = "35", number = "1", pages = "36--38", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Helvensteijn:TB35-1-39, author = "Michiel Helvensteijn", title = "The {\tt pkgloader} and {\tt lt3graph} packages: {Toward} simple and powerful package management for {\LaTeX}", journal = j-TUGboat, volume = "35", number = "1", pages = "39--43", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109helvensteijn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Dominici:TB35-1-44, author = "Massimiliano Dominici", title = "An overview of {Pandoc}", journal = j-TUGboat, volume = "35", number = "1", pages = "44--50", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109dominici.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Montijano:TB35-1-51, author = "Juan Montijano and Mario P{\'e}rez and Luis R{\'a}ndez and Juan Luis Varona", title = "Numerical methods with {Lua\LaTeX}", journal = j-TUGboat, volume = "35", number = "1", pages = "51--56", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109montijano.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoekwater:TB35-1-57, author = "Taco Hoekwater", title = "Parsing {\PDF} content streams {with Lua\TeX}", journal = j-TUGboat, volume = "35", number = "1", pages = "57--60", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bossard:TB35-1-61, author = "Antoine Bossard and Takeyuki Nagao", title = "{ModernDvi}: {A} high quality rendering and modern {\DVI} viewer", journal = j-TUGboat, volume = "35", number = "1", pages = "61--68", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109bossard.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB35-1-69, author = "Hans Hagen", title = "Selection in {\PDF} viewers and a {Lua\TeX} bug", journal = j-TUGboat, volume = "35", number = "1", pages = "69--70", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109hagen-select.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Shibakov:TB35-1-71, author = "Alexander Shibakov", title = "Parsers in {\TeX} and using {{\tt CWEB}} for general pretty-printing", journal = j-TUGboat, volume = "35", number = "1", pages = "71--78", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109shibakov.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Voipio:TB35-1-79, author = "Mari Voipio", title = "Entry-level {MetaPost} 4: {Artful} lines", journal = j-TUGboat, volume = "35", number = "1", pages = "79--81", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109voipio.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB35-1-82, author = "Hans Hagen", title = "{\tt drawdot} in {MetaPost}: {A} bug, a fix", journal = j-TUGboat, volume = "35", number = "1", pages = "82--82", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109hagen-drawdot.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Schlupkothen:TB35-1-83, author = "Frederik Schlupkothen", title = "{\HTML} to {\LaTeX} transformation", journal = j-TUGboat, volume = "35", number = "1", pages = "83--90", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109schlupkothen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Suarez-Burgoa:TB35-1-91, author = "Ludger Suarez-Burgoa", title = "Scientific documents written by novice researchers: {A} personal experience in {Latin America}", journal = j-TUGboat, volume = "35", number = "1", pages = "91--98", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109suarez.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB35-1-99, author = "David Walden", title = "Macro memories, 1964--2013", journal = j-TUGboat, volume = "35", number = "1", pages = "99--110", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-111, author = "Anonymous", title = "{{\it Eutypon\/}: Contents of issue 30--31} ({October} 2013)", journal = j-TUGboat, volume = "35", number = "1", pages = "111--111", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/TUGboat/tb35-1/tb109eutypon.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-111-2, author = "Anonymous", title = "{{\sl Die \TeX nische Kom{\"o}die\/}: Contents of issue 1/2014}", journal = j-TUGboat, volume = "35", number = "1", pages = "111--111", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/TUGboat/tb35-1/tb109komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB35-1-112, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "35", number = "1", pages = "112--112", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB35-1-113, author = "Boris Veytsman", title = "Book reviews: {{\it {\LaTeX} for Complete Novices}} and {{\it Using {\LaTeX} to Write a PhD Thesis}, by Nicola Talbot}", journal = j-TUGboat, volume = "35", number = "1", pages = "113--114", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109reviews-talbot.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB35-1-115, author = "Boris Veytsman", title = "Book review: {{\it Dynamic Documents with R and knitr}, by Yihui Xie}", journal = j-TUGboat, volume = "35", number = "1", pages = "115--119", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109reviews-xie.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-2, author = "Anonymous", title = "{\TUB} editorial information", journal = j-TUGboat, volume = "35", number = "1", pages = "2--2", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109edit.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB35-1-120, author = "Karl Berry", title = "\acro{TUG} financial statements for 2013", journal = j-TUGboat, volume = "35", number = "1", pages = "120--120", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-121, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "35", number = "1", pages = "121--121", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-121-2, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "35", number = "1", pages = "121--122", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-123, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "35", number = "1", pages = "123--123", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-1-124, author = "Anonymous", title = "\acro{TUG}\,2014 announcement", journal = j-TUGboat, volume = "35", number = "1", pages = "124--124", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-1/tb109tug14.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "109", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-2-126, author = "Anonymous", title = "Conference sponsors, participants, program, and photos", journal = j-TUGboat, volume = "35", number = "2", pages = "126--129", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-2/tb110confinfo.pdf; https://www.tug.org/TUGboat/tb35-2/tb110photos.pdf; https://www.tug.org/TUGboat/tb35-2/tb110program.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Latchman:TB35-2-130, author = "David Latchman", title = "\acro{TUG} 2014 in {Portland}", journal = j-TUGboat, volume = "35", number = "2", pages = "130--134", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-2/tb110latchman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Kidder:TB35-2-134, author = "Tracy Kidder", title = "Visiting \acro{TUG} 2014", journal = j-TUGboat, volume = "35", number = "2", pages = "134--134", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-2/tb110latchman.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Sharpe:TB35-2-135, author = "Michael Sharpe", title = "Recent additions to {\TeX}'s font repertoire", journal = j-TUGboat, volume = "35", number = "2", pages = "135--138", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110sharpe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Hefferon:TB35-2-139, author = "Jim {Hefferon} and Lon Mitchell", title = "Experiences converting from {\PDF}-only to paper", journal = j-TUGboat, volume = "35", number = "2", pages = "139--141", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110heff.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Hogg:TB35-2-142, author = "Joseph Hogg", title = "{Texinfo} visits a garden", journal = j-TUGboat, volume = "35", number = "2", pages = "142--144", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110hogg.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Koch:TB35-2-145, author = "Richard Koch", title = "{Mac\TeX} design philosophy vs.\ {TeXShop} design philosophy", journal = j-TUGboat, volume = "35", number = "2", pages = "145--151", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110koch.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Maxwell:TB35-2-152, author = "Adam Maxwell", title = "{{\TeX} Live Utility}: {A} slightly-shiny {Mac} interface for {{\TeX} Live Manager} ({\tt tlmgr})", journal = j-TUGboat, volume = "35", number = "2", pages = "152--156", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110maxwell.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{McKenna:TB35-2-157, author = "Doug McKenna", title = "On tracing the {\tt trip} test with {{\tt JSBox}}", journal = j-TUGboat, volume = "35", number = "2", pages = "157--167", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/2014/slides/mckenna-literac.pdf; https://www.tug.org/members/TUGboat/tb35-2/tb110mckenna.pdf; https://www.tug.org/tug2014/slides/mckenna-JSBox.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Gilbey:TB35-2-168, author = "Julian Gilbey", title = "Creating (mathematical) jigsaw puzzles using {\TeX} and friends", journal = j-TUGboat, volume = "35", number = "2", pages = "168--172", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110gilbey.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Arora:TB35-2-173, author = "Pavneet Arora", title = "{\acro{SUTRA}}\Dash {A} workflow for documenting signals", journal = j-TUGboat, volume = "35", number = "2", pages = "173--178", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110arora.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Mertz:TB35-2-179, author = "Andrew Mertz and William Slough and Nancy {Van Cleave}", title = "Typesetting figures for computer science", journal = j-TUGboat, volume = "35", number = "2", pages = "179--191", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110mertz.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Allen:TB35-2-192, author = "David Allen", title = "Dynamic documents", journal = j-TUGboat, volume = "35", number = "2", pages = "192--194", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110allen.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Akhmadeeva:TB35-2-195, author = "Leyla Akhmadeeva and Boris Veytsman", title = "Typography and readability: {An} experiment with post-stroke patients", journal = j-TUGboat, volume = "35", number = "2", pages = "195--197", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110akhmadeeva.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Venkatesan:TB35-2-198, author = "S. K. Venkatesan and C. V. Rajagopal", title = "{\TeX} and copyediting", journal = j-TUGboat, volume = "35", number = "2", pages = "198--201", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110venkatesan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Veytsman:TB35-2-202, author = "Boris Veytsman", title = "An output routine for an illustrated book: {Making the {\sl FAO Statistical Yearbook}}", journal = j-TUGboat, volume = "35", number = "2", pages = "202--204", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://github.com/filippogheri/FAOSYBLaTeXpackage; https://www.tug.org/members/TUGboat/tb35-2/tb110veytsman.pdf; https://www.tug.org/TUGboat/tb35-2/tb110veytsman-code.dtx; https://www.tug.org/TUGboat/tb35-2/tb110veytsman-code.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Shikano:TB35-2-205, author = "Keiichiro Shikano", title = "{xml2tex}: {An} easy way to define {{\XML-to-\LaTeX}} converters", journal = j-TUGboat, volume = "35", number = "2", pages = "205--208", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110shikano.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Beezer:TB35-2-209, author = "Robert A. Beezer", title = "{MathBook \acro{XML}}", journal = j-TUGboat, volume = "35", number = "2", pages = "209--211", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110beezer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Hammond:TB35-2-212, author = "William Hammond", title = "Can {\LaTeX} profiles be rendered adequately with static {\CSS}?", journal = j-TUGboat, volume = "35", number = "2", pages = "212--218", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-2/tb110hammond.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Anonymous:TB35-2-219, author = "Anonymous", title = "{\acro{TUG} 2014 abstracts} ({Bazargan}, {Berry}, {Crossland}, {Cunning}, {de Souza}, {Doob}, {Farmer}, {McKenna}, {Mittelbach}, {Moore}, {Raies}, {Robertson}, {T{\'e}treault}, {Wetmore})", journal = j-TUGboat, volume = "35", number = "2", pages = "219--221", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-2/tb110abstracts.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Barnett:TB35-2-223, author = "Jeffrey Barnett", title = "Book review: {{\sl Fifty Typefaces That Changed The World}}, by {John Walters}", journal = j-TUGboat, volume = "35", number = "2", pages = "223--224", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-2/tb110reviews-walters.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Anonymous:TB35-2-225, author = "Anonymous", title = "\acro{TUG} 2015 election", journal = j-TUGboat, volume = "35", number = "2", pages = "225--225", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/TUGboat/tb35-2/tb110elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-2-226, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "35", number = "2", pages = "226--226", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Anonymous:TB35-2-227, author = "Anonymous", title = "\acro{TUG}\,2015 announcement", journal = j-TUGboat, volume = "35", number = "2", pages = "227--227", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-2-228, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "35", number = "2", pages = "228--228", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://tug.org/tug2014/; http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-2/tb110calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "110", journal-URL = "http://www.tug.org/TUGboat/", remark = "TUG 2014 Proceedings.", } @Article{Peter:TB35-3-230, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "35", number = "3", pages = "230", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111pres.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB35-3-231, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "35", number = "3", pages = "231--232", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111beet.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Knuth:TB35-3-232, author = "Donald Knuth", title = "A footnote about `{Oh}, oh, zero'", journal = j-TUGboat, volume = "35", number = "3", pages = "232--234", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111knut-zero.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111knut-zero.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-235, author = "Anonymous", title = "{Twenty Questions for Donald Knuth (on the occasion of the ePublication of {\slnine TAOCP\/})}", journal = j-TUGboat, volume = "35", number = "3", pages = "235--243", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111knut-20.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Bigelow:TB35-3-244, author = "Charles Bigelow", title = "A letter on the persistence of (e)books", journal = j-TUGboat, volume = "35", number = "3", pages = "244--244", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111bigelow.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111bigelow.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Thurnherr:TB35-3-245, author = "Thomas Thurnherr", title = "{\LaTeX} document class options", journal = j-TUGboat, volume = "35", number = "3", pages = "245--247", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111thurnherr.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB35-3-248, author = "Frank Mittelbach", title = "How to influence the position of float environments like figure and table in {\LaTeX}?", journal = j-TUGboat, volume = "35", number = "3", pages = "248--254", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111mitt-float.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB35-3-255, author = "Barbara Beeton", title = "Placing a full-width insert at the bottom of two columns", journal = j-TUGboat, volume = "35", number = "3", pages = "255--255", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111beet-banner.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Fischer:TB35-3-256, author = "Ulrike Fischer", title = "{\tt biblatex} variations", journal = j-TUGboat, volume = "35", number = "3", pages = "256--260", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111fischer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB35-3-261, author = "David Walden", title = "Every {\LaTeX} document brings new programming issues", journal = j-TUGboat, volume = "35", number = "3", pages = "261--268", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111walden.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB35-3-269, author = "Peter Wilson", title = "Glisterings: {Lining} up", journal = j-TUGboat, volume = "35", number = "3", pages = "269--273", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Neugebauer:TB35-3-274, author = "Gerd Neugebauer", title = "{\CTAN} goes multi-lingual: {Additional} language support for the Web portal", journal = j-TUGboat, volume = "35", number = "3", pages = "274--275", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111neugebauer.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111neugebauer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Solomykov:TB35-3-276, author = "Basil Solomykov", title = "{Obyknovennaya Novaya (Ordinary New Face) in \MF}", journal = j-TUGboat, volume = "35", number = "3", pages = "276--276", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111solomykov.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Haralambous:TB35-3-277, author = "Yannis Haralambous", title = "{A simple Arabic typesetting system for mixed Latin/Arabic documents:} \emph{\d{d}{\=a}d}", journal = j-TUGboat, volume = "35", number = "3", pages = "277--283", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111haralambous.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Tennent:TB35-3-284, author = "Bob Tennent", title = "Visual editing (in a specialized case): {\tt prerex}", journal = j-TUGboat, volume = "35", number = "3", pages = "284--286", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111tennent.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB35-3-287, author = "Frank Mittelbach and Will Robertson and {\LaTeX3} team", title = "{\texttt{l3build}}\Dash {A modern Lua test suite for {\TeX} programming}", journal = j-TUGboat, volume = "35", number = "3", pages = "287--293", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111mitt-l3build.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hoekwater:TB35-3-294, author = "Taco Hoekwater", title = "{MetaPost} path resolution isolated", journal = j-TUGboat, volume = "35", number = "3", pages = "294--296", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111hoekwater.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wermuth:TB35-3-297, author = "Udo Wermuth", title = "Typeset \acro{MMIX} programs with {\TeX}", journal = j-TUGboat, volume = "35", number = "3", pages = "297--308", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111wermuth.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Stender:TB35-3-309, author = "Daniel Stender", title = "{A Citation Style Language (\acro{CSL}) workshop}", journal = j-TUGboat, volume = "35", number = "3", pages = "309--314", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111stender.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB35-3-315, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "35", number = "3", pages = "315--316", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111chest.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Adams:TB35-3-317, author = "William Adams", title = "Book review: {{\sl Practical \LaTeX}, by George Gr{\"a}tzer}", journal = j-TUGboat, volume = "35", number = "3", pages = "317--317", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111reviews-gratzer.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111reviews-gratzer.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Andre:TB35-3-318, author = "Jacques Andr{\'e}", title = "Book review: {{\sl Apprendre {\`a} programmer en \TeX}, by Christian Tellechea}", journal = j-TUGboat, volume = "35", number = "3", pages = "318--318", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111reviews-tellechea.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111reviews-tellechea.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB35-3-319, author = "Michael Berry", title = "Book review: {{\sl The Imitation Game}, by Jim Ottaviani and Leland Purvis}", journal = j-TUGboat, volume = "35", number = "3", pages = "319--319", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111reviews-ottaviani.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111reviews-ottaviani.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Talbot:TB35-3-320, author = "Nicola Talbot", title = "Book review: {{\sl Let's Learn \LaTeX}, by S. Parthasarathy}", journal = j-TUGboat, volume = "35", number = "3", pages = "320--321", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111reviews-partha.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111reviews-partha.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-322, author = "Anonymous", title = "{{\sl Die \TeX nische Kom{\"o}die\/}: Contents of issues 2--3/2014}", journal = j-TUGboat, volume = "35", number = "3", pages = "322--322", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111komo.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-323, author = "Anonymous", title = "{{\it Les Cahiers {\slnine GUT\kern-.03em}enberg\/}}: {Contents} of issue 57 (2012)", journal = j-TUGboat, volume = "35", number = "3", pages = "323--323", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111cahi.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111cahi.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-230, author = "Anonymous", title = "{\TUB} editorial information", journal = j-TUGboat, volume = "35", number = "3", pages = "230--230", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111edit.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111devfund.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-323-2, author = "Anonymous", title = "{\TeX} {Development Fund} 2013 report", journal = j-TUGboat, volume = "35", number = "3", pages = "323--323", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111cahi.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-324, author = "Anonymous", title = "\acro{TUG} 2015 election", journal = j-TUGboat, volume = "35", number = "3", pages = "324--324", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb35-3/tb111consultants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-325, author = "Anonymous", title = "\acro{TUG} membership form", journal = j-TUGboat, volume = "35", number = "3", pages = "325--325", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/join.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-326, author = "Anonymous", title = "\acro{TUG} institutional members", journal = j-TUGboat, volume = "35", number = "3", pages = "326--326", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-326-2, author = "Anonymous", title = "{\TeX} consulting and production services", journal = j-TUGboat, volume = "35", number = "3", pages = "326--327", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-327, author = "Anonymous", title = "\acro{TUG}\,2015 announcement", journal = j-TUGboat, volume = "35", number = "3", pages = "327--327", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111consultants.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB35-3-328, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "35", number = "3", pages = "328--328", year = "2014", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Sat May 23 10:53:04 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb35-3/tb111calendar.pdf; https://www.tug.org/members/TUGboat/tb35-3/tb111calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "111", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-0, author = "Anonymous", title = "Complete issue {\bf 36}:1 as one {PDF} ({11.8MB})", journal = j-TUGboat, volume = "36", number = "1", pages = "1--73", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/titlepage.pdf; https://www.tug.org/members/TUGboat/tb36-1/tb112complete.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-c1, author = "Anonymous", title = "Front cover", journal = j-TUGboat, volume = "36", number = "1", pages = "c1--c1", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/cover1.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-c2, author = "Anonymous", title = "Inside front cover", journal = j-TUGboat, volume = "36", number = "1", pages = "c2--c2", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/cover2.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-1, author = "Anonymous", title = "Title page", journal = j-TUGboat, volume = "36", number = "1", pages = "1--1", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/titlepage.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-2, author = "Anonymous", title = "Editorial information", journal = j-TUGboat, volume = "36", number = "1", pages = "2--2", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112edit.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Peter:TB36-1-2, author = "Steve Peter", title = "Ab epistulis", journal = j-TUGboat, volume = "36", number = "1", pages = "2--2", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112pres.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB36-1-3, author = "Barbara Beeton", title = "Editorial comments", journal = j-TUGboat, volume = "36", number = "1", pages = "3--6", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112beet.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Beeton:TB36-1-7, author = "Barbara Beeton", title = "Hyphenation exception log", journal = j-TUGboat, volume = "36", number = "1", pages = "7--7", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112hyf.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Phinney:TB36-1-8, author = "Thomas Phinney", title = "What does a typical brief for a new typeface look like?", journal = j-TUGboat, volume = "36", number = "1", pages = "8--9", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112phinney.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Sharpe:TB36-1-10, author = "Michael Sharpe", title = "{Inconsolata} unified", journal = j-TUGboat, volume = "36", number = "1", pages = "10--10", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112sharpe.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB36-1-11, author = "Peter Wilson", title = "A \acro{TUG} Postcard or, The Trials of a Letterpress Printer", journal = j-TUGboat, volume = "36", number = "1", pages = "11--14", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112wilson.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Flynn:TB36-1-15, author = "Peter Flynn", title = "{Typographers' Inn}", journal = j-TUGboat, volume = "36", number = "1", pages = "15--16", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112inn.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{LPT:TB36-1-17, author = "{{\LaTeX} Project Team}", title = "{\LaTeX} news, issue 21, {May 2014}", journal = j-TUGboat, volume = "36", number = "1", pages = "17--18", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112ltnews.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wright:TB36-1-19, author = "Joseph Wright", title = "Beamer overlays beyond the {\tt\bs visible}", journal = j-TUGboat, volume = "36", number = "1", pages = "19--19", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112wright.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Wilson:TB36-1-20, author = "Peter Wilson", title = "Glisterings: Here or there; Parallel texts; Abort the compilation", journal = j-TUGboat, volume = "36", number = "1", pages = "20--24", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112glister.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Lupkowski:TB36-1-25, author = "Pawe{\l} {\L}upkowski", title = "Online \LaTeX{} editors and other resources", journal = j-TUGboat, volume = "36", number = "1", pages = "25--27", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112lupkowski.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB36-1-28, author = "Hans Hagen", title = "Exporting {\XML} and {ePub} from {\ConTeXt}", journal = j-TUGboat, volume = "36", number = "1", pages = "28--31", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112hagen-epub.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Mittelbach:TB36-1-32, author = "Frank Mittelbach", title = "The box--glue-penalty algebra of {\TeX} and its use of {\tt\bs prevdepth}", journal = j-TUGboat, volume = "36", number = "1", pages = "32--36", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112mitt.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Cereda:TB36-1-37, author = "Paulo Roberto Massa Cereda", title = "The bird and the lion: {\tt arara}", journal = j-TUGboat, volume = "36", number = "1", pages = "37--40", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112cereda.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Scarso:TB36-1-41, author = "Luigi Scarso", title = "The \acro{SWIGLIB} project", journal = j-TUGboat, volume = "36", number = "1", pages = "41--47", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112scarso.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Hagen:TB36-1-48, author = "Hans Hagen", title = "Still tokens: {Lua\TeX} scanners", journal = j-TUGboat, volume = "36", number = "1", pages = "48--54", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "https://www.tug.org/members/TUGboat/tb36-1/tb112hagen-scan.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB36-1-55, author = "Karl Berry", title = "The treasure chest", journal = j-TUGboat, volume = "36", number = "1", pages = "55--56", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112chest.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Walden:TB36-1-57, author = "David Walden", title = "Book review: {{\sl Algorithmic Barriers Falling: P\,=\,NP?}, by Donald E. Knuth and Edgar Daylight}", journal = j-TUGboat, volume = "36", number = "1", pages = "57--57", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112reviews-daylight.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Veytsman:TB36-1-58, author = "Boris Veytsman", title = "Book review: {{\sl History of the Linotype Company}, by Frank Romano}", journal = j-TUGboat, volume = "36", number = "1", pages = "58--59", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112reviews-romano.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-60, author = "Anonymous", title = "{Bacho{\TeX} 2014} proceedings", journal = j-TUGboat, volume = "36", number = "1", pages = "60--62", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112gust.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-63, author = "Anonymous", title = "{{\sl Die \TeX nische Kom{\"o}die\/}}: Contents of issues 4/2014--1/2015", journal = j-TUGboat, volume = "36", number = "1", pages = "63--63", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112komo.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Christiansen:TB36-1-64, author = "Kaja Christiansen and {\acro{TUG} Election committee}", title = "\acro{TUG} 2015 election", journal = j-TUGboat, volume = "36", number = "1", pages = "64--67", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112elec.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Berry:TB36-1-68, author = "Karl Berry", title = "\acro{TUG} financial statements for 2014", journal = j-TUGboat, volume = "36", number = "1", pages = "68--68", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112treas.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-69a, author = "Anonymous", title = "Institutional members", journal = j-TUGboat, volume = "36", number = "1", pages = "69--69", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/instmem.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-69b, author = "Anonymous", title = "{\TeX} consultants", journal = j-TUGboat, volume = "36", number = "1", pages = "69--70", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/consultants.html", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-71, author = "Anonymous", title = "\acro{TUG} 2015 announcement", journal = j-TUGboat, volume = "36", number = "1", pages = "71--71", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112tug15.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-72, author = "Anonymous", title = "Calendar", journal = j-TUGboat, volume = "36", number = "1", pages = "72--72", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/tb112calendar.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } @Article{Anonymous:TB36-1-c3, author = "Anonymous", title = "Contents ordered by difficulty", journal = j-TUGboat, volume = "36", number = "1", pages = "c3--c3", year = "2015", ISSN = "0896-3207", ISSN-L = "0896-3207", bibdate = "Wed May 27 08:57:28 MDT 2015", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", URL = "http://www.tug.org/TUGboat/tb36-1/cover3.pdf", acknowledgement = ack-bnb # " and " # ack-nhfb, issue = "112", journal-URL = "http://www.tug.org/TUGboat/", } biber-2.19/etc/tugboat.def000066400000000000000000004065031440117422400154370ustar00rootroot00000000000000% -*-tex-*- % The following macros are used in TUGboat tables of contents. % This file may be automatically extended by tugboat.awk. % It may be used by plain TeX, LaTeX, or AmSTeX. % [04-Jun-1999] \ifx\makeatletter\undefined \def\makeatletter{\catcode`\@=11\relax} \def\makeatother{\catcode`\@=12\relax} \fi \makeatletter \font\manual=manfnt %logo10 doesn't have what we need \hyphenchar\manual=-1 \chardef\bs=`\\ \newbox\T@stBox \newbox\TestBox \newcount\T@stCount \newcount\TestCount \newdimen\T@stDimen \newdimen\TestDimen \newif\ifT@stIf \newif\ifTestIf \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\AMS{American Mathematical Society} \def\AmS{{\the\textfont2 A}\kern-.1667em\lower.5ex\hbox {\the\textfont2 M}\kern-.125em{\the\textfont2 S}} \def\AMSTeX{\leavevmode\hbox{$\cal A\kern-.2em\lower.376ex \hbox{$\cal M$}\kern-.2em\cal S$-\TeX}} \let\AmSTeX=\AMSTeX \def\archiTeX{\lower.5ex\hbox{A}\kern-.18em rch\i\kern-.1em \TeX} \def\bull{\vrule height 1ex width .8ex depth -.2ex } % square bullet \def\cents{{\rm\raise.2ex\rlap{\kern.05em$\scriptstyle/$}c}} \def\comment#1\endcomment{} % AMS-TeX not loaded \def\BaSiX{{B\kern-.18em\lower.45ex\hbox{A}\kern-.15em S \kern-.4em\lower.45ex\hbox{I}\kern-.1em X}} \def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025emb}\kern-.08em\TeX}} \def\Dash{\d@sh{---}} \def\d@sh#1{\nobreak\thinspace#1\penalty0\thinspace} \def\dash{\d@sh{--}} \def\DVItoVDU{DVIto\kern-.12em VDU} \font\eightrm=cmr8 \def\JemTeX{J\kern-.15em {\it{em}}\kern-.1em\TeX} \def\JoT{{\sl The Joy of \TeX}} \def\JTeX{\leavevmode\hbox{\lower.5ex\hbox{J}\kern-.18em\TeX}} \def\La{{\rm L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em}} \def\latex{\LaTeX} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\MF{{\manual META}\-{\manual FONT}} \def\mtex{T\kern-.1667em\lower.5ex\hbox{\^E}\kern-.125emX} \def\MTH{$} \def\otr{{\sc otr}} \def\plain{{\tt plain}} \def\POBox{P.\thinspace O.~Box } \def\POBoxTUG{\POBox\unskip~9506, Providence, RI~02940} \def\Pas{Pascal} \def\PiCTeX{\PiC\kern-.11em\TeX} \def\PiC{P\kern-.12em\lower.5ex\hbox{I}\kern-.075emC} \def\PS{Post\-Script} \def\sb{_} \def\SC{Steering Committee} \def\SliTeX{{\rm S\kern-.06em{\smc l\kern-.035emi}\kern-.06em\TeX}} \let\sltt=\tt \let\smc=\sc \def\sp{^} \def\SP{{\tt\char"20 }} % "visible" space \def\tex{\TeX} \def\TeXMaG{\TeX M\kern-.1667em\lower.5ex\hbox{A}\kern-.2267emG} \def\TeXtures{\TestCount=\the\fam\TeX\kern-.1em$\fam\TestCount\scriptstyle TURES$} \def\Tib{\TestCount=\the\fam \leavevmode T\kern-.1667em $\fam\TestCount\scriptstyle I$b} \def\TUB{TUGboat} \ifx\tugstyloaded@\plaintubstyle \def\tubissue#1(#2){\TUB~#1, no.~#2} \else \def\tubissue#1#2{\TUB~#1, no.~#2} \fi \def\TUG{\TeX\ \UG} \def\UG{Users Group} \def\UNIX{{\sc unix}} \def\VAX{\leavevmode\hbox{V\kern-.12em A\kern-.1em X}} \def\VorTeX{V\kern-2.7pt\lower.5ex\hbox{O\kern-1.4pt R}\kern-2.6pt\TeX} \def\vrt{{\tt\char`\|}} \def\WEB{{\tt WEB}} % % Define \SMC to work with plain TeX, LaTeX, and AmSTeX. \ifx\small\undefined \ifx\ninerm\undefined \def\SMC{\tenrm} \else \def\SMC{\ninerm} \fi \else \def\SMC{\small} \fi % \ifx \ssf \undefined \let \ssf = \sf \fi \ifx \slMF \undefined \let \slMF = \MF \fi %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\BaSiX{{B\kern-.18em\lower.45ex\hbox{A}\kern-.15em S \kern-.4em\lower.45ex\hbox{I}\kern-.1em X}} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\otr{{\smc otr}} \def\postissno{1989 Conference Proceedings} \def\postissno{1991 TUG Conference Proceedings} \def\postissno{1992 Annual Meeting Proceedings} \def\postissno{1993 Annual Meeting Proceedings} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{\TeX90 Conference Proceedings} \def\otr{{\smc otr}} \def\LaTeXe{\LaTeX{}\kern.05em2$_{\textstyle\varepsilon}$} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} % \tensy is unknown in LaTeX-2e; this is a temporary workaround \ifx \undefined \tensy \font \tensy = cmsy10 \fi \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\CTAN{{\SMC CTAN}\spacefactor1000 } \def\HTML{{\SMC HTML}\spacefactor1000 } \def\MF{{\manual META}\-{\manual FONT}\spacefactor1000 } \def\MP{{\manual META}\-{\manual POST}\spacefactor1000 } \def\NTS{{\sc NTS}} \def\PDF{{\sc PDF}} \def\SGML{{\SMC SGML}\spacefactor1000 } \def\uktug{UK\,TUG} \def\XYMTeX{% X\kern-.25em\smash{\raise.50ex\hbox{$\Upsilon$}}\kern-.25em{M}\kern-.1em\TeX} \def\acro#1{{\sc #1}} \ifx \undefined \tenss \let \tenss = \sf \fi %======================================================================= % End of hand-generated list of definitions. Additional ones are % appended here by tugboat.awk; most need to be eliminated manually, % and the remainder moved before the === line above. \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\NTG{{\smc NTG}} \def\Xy{{\smc Xy}} \def\TeXLive{\TeX{}Live} \def\eTeX{e\TeX{}} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} % End of Volume 19 %======================================================================= % Start Volume 20 % Adapted from c.t.t posting by Donald Arseneau, 26 May 93. \def\nth#1{\TestCount=#1\relax \ifnum\TestCount <0 \multiply\TestCount by\m@ne \fi % subdue negatives \T@stCount=\TestCount \divide\T@stCount by 100 \multiply\T@stCount by 100 \advance\TestCount by-\T@stCount % n mod 100 \ifnum\TestCount >20 \T@stCount=\TestCount \divide\T@stCount by 10 \multiply\T@stCount by 10 \advance\TestCount by-\T@stCount % n mod 10 \fi \T@stCount=\the\fam\relax $\fam\T@stCount#1^{\fam\T@stCount \ifcase\TestCount th% 0th \or st% 1st \or nd% 2nd \or rd% 3rd \else th% nth \fi }$} %======================================================================= \makeatother \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} %======================================================================= \def\acro#1{{\small #1}} \def\CONTEXT% The \CONTEXT\ logo from the \CONTEXT\ sources {C% \kern-.0333emo% \kern-.0333emn% \kern-.0333em\-\TeX% \kern-.0333emt} \def\Java{\acro{JAVA}} \def\NetBibTeX{{\smc Net}\BibTeX} \def\ninesmc{\small\sc} \def\PreTeX{Pre\kern -0.11em\-\TeX} \def\TeXML{\TeX\-\acro{ML}} \def\WARMreader{{\small\texttt{WARM}}\texttt{reader}} \def\XML{\acro{XML}} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def \Abstract {{\rm[}Abstract\/{\rm]}} \def \FDNTeX {\acro{FDN}\TeX} \def \GeX {G\kern-.1667em\lower.5ex\hbox{E}\kern-.125emX} \def \mathsPIC {\ssf maths\acro{PIC}} \def \NTS {$\cal{N}$\lower.5ex\hbox{$\cal{T}$}$\cal{S}$} \def \PDF {\acro{PDF}} \def \TeXLive {{\bf\TeX{} Live}} \def \UPSILON {$\Upsilon$} \def \XML {\acro{XML}} \def \XyM {X\kern-.25em\smash{\raise.50ex\hbox{\UPSILON}}\kern-.25em{M}} \def \XyMTeX {\XyM\kern-.1em\TeX} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1993 Annual Meeting Proceedings} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{2002 Annual Meeting Proceedings} \def\AllTeX{(\La)\TeX} \def\THANH{H{\`a}n Th\^e\llap{\raise 0.5ex\hbox{\'{\relax}}} Th{\`a}nh} \def\ConTeXt{Con{\TeX}t} \def\Xypic{\Xy-pic} \def\LyX{L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\spacefactor1000} \def\mathsPIC{\ssf maths\acro{PIC}} \def\curve{{\bf C}\kern-.32ex\raise-.3ex\hbox{u}\kern-.2ex r\kern-.25ex{\bf V}\kern-.6ex\raise-.3ex\hbox{e}} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def \cs #1{{\tt \char`\\#1}} \def \eOmega{eOmega} \def \MacOSX {{\sc Mac OS X}} \def \MTeX{M\TeX} \def \noopsort #1{} \def \OMEGA {{\sc OMEGA}} \def \slBibTeX{{\sl B\kern-.05em{\sc i\kern-.025emb}\kern-.08em\TeX}} \def \Thanh {H{\`a}n Th\^e\llap{\raise0.5ex\hbox{\'{\relax}}} Th{\`a}nh} \def \warmreader {\WARMreader} \def \XeTeX{X\lower.5ex\hbox{E}\TeX} \ifx \manualsl \undefined \let \manualsl = \manual \fi \ifx \slc \undefined \let \slc = \sl \fi \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \def\postissno{} \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \font\slc = cmsl8 at 7pt \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \font\tensl = cmsl10 \font\slc = cmsl9 at 8pt \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \font\manualsl = logosl10 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \font\slc = cmsl8 at 7pt \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \font\tensl = cmsl10 \font\slc = cmsl9 at 8pt \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \font\manualsl = logosl10 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \font\slc = cmsl8 at 7pt \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \font\tensl = cmsl10 \font\slc = cmsl9 at 8pt \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \font\manualsl = logosl10 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \font\slc = cmsl8 at 7pt \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \font\tensl = cmsl10 \font\slc = cmsl9 at 8pt \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \font\manualsl = logosl10 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1989 Conference Proceedings} \def\otr{{\smc otr}} \def\postissno{1990 Annual Meeting Proceedings} \def\postissno{} \def\postissno{\TeX90 Conference Proceedings} \def\gaelmhodh#1{% \if a#1\'a\else\if A#1\'A% \else\if e#1\'e\else\if E#1\'E% \else\if i#1\'{\char16}\else\if I#1\'I% \else\if o#1\'o\else\if O#1\'O% \else\if u#1\'u\else\if U#1\'U% \else\if .#1/\else\.#1% \fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi} \def\postissno{{\TUG} Resource Directory} \def\CSTUG{{\tensy C\kern-.1emS\kern-.05em}TUG} \def\uktug{UK\,TUG} \def\postissno{1991 TUG Conference Proceedings} \def\Mc{\setbox0=\hbox{M}\leavevmode\hbox{M\/\vbox to \ht0{\hbox{c}\vfil}}} \def\postissno{1992 Annual Meeting Proceedings} \def\<#1>{$\langle\hbox{\rm#1}\rangle$} \def\LexiTeX{{\rm\ \unskip\hbox{L% \kern-.06em\hbox{\smc e}% \kern-.05em\hbox{\smc x}% \kern-.05em\lower.5ex\hbox{I}% \kern-.18em\TeX}}} \def\postissno{1993 Annual Meeting Proceedings} \def\NexTeX{N\kern-.2em\lower0.5ex\hbox{E}\kern-0.1emX\kern-0.2em\TeX} \def\postissno{1994 Annual Meeting Proceedings} \def\postissno{1995 Annual Meeting Proceedings} \def\postissno{1996 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1997 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1998 Annual Meeting Proceedings} \def\postissno{} \def\postissno{1999 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2000 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2001 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2002 Annual Meeting Proceedings} \def\postissno{} \def\postissno{2003 Annual Meeting Proceedings} \def\postissno{} \font\slc = cmsl8 at 7pt \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{Practical {\TeX} 2004 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \font\tensl = cmsl10 \font\slc = cmsl9 at 8pt \def\slBibTeX{{\tensl B{\slc IB}\TeX}} % cmcscsl10 not available as type1 \font\manualsl = logosl10 \def\slMF{{\manualsl META}\-{\manualsl FONT}\spacefactor1000 } \def\postissno{Practical {\TeX} 2005 Conference Proceedings} \font\manual=logosl10 at 9pt % font used for the METAFONT logo, etc. \def\postissno{} \def\postissno{2005 Annual Meeting Proceedings} \def\postissno{} \font\slnine = cmsl9 \def\postissno{TUG 2010 Conference Proceedings} \def\ringhalfrighti{'} \def\postissno{TUG 2011 Conference Proceedings} \font\slnine = cmsl9 \def\postissno{TUG 2010 Conference Proceedings} \def\ringhalfrighti{'} \def\postissno{TUG 2011 Conference Proceedings} %%% [27-Nov-2011]: new definitions for volumes 31--date \def \DVD {{\acro{DVD}}} \def \tug {{\acro{TUG}}} \def \TeXworks {{\TeX}works} biber-2.19/etc/tugtest.tex000066400000000000000000000002371440117422400155250ustar00rootroot00000000000000\documentclass{article} \usepackage{fontspec} \usepackage{biblatex} \addbibresource{tugboat.bib} \begin{document} \nocite{*} \printbibliography \end{document} biber-2.19/htdocs/000077500000000000000000000000001440117422400140135ustar00rootroot00000000000000biber-2.19/htdocs/biber.css000066400000000000000000000031701440117422400156110ustar00rootroot00000000000000body { margin: auto; width: 720px; background-color:#DBB692; background-image: url(castor.png); background-position: top center; background-repeat: no-repeat; font-family: verdana, helvetica, arial, sans-serif; font-size: 12pt; color: black; margin-top: 0px; padding-top: 310px; padding-bottom: 3em; } a { text-decoration:none; border-bottom: 1px dotted #E5E5E5; } a:link, a:visited { color: #A52A2A; } a:hover { text-decoration: none; border-bottom: 1px dotted transparent; } p, address { margin-bottom: 0em; margin-top: .5em; } address { margin-top: 2em; font-size: 8pt; } p#sflogo { margin-top: 2em; } td#contact { width: 430px; } div { width: 600px; } div.menu { width: 600px; background-color: #7B2900; font-size: 10pt; line-height: 2em; margin: 0px; padding: 0px; } div.menu p { margin: 0px; padding: 0px; margin-left: 20px; padding-top: 2px; padding-bottom: 1px; } div.menu a, div.menu a:link, div.menu a:visited { padding-right: 2em; text-decoration: none; font-weight: normal; color: #BFBFBF; border: 1px solid transparent; } div.menu a#current { border: 1px solid transparent; } div.menu a:hover { border: 1px solid #BFBFBF; } div.menu a:hover#current { border: 1px solid transparent; } pre { margin: 0px; padding: 0px; margin-top: 2em; font-size: 10pt; padding: .5em; border: 1px dashed #DBB692; background-color: #ffffff; line-height: 1em; width: 700px; } pre.small { font-size: 8pt } div.biber-output p a { color: black; text-decoration: none; } div.biber-output p a:hover { text-decoration: underline; } p#biber-reference { font-size: 8pt; text-align: right; } biber-2.19/htdocs/castor.png000066400000000000000000007155331440117422400160320ustar00rootroot00000000000000PNG  IHDRT$HsRGBbKGD pHYs  tIME K##AtEXtCommentCREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 75 Ǭ IDATxy$}uWw}3 )R"dV*$!%Y+rX嵤vm”HH s3}wu]wefcI#_D"H$D"H$D"H$D"H$D"H$D"H$D"H$D"H$D"H$D"H$D"H$D"H$ɛ%Iy$o㵢r;JkWPo_[ѐH$߶PQؕH$)v%D])v%D"H$RIP+H$D"bW"yrVTQH$[icH$D"y BicH$D"HؕH$D"HؕH$?OŮXA+U{0*uzV7:5yUg>~+7xe{D"bW]D"(lW_( ?{nn\""Jct Zk_~~ZW.0 {סztWyl^XB 4|U!h5wzl }lwp16cN1*CDZ0ӚD])v%[?nBO>Z?ۏ}Ci3toA{E7#M0x>EuT]]ƚ' =n_ tz}6jڟ$~%D])v%ɛDGߓ'w_#ocѭϿ">~Ğ]s<?Ѱ8d8 +*^G+}k p|N8R-{>5"reI.evep{x1۱HٯmQ:rsrCmF 8p!.ήp߱"9 ia6FCJo{EQ(<BaZ"D])v%_٥pFA{2j!Q ղI`.vx[tj/DO}מCWĮC(=|ڙ'z]!lGCB.,_gF-,RkvQDž%MC;ܵ4]8wo1t{a ozu 41Ѡ+> KhW^o5)9^ܾA8S{_ kfղFCe}|w84]ݡ=Iiŏ'ݐoD])v%_̈́+Q["W*I`N@en^'Ju0#l=R5t.wF(srAwQ 8]@q0D7pWFCCFpEJGOKm&a^lL{_{>jQT$FC(œ! < Y&Kgٸzɹy F7(=mxn0!) -/dlsP3t,M]35/aN`.b/, +$$PH,HؕbW"+_oQX~$\|F+=hE1,agAMR1bX_ 9qZǜBlk~?aE6 nGށV0|FnO~{(?j~ {~Pw vsѰ %&?bm[CĞKE؋1cMJ$]HHb>|aÆQ7u{߷4Ia:X3l^: !ON9I$zkX*]RJ$)v|+|Ńee_u^|VbG .E5-j ؍JŃbymmmaMϣ&iqDccN`4.D-a{asQ-]]&hb5C7;|?d e򻾏Ah"=53OW vIwW &T0imoW7P 8}OX<3ot0tALUA PU1 VU@+Q %̗TE%"az: KZa(@iX#,Mam">۫x23Eӏ h&ED"|B^Nv%77;0~CX).CZQ8pMn~j<{^{v*޽Agpz]jR<|. 6Q*&Νc bͧD]]DTH(ʥ`.zbAЫ6 "{M#\Ѿus }KDfP hG5MIT+ʄe:rX*JdJR>qZ,ʔ6N|ٟDrAM" $ $16a|WfQ-[LEWna'0gFCa?_~ ;`6+Mcb{~ZV(0uMJ>-ߠ<3nkSvcܻqb 9$1aM (9IG %mX3 >SgZMkXb, PtE6Tc ~1MkG#Bb$"X+ TΣ^h' /C᠏16AyV(aCZx̦E4orW!--P{]*k77p<-/zJ;0c*3ɟ(ah'ŮD"bW]M{/3R̽Djg>K!|#Sbr[:| viN~btO~xk\v]/qv]WIg:;78M)Qϳ|bYcF{.Sg^>ͫ-ɧ~E Z@bi);OR{vwc֗> {q/Sۓ$a@49e ?q771'HbChĜ# <^kn?;Y55KEqܵ;jZ$qD\UB8rn \#h5";mSI4胦W{xuŃB,w[d"yb{D7aqpQS14-8a`D K?AŃM"HJ$hr.z[kA ZMbwq/F?elct :zmkv`w Ű(:N˟gMcNLIQ#X31hLb/-cMϋqiD> p"NpE.uؚʶ0U0h: "uS,\(f}swaV}SW;H$o1A(m /{΂n{&1Z6n->jϿ1>et;&n{~~s8 :Ji77qpPDQݝ|I+e{B;-Q E0'qn_hLt} .?~r/j{oiėjJ ޯV,mz}Ͷ :-a(U4Ĝ'z GsbJ,z׊%qߪq(&ήC*Bx8NպM'Ċ{f(uU$?^:E6,qj6Z*̼,_V*3vCŒM!?Jxdh)~/ww|)j%[AJϮD&ʭ]]fpX#Opsk/p7w>EkN͑x.8]rJBV!1ֈ}=%EA^`4 Bh4 "Mk-&g,L<&Qbqbw$,Op"]RM3Ǝe@.rqa@8kB J;EjՊ%'\QO \BiM(W4$!EfYp5Űs =lM4T$+*3c$^#pWqWIޥU $AP %1M (™ wzK4b.v[M1 5Oj h\+&q /l [E^^^.0@+0blXbQm4ȗTD1TH;$Qfb{Ų$C${lB? w_ $ rjxN~\VSX!4 Mz􃈊QnLm#nE)ƞxFcڙc4_{ DVr+H"c*t^ByYFFXZ4_~[}w=(3oǽ{^otDDjMmK锓$FmA{WH6'"ģAlRT5$I§kZhr(FSC㱋MickЌj*~2EׅNaa(QbVT#smNn8I ;EF}e$a.L3!Z|3 1šuBW4⑓M5MENA $_6.^j{ jUtµwYyX|{H'WWI|?AstD#ۿ~_D"r+|c|ursݕ[YakIZ6 Kgq^Xx(KgfrYEJ'N3|\aICPb cV h~TU+ mn;zkR.沯92jkf>ObȧǞľO?fK"TB7܇uc{sJ%R+*'ɳ(ȦћM7$ T XB+ėEQ ˅^b$Ed k'.n랯%Q'Dxպ(KbPTe.Bz- ]ŧ0T ]Q!5Cg6.$W3hZh @:э=TdIZ"ɮ_"Im&]DT Q`[y@Ş$d9np jc{4*oݖCǩ:ON+YB"#joGO"'x'gUt=fSK 4Jd3">YX=-D yjZ" Iҥ6+D! ݴP $NW^u-E(R9:tC4!a P7W4eXIm |L$$6,b]?NwSۓa>.É) 񅻛xQ=8AW[bM]Z&xRJ$o !/'ɟb jg gڣ ̉)JNmaOCI9 , Gkx4'1B zkD붱zmLZB4vet̽D2=0ynfz:yV{/IY99bX@1,0k0tsjN6n\B):/fE!Z$<2~sTbUQ񛛢@1cX+WrYGVhKp 'X~DFž^'a^u纸+(,+R2pX[qV,Bh=ya'Gܹ;+~.}Hbx;wo 6VqF1)?Mm {{ l2W"6r+HQ2MrupՠA{sbJ8̋R9o!A? ᶚ*jQx4 6kz6D\aȹ"X5-T^Da>Az7%cA{-dI u"7w%vq_c EVa%#- I]QQlZ"|$":<-Pkx>!N0%i%rb^(ñwG#1DXX#=):/ढ़>ApZG<8X_zk$cx:˂D]䭈QsOnݛGtG ј?*I0^E(["yy,x{ֱӹKz*&1_%*'"tQTcyJ95/t"ʲ1cx[i9EYL>RC+}Q{QY%p9좤Xzߖbj <%.W0RNA& #B3\e6,L1,ae@j"a#U1ui #+5"Ei𒘨'G {3 B> :<8KeHDxX, ZI8IP"8lQ'x.YEUc xݏ^v[B +8v8mqaEQJJNQ:;#~>53{o^V}U˸eSTO&OR??RJ$ʂP1H$?Nv^|6 {Ӧ|46DvmZ0}$<3o|G\^Qgx"TrMdXZ8}3fEc]SkXœYث Cb9o#S$ND*jbDk"δbI3B+W %iyx" #PMM+_ 7-ripÛWKeʧ!hn611#ƞx[\ ji9#myN+Ot^skcvz2#|ȱ;"u:mu.߸ɦ SسY갿lE E]kLs{&$9ٕ][lJ宯ߩ{.ݼBa,FcoksC;CJ^xFa I,aBO/v;(ijc4ovmv0Ykz6ƮXfZ$NP4)R1ZϛшCEYN8&D bʭ3kM+,.h8b!41&ҳp8 L|VEk1>53>ֶ~jAZFyWbқ.8ҘdY^]^hȦqr5䧿;Bw}ENx%ɛ̶nE/!$ 9BLEwu8qז8B:S4=O8(?D}{CQSahŚۏV(mm^,V,NbU%o{¾CBzgwgI, \ !#}!WK-#yۚ' I i;ߏdxHXs1"bZ'fdy5n*ăO-4մP bXcNLyMuLP즓U=(bDB\"{شP89aRўV(GAS #@S@:-?'dHu HOFgd4DEpav\Ĩ y^Ø&T7Ыu!bVQi~X/DS_R9klD]X :/|p80-bon#azE}&1-'4AQ҅&Xs;[5=Kб }Ĩ.\]_OqVs_?A榨"UtR'Ųi3@DC1EwI|>99B 2}ye91WƞV,QA. q ox {Q̠I,cu#b͒8Xrkq oVE Zղʵtkui\X(Lb=H|"I(n3DY(cA*z],y^sZIPdlҜI'нܗ\hg񾧰OR=az#nSĜ~k{ax$ɱ8Hv!tKt%Z^X+5~3?VTZw?IO_w+D"F1H$Ts$I(cx+X3*ܞHD,DI$ɷ_zNfآj&Z=HmvXK-aȊt+IQkkJQpr>lEH4kpUoȖUMh4$E.m.&JrWj"s h4Qzm\^m^HP{pKߛz"a ~=&r%H,&ىJvٯqvD ]cz/WQE Y#i{Y$ľ/Fc*-:敽R%f yGͽ)v[ά ~ssr׈ ]]rD&"aA)p ޖȆVājht5='byTm* ڻ ]ĚBQ:vJxx+isVŔhU .(ha+2nI|ɇs! L^C*(t$F}$h? ,UC䪢"ְ%aR(WjyC zeDHbSOy%q칹?6#|YjDrAR8p4R&s+@4:":,=$;m6 'c\LTajZ 4 EJۛ'c|EU74 qTK ;" %acEB{hZ>6VݸD'Ě]6U\RA1=1|sbj"7k!ʢ+\%+U~/OVvXMnZq P-Nvu7NIjAHUEӳĞ99Cܦcb- *2& D(p=;KBhj."R9hR*KD.h"@+ ;X]8Bx&}(8q!({Iٴ5f kv[XsEFv.y94sj7,;}|TU]Lϊ NpLfцMʤa-r-9 i8lSfX  0``z+rϷwwY @w16*ו{=F5Q=aۇm4ח4|(\QaXȝ:8r6hy"\(bi 3 Cg6¡2O}#p-c{I~&N2x/ Ty^+WJgtvU?ҫWG~=iZ=MyMPR~^vHv6Y̘oZ#ځPE:ZOߣ=-2CiYTk2-:-'P.5|U EրV;xM{$brb:+5PJ;f\ aX BMFܰךt&t^H IDATgr4ti;N7~;U@N%GCM a[,°mS!Mp-;(2KK=rNI sX$:^jv~JJkѐʊ4%,9i mv~rХcۺn4UQ 4T\]g3ywsvtm91<6O}\!(L1bXo<?wx3pdvv:?'ʥ|Y3\r*ן2 ݷ@!AYbt2>SB߾AO3$ ξZzŸi 9.VA$vh`Ȼĕ "CNxpLZAbpM".h2|{T&МуW;y%Ǔc&~`yxTysEL5nkc.fLau›NH|KvNuGO'Vܬ &;$DUATeVc@TKu-ꂙM%Oi0N"M^8RTy B~or)w-,AXOghGJ2.Hюڐ[Ĩ6Ӆ;zFN"~QZ|MGǵh\#TTB1\Kmk 9RrN0[v0SN YBrRFx۰l z(;3KCVx0l`6.eQ~;i4~EMAX$uTɜLA' CSNq,M1}-ehӜE1mP|AˆsP<3¶)F%)PfQ,*:l&Z6VKQj F=pg`p%avXc8CO?/ZiJ.JqͦvBOߺd.ܙ9O2cc{o_#ygtxUrb\[Wdg1^AZ5Nd},*af NT,EpnD>cx,?@ UG}$"]\ r.;JJX\Tki1qw)뼩53V;IX0^K\ 1B5Z{;=p7}.6(&Jy9`9PW;´ ~r ¯Ӗ=Σ }"ԃmFiJxh.<\tS[,F6+VP56gfc4Gq|AT1qŎݲtj9P*b˚ ]'9ba#[^}Y*Ε\*W)vU?-{r|^yo(*gGF`8W.0ƤFg«ڍ^|ğ%2]8&-Îuk hM0zL`" JV$ u,'9{,SUZAb*I(\#d.N7u=@ahaT5]Kh֩7'Qရؠ <|O ]6aрpZ}A* <@͹Z߾A?pV%F9fL8Lf.5Vqѭ0TL\fF9 ]"m"B5(7+Vé!uC9ouju`Yn^%hs63} EܙYςh NEG)+My@#K(҄k]rā'|8e9+UfY2qv^QܽBFpB/ zP4g,;hc|&K%k^*>qo~¶1ri[;ShDsn3)|]ur\clMt3pg1⍻vTgTT7WI#\t'dLJtI==`WIgpƹR *;at,%"; . !*g%KPd9ml2)%m=58Y(&L 8Wd9SΝw/0W}d xi;CycKK[rur}ӬUgI?ﴑuH)C^Zpgf ͝E99T1,3$-B{cbϴ]#@k\;76f4[4 ? qyʽn@Ẇ} j^)F(tEӱw3sש7!,p+4D?BGܝ}[jDo}i8SYxT=>;hct* 0dBVY3=:4AMfe5GCgTb ]2aU밣:BiXN,o#QXָd}YG;˞|gCv? 9qr.;r4dc+zCQ};9k@Z{;P$1j>JC$ `,2uҫpbs9x?g?-Wa-Wjxczo~B0N'Fs=XIJ%ʑV&(]ǃ9vHkݧك6u`uA,\?D;6Q 12]P9}~:'KPL҇ UrRT!4jPA#51$ 8a'k߸ ;/c\6g 힦 `;S muzZd XI,B. r~5RXsD 790b0,uȥփsd3#Dxca nk{JngB;FHx Knoo@m-λmoQqsf@k,)%`U"\gJA1(|AQ3M،s8Fߎw z/|x..uF\|GP*WUr Ʊ#tuyOR p0q*U:Z=vc4z@2Ằ,R|#eS#0)Тr'BE6`xRBržy-3!98&h@[ھ{L .mb;sԬ"MITA&2D#C_?ՃIf)),0d/.S.!p[,6\v=L )#ڊ4BM:E37v&_IL << ձ|R9ehWu9ɔ6Mn"k ^koۓ~quFd,\l mBmΐRdb>[9m,%qqB r;kԌ{ˡM:\f-,Q^ۥi؊,Q$1~]|YSX{?Yp+WUr}s,X;tS$H7ݤmˆ?9:*Y]"/!M\B(YLs+\( \o:ڀKPJDڭX`E7h4ͻ?*iJGO"rwK,hjk֪piJ\aSv=3dW}v8e@3.fN9i(FwP8е>e>}[ߌɟw9;h32,3Ԏj&[3w!]v  *41eg'uV"6 J,\nS]à5H-e.D>G1EI|wuڜo5 Ѣx6h*< Zl"&MZfU~x؍]mͳO)JLEnvЦ3χl'xDp #J_# aů q҄*cJ擒 툚mWQ,6  N9葐׮ ;OYojScZ|x&E TJ;ǔt"ic (S޳9i<XÂXPɘ::R9s7pYg7ל=_2ﬢXHB^Ǎ=,f<u/R\*nZwOkV&$Wlҳ<\fP]֮TQGtj]d!5O\ha3ǁՑ95:^I>pju:cxGarAQIX.>qC/Xzij;'aURܚvhU&}9~ vwlKRYقՠr*(0B2~@ժ"MlSR-xs $pdR3eDZ9"7V_guJ((D(rf2W7 rЧ&ZNNH.&+1r-Z8V02e_$CkD6ЎiU"fq{4J 6-PN,ݮfS P( kk),u ?D;55ĉ"Mxڑ3P7@(<ܱ8V'd&vx~xdsS>9X`G5X!ּGXpgнռag?A鍏zYNPT|Y]7L"E wfv㎨"[;..cp-osOl!Pul>|SG*?1UrIV-_f:?2 R]BX(Esާ,ÐsF`9G | _]kr.wn!SD5I<$ RA@YflŵYڕd 2ئزIh ׅ퇓 P~eb]_r_f0SHbX}3Zs,|}O~@?g9iEgk2XZOr\*/AFEL r O ﴑwh*="e9y[mBSysx>1ot鵣 UPrQ=TL7a2Ih%%Jt "%Pq^*dL2hC9 8IXܫ W6V74%%#`4M`ytg;0ZNCoՈFsf%}} @ѤI6 IiJq橈SoR"khC43K /]Q#pN ~w(ݛ)l!=PL Xh1\ SW/*dAF4>xL03h}kg R}mM,CSQV2mgbVmp<#3ɡcq"?5cEW+H"X:w[# Ē6R)5-WU:K.wGnAD5D77i"D.*g< ^}Ecwc߅p}? |v.dʦ,[3HſM@8Yvi`U"XA<;56WteB8EY; D56q3Ȼ7tϨɪOJ[x'B6 (?l!nڕ*Ʒo𜞲WyB=T,<#F/_x .{8nknBo " )Py9+8UFaxf(/(K;j[@q[H;|d;L{!1">ug;p@>GWȿ],%(%~{֔9f&GCW›_MM6?4%f!Nuԧ :]hBN&u߅F0{ 5Dr4s8Soc? eT:/X?L~lѯUrb\ 9yY] ԛpWQ8&u},?(NKxSbt2&ڠn҇ 25Se롫TK,#q&Gat. @  3Y*G\V"n_8 ;qq9*ݡ!ׁ P{Q-`"jD_aCx 7x zrřqMBnēxl߿ж1_?}K\*W)vVv?YgI|ԛʜ]"1r{w`uoIxʩ{0*~<\lir8Ӑ>6[pg(+qv 0_J8TPC]q&V-a]49RijU}>j[$l'U:O1$h"VtJSx&ch`,#;/V'J;fvFB\㼊4E٧ d>;3˃eJJx ]Ss*g1ACԈBAjSb!]*K'j牭0"Ϧl6rv,&rxVQ~?4;S- ^GrL 1zM,$H~Z e+gÝHGOp  LpQifC ^z.x7>Ͱɇjkߙ ONF= qW!},7q4=NZkBbg]?kQkLh|>3U:*WGP+_۲gSؼsz Nw[wl!C^BgkaW"S]$[{r <2cF؂&`']To~XVg(xH2M!x3d.X>A^g9֨1mЇUQphk׀ g]ʗN"[;yvJ~31}MTgHw6(;j[X*5\\g7"-x31^GnM^"Ndk*K@䠫ns3 aYĝQSEI7Bx^AW+x"Mٵc"aHyc}ZWqÙN`4~K2(#Pj"1sItA;,#K5_sK'qd6J^}w!GCxs Tgzt-NcZۼAV9RiJn,k?K+L rVT?gĩmt#q?ZCإֳi BLe487se |ɢ s^y[ Z{;4@83K9`}⠲ EB,f850ZGyTΜ''[BَD3lh0NQb4.i3(3㮪,E wKG7=<Ι B ~66Wy'ۛ̅ƾ K_:A>,+ÏFyNi |V ?ѭki[rb w?4T3+2~ٽ:UU< o [on;XZ)7*rwT::*7*n̅ O q%.yAa_~/ *UWAX3o}7m>IS~+z/= qox~3=8&ƫUʋ݂_\eCD[jG+hẌ]2dzE`.-=TJeXiYv2G>O z&lA>GlˆJ*3>bv-U>#*K9o[=ی0h Q $|e{;:`Q$z]}K&}z?АĐ)zEyV"!r*0bCnA?E2*j ,dq @NNXGi{[Wx 1ct2KqBS ,v[͆haSFMyI@F"Wk͔ H F qMp{mЂE`9 wfkDcdpM.Ǒlo6|g!.wG5c_*;};*r\-׿ݚvH;8$X:|V_B}cz =)AN>nrl!\CW7s ]b]7p(|P|;;bPX#D s a*iȒSҴ`]L9,NJSvxZS'l22!P$.;.ِ>IH67lN9amrG$z#fД8씅RmJ~ZV5`gV"d!  R yCPD&ӘD%}5Le"'ujjzM f(Bϣl!>;$u0NX(23(/"8v31q߻1V ggktpQy3xaS oa Ne):19֯irNH'" _yPJ%%ov .ufa+U,GPu8:>[p?Ɠx/[r*W)vU?~Iާ~_krp:yHvPw̟8EBHS\C>Ջ*0lę,{_}²,6-9#w_G1" Q9w䰏~qv wfrۿoP={H=YÛ]`tI;ɸ rx_)b8Nl8<:.\ rE찢Mdm>GNSr<+ q8cIaq+:Sj$(-|z "nf[W!ڂ7 .TL Al\GgP`AAv[UA,,~<U Hdo&dʡ!PHw6[_]!QĴGHnP}t|wqe TlPm80D1if(4kXwb )PyFU ASo7k-D= wfT}ҝM],Ax^,At#wb+4eo> 0FP3h'o~rGgno;I›q`kԴbܓFY(MLՅxHL,/894؅D@b5RRۚ2)afmr-"k@1zvTTN&ѐÆi<&k(1O;vbA]0o- i /BX6FW_Cdxo⻫|?OюjQ`4J}N J[vj9Sm P4®54E5Kjtj!uP9PHՈ*TCBР. `pfR zĊ?@o[PYK‘f va z}@* 6_j v"SU{&ѵxrgfh8,U$Ph$X sc㿍/gcCh]p[~i .Y9SճpuѸF$W8r-?konͲ|8I[RxL:r&l(TAlRބԄŎ&GC;6+RbΚ0kQfg]M_Z[~W /|s+U$;(ТGv6(Ayu5`n&R\֤!'Q)!1ݙYfE7n^Ah~0y zQ.=:/$9Sda{fms|xxds nsY5QJEJ%qz{CTlXPB IDAT@tTS&Ԋi{{h.I *)!c&1ΆJK8(Ex:ug%i+yx+/c776LRQsmo4N~.'Q?R\D7*Wd{](:[/`Ҁ)gp-{Eb ߆"~Inbm`1pCSszz=Ff^_sm87;A!}v4$F4LW - !DUT(q3!}2R+$>040T6r {U=7i҂:\T`ii 5ɰZ,퉣(-L^9 h`жiI7d9#M&.h?Mi >uzbLrE7V9#pnpF8.c,.ZVc~-S,%XaK/&oq y 6^Et!5b{Pfܬs0iu *fmzG otE}&Ksߦ!2}縈 h4Hhkpm =r̿z؍3Y> /uI܏ʯ-k[e\*nuH~=K^/5iℰvm&&!w9?E}dm%Сn`S48Ӡ1EHB/p* $ZG1`;pg@e :|ታM{\ۜlaz {t97np-Xej>Jug($JCMRnKw6M?'Z9DB1&~r^,AyL"3.\7) t{2U1zע7A!y趮 Tۜ!'s%.rZEte.VNh4Gy3!;^BgevNBB2leka4H&IbzgSvOa#2ywͰ*R'R({ jId"M`@ͭ5Q.m,!e? DŽcuBB16p 3a/ʶ,A%RXdkInnkn1юNgMxHb[%$NjkHNOr&rvObzc$ j K As-Bvw1^EvXۚCvKT*)*,%BC\]#;<N`̰Ep[pj (Ѭqt*)f^ 󁯝W;jLjnfĊ@78)3lf\Q9쓋]XtyJ *%1 VX Nh*ϐƭ3r>8CNKKL,AQԃ*$;x?wf*+ Y2gW ژy;`هȰl.d ;!|j+3Җi"ZG7{ysyT$HbGc[nv{61=1q 0v{xximilc06!ڥRj}^5s~7aDj|wɼ~e{̑v,S0_o0d!B,ܕ jEwi !̾ݰM' ZjI뀍wQմeSMU\t7G"mtd:S׌#ƌfe".X$ejz 0M:꽍9LGzey^\ 1c Ϟ~6X&_w}Wͽ.tMt4aK?~'? Hv.#OD6H/vuRMRr.~wqvce)ylIbd j vtJﷳ61{?`GENkKD4h@QeٲY U2 $`~śe0 Jk*d0žπ!rj:#T 'JAm+s6i`[(4Ḥ-<61QǬLka[3 ہ#G\"݂!L8+HZ>8B䍐I o7#i d><:s 3<ټc^)#quJ3md '0P 4;],? :y,k a;NW?]]kMYĻ[4I?Y h:6yrY j UKRW/adϾ́[ ?~[ǧtMהٝ掠ϧ1ܥUXF O>#wgf( fk?z!<E:@pf׮R$Y}LGшہUA63C)Jw83i-0;j>FW."m?r\J,{C 9ApíE0W8=;oAUtRp< Xd6vХ3[͠ߥzZG[WhcG_6 ]ϒX/\jCC1}sImyKkp]Jf! ,4씦HM ˔:WY0M$=6nifO1qis!H*ct58ѥs* aYl  Q铵تTYgh?'>޹nt K@.1^<+<ۿ!s\ۺÇ1`vStoz$Q:~ITJsb&Zq6-<٨`GE.ڸ=dYF#XAe&2 )Sfy7]*%$Sǜ ga7VʛU5U")G=Pk@6­ njԆDe{&.Fm=wӭqD tMNҚ{]yavy+xǭ8C` UпcզnqZzHTL%¶ @1 BȞ-ڼ,IsVoyYC"jR1v:8p+ULk Zok )'ו28lLop )=p $Wjc$s& i+,eLqpe#S fbX%If@p,{\fU%Ԓjʰ}cۼI Ӳ$F|`i"(G]\]o?rY~ hwiߧ2QZZȳ %3h]=3 gn2A'h:V\ MTc`Bb5R,(&MƲJm߱IR{{+3$D7gJ#,MjEÞTG/meq@Z?nsKYJq*gbNb/Lfu p?|G>pNtMt}/C\=P,!NXTm*#Iz%sz}uV,  "A48f6f25>,c) Wjpf „3K2 W`;Y-+%ذ]aSd)Óݘ闑8_)Lt'\d!\͓DiwGEeX̓p$-2Y*KPWrFCd.Rrdf%5 O{deXV:&J G_HF}$D1I>1pðBdX|ZǭfΨ 5̳v9/xgH;-xkGHshbs+_"#M*ʬ4Ir=ё~¶Pll(~gaUh񊓗qk->Wk(?Ї3,СOkk`w^BӠC9ڤsHvKQx= 8ݚ(0$A6*OzRf8>*vQ!gFu֔ǢVH kfnm|L+n@FY+(?rKUW˂vv}AN=u.]Pp+ Byj3ve2mU}&Ŋ55`b bg P,lICI]4i=i"& EECeDkZש f V9_/gӉҀ *nrɦ+C8k t/CGy4Xl#pv."ܸHP%,wi`e풒 ,*YPw9b(VLF!$6d ۙPuOclsrRO0㛨"1Cp=d}pH3)$MaV9uzb_ݾkuNT&a[QD QDcR3 iV"fVpG|l c\_Q-߀a~g~ ufW{uk`w^b>}p;D3ebd~ Ju 823) ~Aj/g`y%~2h3`6KeRL#Х, CE6{hooo#f] [6䰏LqWԬA!ڤVn̫6ecf$gdz|KD!}dWӘ:agaIf5[&W-VZ'^Gc(T7lAf?S@,XZXp=j궑`^ KT`,a6 m~g8B>Y S$68%s2WʔYXt0hjsC}NO`n񽮥$m'v)IH!ȆnUg8bY`RȆ}fv@V5k&C\ě] a"TD(Y*E::Hk6Owrg+z í͐D)M`,~Ǜe<&fTG0ymP)0Bu@I 64 Ħ phqTf/8Z]AVIDqe8Kls C2y>m6#'Ƞu2-^|Is!bF{}!5Rc~TԡkUBWCXa;*S̛%;:7i 6$ϊm4LV63Bnϯ2 ݵi&:)Ghcn1yע]|aU0ĆݘGtm~ ǿ~/]k[zg*7w륻ӳ0]vi_]ꇈKc%к+1"}ׅ>$p\X[28\kj*)Cd+0=Vm&1c2"V*y(aB9"yAA*>O>ek-v}u(;+"8tzq}@gvV}iCrpn aRFl[l"0 R,52! K<a]bpU!D6!ɱtޤ |ҋJhg O컷vXU*9GyQ.@Ugj!OqD *+k6'57,iL`eChDet/I*4{IA>ŅlЧlz"kpHhjvt"Mp6zy!i7a Gk;*6nVP!%,tې!ǞB t!\_Cb;GCvېHEe@g7'ut' xȓ5$2=.G܇,reG乚vo.zUpM;-{DB.J2Ӥs m7fO  O]=w8H;M޸Bo/`h3Dpf@J ={vA,Ui $K,1, :vC6Uuw9Ѯ™[BGVԱw.Z;˗Wpܞ> R12{>m ϟ1JNM&XGt}o3 BI8Bѥ62/rc'jl $_*2!um]VրXQFTE+Y'!v?xlYF2W7_BIzQa"z i؝oCP{K, iJZ]Pn6qB'Fp@ǖW֏EjT 4 bf25BWYR :W4t9 f.HBkXNik3j D[W&agV!c0p[nC&?mEp+0<*VSx_{I QL{6z9D{gW^gtMNwj} 29j[(Y ( e  (#BHI\B&ɘޝp9}D6H2#֎P@!"ߥH.a| ^xWpV;^ TFU'jϜ:T™_B:1{}viׁUo o՞1=4Ad%!`vM5Ƥg\fӔ__֨ a(b0MhJM4w57,ber֩"iBxhJmJfaܥUбETP0gU*dHSD\vK^؅,UDgvT\hPAi`N4J.b-ɼiʉ%68ꔅ<\ZcLyn6RτLhag;rg@m/Z7V#9 C"'[bY)7Uͬ0 0k8.G눸}F_Y`u݇AyFxd$DLtMNnmh91٘ql=ԥ,WҬ!T!`LnB#UmkAqigafBd-*WYiCY% ghD$&9ko^['a.qpaivk?*dosH{X~% 2^3yp`:@Cf8}@ۦŲҹwyiOWmӵRN٪+:q&) p{f`[jeS͎K/{_J$erUAؾLq*_تϲ:MqM0>0F RL)#V6)@Tlq.3e({wkN02JMT "R`5҅J.ڹy`P*M-b$ 67!T ARsOE%iZT\kL&/*4 eLzֱ868I*Ϫ֋ Tf,mE fA.sgpZ!P'Sp=jS`4h;6Ѱp{>M$t2:/|2c)UkD>1 w <6$Fb`1{ÿzu{6L__RP隮)؝:x=@l{R"Ȫ)x?$VϪr`aZ@NTTy:å$ 7+](6O"dvȓ}~YzQ>y#9 +ȓ:4Gwހ|2"#df]k*\-//iU €(W eGb]^E 7~) ZAxY1!9a* `,w ]@XqLq^18Cz8. oL5]S;]/sͧ(ƑCݱc{5VQt8)X3R0+ ޶Ҙ~ iE-U&Xb, :߸!.aYpW{Q|3s`iYy׾VO Zg?p.,0؜1*J'd"5IFYSd~ev~=gs1 x YX6NzL ^,hk>4 gU 4X+OA2$(iZMLubycXjv`)0=DB'Y2Xr?36CwFkW欳%BZ"!1nsE1r Kn\5gUF#N sV򖪍Ux-^R؜ɔA3`7S&5 ϟ }SV.&Z6Kdjf$Kd j{Y°= $WHtЧ61u 58"ͫj`4 v+!wQTӚY*RUtB50vfPu ,"&O$m$Tnf_Ae^#VUu* u ŧt ZlݴFI)l]2T^jssy?8~o*< ϦO隮S0]nuϴ}ma3nu#J0TȤ+],x-ו1lا *j z 1SZҹw̞mGKV 3Waըu#>ۊmC\oN@_oHK-3"u>KL[G$ZvcVNxi`&HT.6 $}GNp=RCi"ڠ`Dž]}6,[i)MXugQ獑a66D=V,Is8ĪTtƪֱޟY*| G t o}7~oӭ}kx۸wJuyvSVwkNKc["Z[Acb#(V/Qr_Q0=E2(&Ze!Q:q#q0|٠wqvövHZECc2 zN.v!i ?[aY|frۚ!`M-}IJxwlH좰m@ef2Hɚʹ+A5ˑu.94'/ u_v[: '1K4k fD}8kf4%V1MfEerK`r)zShĉ@MdBL~ ;X60+5nBp&k!i#ޤs>+_M3H;MX _xp+&>HSdhU'a*AHDN ]W=Q>3A縤VMpVAvaTHwX3e2dG_tKb'=q_T{0cm.Rcs*(}!O tώ~w/qo gCxáE<~u?~⭬OtMNKq"jT"Q-QʬsLb&4i/s8 sk:E38,- Gg' (ɞV}>~#yVkRUDo_wa7̯2.*7߆<!i \ؿ Hy~0JL ceg5aшtU밮0AH0DH$*UfL\fdZ '=ed>kdBH˂MbcX6=1n 6H2UɁːj(0W%+ |,RErGczN;MbҔ5;4~β9i5Bg~G+8$%&YJj¶T+.2  3l>Cax>B>@Y\%X@XU*PeG;ǬUֿ*UY̘@0¢n8Ȇ!hRԐ@1=N[0lУZlgPDXxnjr!>5_Q2L‚LRH /gqhco3 |*57܊Vacxǥ~WxϔwNtMt_n9Zla@8^n[d^ls nq+Qg*T3oefLV5.`f7渝L8zO=J3 u+‹h{jBg樺giT\VPaY$ (vKMLh&˰XU.\i,>6 '1_0"3B"֚di%l,#J( ӄ4b27T|~mUVTQ8 +@B L l#6Xဒ @r1(϶)8ⶴxwXR:k9F I|; dT౽>e3IHM6H*7tC*a*r%r)v;K]ת`3f4QP= u9.M(D:`I벦79㉎6Fol4 m mS02 !oNo40&}JPikN~1L\}~G1 j֗+x&k_)N̼͐qLe62nɟ iܧWܥջCo k`wCGo?n/Z=僿7ͧx T*#ӟs8B;Af HM>2g4cA~ YC$T=nH'ix%ŌfSKHp@e Aϳ3@@A^St@gI1/F MD=E: Ec v,1uyY RphC7K=.Lyi3㬣W²<8Bﰤ|Md뵑v$ˈvD16vmO2RWp\5&VN]C0*d>+O3m2($"Ƶκ*ZǗqY.g(rz5T?΀ր59e)2*|].c8vCT_7CV!ߥv9! izS2( ,pdI4n  CIU\7> 8o?կu?~. \bRDP_'//Swk v1-~!\Xx@٢fN% <*5;ꡦ@E) SFwi#u Taz{%Vvf9@ču1ųHdTK{!ldGxWH=W0<Gvڗ֎8ƆPesрf D"`@*j.50v}72Ncl׵mXŒ&,DWag9Ae<6,qd5 "M1Y$]UǝYÚ͕ʰJ'xݝozZu(kտ> ?s {i1/8}LtMt}'~I]?gX+,U)XLD] 8J4Pxۆ!V!UD;8)9m#ބ7]\&LsޡV$3(Z=?ZP}G ,@7IQ} 3,G- Jias--`RJ! EiQ :c=Ck\oΆ]^-wC!o_UoRm ېel55 x$&Ba~ %0Afl3Y3Ѣ&wg!Q]ύ3I4'1nzېw7~B #'P ^9/;LO|@:}Lt}g-({vڇڭC]A;NqL9uA{1>3Ѥ:yA)j 2x pfagM + $U#xQ:~i[dbag!E}#^瞀4wqt(D!8Xx]9L`ȳ aW눶">؇yuG#v_Fxa«8g6RΪ!0C1Cg:d $=D׮lbvW3n^fQ6D*$&3p@+=\#5bGA ‰2 j3({BpQmY#*J}Ϊ fNKFC+qD̷,}PTѓ..C=[`rAi!aR^Pxr4 f]I\ɬj]>y*2#ʑ_@&Hv*Uӄݘ牄=PBI 0 b.k @'q2-Pʔf2S2sΑsʔJltIL{pV(C铩8{bEO˚]"Qidʲ"z(!Y?0/0}y?oGN`?Ce#o~ǝOȧz1oƔٝnm'+l leIj30i?bT}xp /h\<]^)H‚3; e2e*,l _GMQ:hTd՗#Ǒ[? x%^3_᷽ VPe+]lPj]L )uYY`ӣq{܃B8s oatM+B(3}.͠Gil;, >3 rz ǡ UDež1ᩄJMf̍mZ`+eG젆Z.Ჩ,W0„N L&K}eBڣv&M E6}O pѕ=G7, O*V*/XZS aU֎fѓp1|;_n\Jhmȥ4 (.M%]sO,.cr 5ǩk[~1ӶagTCp*v ͳ ƅ1, {q#[ *l#t`Gg8-R%@C[Zc€C.RCnd\qLOi2U #Tb Lg Lie4I:a4UTp=bCU-fyaJA `Yϐ{vQU;.@u Hm]_oۮڋ`3#&:BIf`]ݘgƸkh]v~RfTFi;+/u @Tsፊ͍ΖYm{HeYōky=g0PEYw0m6m GޘG`&zíxǣ7o7pEl "8Nwů40#隂Nbw7. c0 J8SgfPØ3_? ̘kBmS!,Ѫ8Oup6[1JڠFV-U:1:eJƥ᪚Ymvuv tzlBGm8~',,saz:-.:7 ߡJYCbAD6UPU湤8[҂Ġ 589qAӄ*5Ou9l6^]I;PxqDjHQ2I!3{ 0 ';d , d2J5z v4jNm6Yі]wy|=wzPsIJe 0iȉÔhn:+Єi!+$M `74bql< [mYrIRM<{>cc^Ts9oo( XBI32zvªE.$0ʐnPtfJƮ7g!K [n"͠$ =S2֌.LIz,\ޫhpk4NI͍&,_c3(rqCCx }uޠ=v 3=}pW6S\Fb>w9t<,>e<֛9Q.OI;:p}ߣͅEet-΄!! ^v.[g]C' C]T\dz!׾1r P0+Ǥ/cwyd1RpU7;kR!3Jm~y[Yd"0ъ%t>$O>8|vH-$0y$ V3΄d2 bӄXMKX"vR&cv8귝sY:5AXZd@˜ "{9fBq6Do~ *P?{jPY2M =r 0ipe^JʈʪZ<\JHT su9`[Z^3}kQ @Հ?Uˣ ]:xYhb_ƧE˂XEQ6 ?@r D1q>\đ_j|?LUPlCrD1e鵣&Jݶgru7 # *y5'ӣ2=&`;69P6kG9q$ bIRY3zk j~G^/#X߇;d2F>X>{w?o;qo)@{|Bܠ3]5e\{c5vY7".K; ‚,r[5 > ӂ7n)'/;VOۡ6w)pl`]_4A8o k< #&Oj k'{Py: ph ER"n>#&I[ۺo!ݺŧIܚ!cP#uQ d7" Uj.Oc봈mv;4xD{`u@,'0QLT#\R=ʷ}k0n1y6Z-KqĴƬƕʦ eA?EQcQ 9Ku 06&S@˩`Tlu%>r<"$,"zD#%4PdA&-hSFAÚWL6M'hr>.JF`ې:r JBjM8,b^AaB1& H;"Hjb"26ZtU3ENlp<#Ir}b9nMDE3fvנr]̾ 1nY_T% V"Inhq5feLN="p;$B"f5T?Br ѥ =o~ /Ʋk-.:m]/rdZ9!z-lr721ziJУqb`a \oGv kb!҄+Wи RW0[L@A2uF<'g8_ZEzg?٬QpM@*jk qn~ ă7jN_wfMF35NM1Q; t(Ao_Y VzN.,؍.iH-u3e:QZH`"X5m7 ZJ.=hr,σG#xr3)+a-AQ넋!8{ +b;U`&Ȳl\a!}Ls#d^_!SXcoCE|ƒP1zA~3wx;DFsOi4O_;0}LtXrzb}S>,A(mQ۝~@;hCe)k=5 ((EA(H;\{s IDATAпc;ZP ^(oa@TļG;.`E86VKP;sXRPzs Pٛ] ) Z4toe) |o Qͫ(#,d{TU x ѐڳv6?UuV~YX~SQ~qH W`*K& F}Nk,?~8lg6T#48ڢMJڐ !4[:؇9ov6QԚ?a[z2EŬ!ҍ5YmXwO^֚oӴC4o-1m<q,QH7o4EV  򌌞s'ǣO>=_{3C8}>_ލSQ 'ηT`G-Q2Bxvf}L]H P4paSX!`rcu{zf<#j֩uWՠI@|*1]ʳHo 6ژ9"JUl&!& ["xČ.}`Cf3N#of|ƻ|ߘ&=$? ;j!)%_۞CoCmϾuӇtMNח{?C7+&Ղ:'JծG(29J dNqLrW8HhMQ}^ CS\W׎ Mή1lC,뗑mC)imehz.}#XvWjoJk`wGɍ7HJea69:I9w1,?fQu@\jۙm5[87үL\]pj1 U t,.[ce<#87ˌ -}d=JzYu^X Fl4sbxt,E@7_dikZꢴѩXdR4UV2[i2'X]:֡by 2ϐn!B1#~oiMQE2_\]cOܧ$ّ4qpZ3~,X(&-sa.P&V7Ifi7F;wv̲~8M8 3Lœ%B2M`kM2iWɸ*@fLde23²a[Us>R8kkzi {9m,9>i rL>ECRia}xsO>.+7/qQQ"^ۧ隮)؝/{3f{ۈ>CvD‘P}YrVm; vP̆)eGTI ZfH Z3j1h4,17ɼ` zaK<љy̤18uᯜx +(Gd{\k 6e{1NkXʼ* B>/vA, !\A M2ǵGyљBqav$.s]ЅhIUf!SZ`xFTڀ$l"@AI*OZ{Hƴ>on44'\E£gf d;B _SAFB{7d3֐oSClw &z2gSnȀ._ZeF_Z<'j]@zBe(1W & &͝[d]2ᶣO&H LT)7>\B_1.1,Ybnosۡx#TEiU-O 71@"z,?VpmGmb=Wmc߆]]7촿"隮)؝/pt^&ʢrݦ*_*vTyFlgEWs=(i4\vZ/ 8YX#aP nWqVBr ۆS;{e<&NR:1+ȶ70|ŀ@Ep,F*ҭuYγ5`VX6aU,32(FC=Gv@@؝+59n XC1ldUdJa[%.B*5JI JL7KɯL{UL)@ 22jי& Dk6TA@9ܛF-l|HH?#? )'tZ9N~Ob#S [o~tԽQ ɳ^p} Fa6 5ʅ Sts (qPGviڠrMR]oC3p34Y0by^%cq(KOU,?@;JڔNHd8 ĉuZ3 RM%(T0cKƀ ?ثaܺeO6τRJAS!ܺr4@+_1m2!*u.3JY̑.{{y5ThΝ{>!<'ܭM<%|oϰƑ6OtMtՀhlɿK Ԉ-CG2V5!,P5Qa[-!(3`f\hZvsPUYV&'c[""C[ic)!9RavJbm2'P#DARo*C>j3E;RaFb=ح /N` "Lbd[l(7:/ 4۰]YZ.e(rpd),74`4$9HB\|4ȑ1EeBj4ef0!ApIG?,c٨7gK'rK:{hFjRZմ;c/'dfx#P14v6h3z,s'+xenY,)!PsSGb!.xhy$ob1n5?aϗِ47%Mk¦"꛺IuBexf/ф=L;jӹf6 0{{Hxz*R]xWb#:67u9PDeߚ D94/X/Zt›vM(!%z`4°LKZ2[ MRV q9M"2 jyCMR:ny `37p\[Zۙcقgh@/S'NCX6y>S̪<%0$\\IrM da#\Gk 3[IeK?8ŋV:(GCxK) ‚7lg1N[vZ'p5wiQ.)֧Y[TSpzNoCu+SN#pg[PJQ 6m6H33Oqn̲]T'kDgmwDY~ZloG+.1ZfVG=F2M ݫ폮SF1a3Yb6b\SBI' Vcwa\ YP~=s^89!߼Q小2I6[P$s^.p3$C3q2"e# 7m옟Wj&|E91ř m ۙ5t"L3I 1ŕ*Ekfye!b'rt+' ?3sdd4Z(o?7f8qNs?ǏnPrbtk`wwow.7 }_&k+F9t{cz).09(`jbB~O Y)c`& 5c(IMsCCJIe>E@ZMe/I8 pA{Ll򈳜зZ!F|y̼4]~Mk%,ɄZAbx,T!]Eɦր2ѯBNPyS>Gr{ ̡d!QSqcEeбz#K>,83:vN*=p@oX6,'4dZ6e! KȄEƘgd j1Eqx=xKH֯=ٴa6tɍ+<746&ж&o8*>qVXI;6sIHb7fSb6 :%ȶdohr %ai.jVI 1K;jUzP{ |xDOzσ*k1a$Z6- ۡ xDf:S%oat5bNU< r;s(@,G.f7t/fZ65i`j6`FnUz0ɖ16i͒a ʂKW jbd27I_gp_L& +7j`Kce* 9}^viR$e.Um!AL&[0i>'΢v7йYd{;p:sXƿG?'j X=Xx÷\K6~d"T0]5ӥڋO??wmw/Nߌ.]{oՑ~ssZͱku=F vUjb&h[V11=t ƟnDx ϣ9%>@`zTz]hyy* @Wɒ  t5vB>귟G|6\Ƃd0cj_d!Z'vhf5ʍu41;ߗbNIm{L> Νq=?+)6L8ܙyҭuLs IkYyNV7`@O|ٰ͓@GlgHu:zo~/~@ZD/¢b]m6Bga5f(/9%ŝYr\SLCJ$kWoN zCޗ`twizO_wp"^GGStMN2 w`;glq~<=_h%k೟ijkY: 50UeM3fug v)Kl 1 D(}k#JۚhC , L\=lբRS%,KHj%a"- #beAfXkBMxs 7ã1{#ڙd 7Y}sF`d u*ǣQjD0HOEChT9fDKή7Pzm+ivV&a6C uP1T91Fo*I!հƐ1ak]L,gF ERu1 ۀ9¡@5뢈9IҤAKl4(-#i~TmLan.?Y"!,m#_1zs@I-2Ϲ\>,7ZpC Ksm!\9ΛF.8q(P_y]/F<BLcǦk`wxM&qap~\oK3O Aͱk=*Kϛ`45hԎs2$I6(=M ,}DF&]e[-PE: d[hOMAS@r<1 EG:bOnlx +?㫗`}ʳ(]h^LxP2C)ɀZfa.xH%2r4sY5bMA1ctYn~SeKP9Y9@~qh6q#!Ef$ bf̉5s`J2RjSU:X\c3] %8-)@) vqYBK' o"xov$M,V(C ]}-ig8ˆ~ #W^c7ٴJ5{ u50,vصO~^{J6)&yvxg=1ouM4$[#FC$_>^YgP։GNǐwѿ|NGr &e:lsҭu3qz.~Uŭf^zsgiޫ>=}MtMt}¶qv~[EKdcͲ擸ㅝgONuzY g x;n݂#X=wvdr4r_},Yq}`cY y [<]|/x_ZEr:Փp3H7/.ctizyf@K i->hN>%8E3ogH)a;^hnzdDe@x>;a]%L>!,2Nf|Zě2A5-5-1=? c>WNUG 9&Ml3E8'(?8OQt5lC9"8~GDM( %k55xs3t#eËO# s)Qe24ZlCn5SJAc0$!z{jF&̀S2"wz1*lTv"DEZu]` b zu#0FJ|O8K6{9מ5rCcÚy FiSW{Ƌ2s9lonto[5]KHn]GM-'pI,1i4)R9uh@186 ;k'6;-CϜCr ɍ+(#!mw0t2Mʗ# X]E߅FQ#C?<$@tnΞOn5]S;]_hEֻ~ _ kȿAW&k){4~ 8ijA4y%%qvNݨ,#]ve$7Z/:u<A<7P- voGRkm*YgVqa[5̬ ׇRDX#6Sڀ J;jнi[FGɉh" HP H7xO>|1O~x62uMtM5M.ם;wf{_8{߉|w N6־(_08qza;  GGF2ːw-Pop3VDF={ށA^⣗_Y^0RNkк+Q;{|EU&c6&qI[?ۡfl*rv3뇩lqg![3+4chy$(N fVtck3yEY&GXы9o#,9o L. (4iހ7@Z[?@12Qhynz`&NCuf kIged eBz?UE@oJlp-3d)DY1ge6:K9sB6Zr!b8aF5P)(o,-5cT'K!1E>LSI( "TUEbTEe-h@n+&8orͱB]$cl3F38aZyRyθ^Ve Sk|[G.ٓHoZoJͤ 8yz*~3.=X8v7rsLNMY =|o:,FEt=$لs8/A>PeY__ķMsvk`o:תy{#w*}|?> of_ha<Ń~P_ _0wE߁&o"&u:&œ=m.]Sx 7(7@õح,!]փ/v'xDٕ.oq+M&̒NDjwSHHmwPɑh&Ua J)lEb5UO?UrR葯 -f<TQ rL@Gܕ̪,2& kpm&*3S2dI#`]tā4iီNI5H_ˆ}dFVEG a2*m39B&F|Yv-p}ZW%(zU)&zdO$WwI0:Y8:zN qNku¥d:a2BɒHjie[O*}XOUY7 ÆITUn=w2+aIf _uD~N gSAT Tqw:הJhyv:Nr8ԟooaNMZ$ihHD4F$iXX:(`=%ϓLA.Xrg1\yttnܛ隂ݿkm6;#SJ n+4Bx߄;{_&S{n [}71}%BrSf3e_vf8QvD&1w hiΎWNR>ea敯Ž/Ƀ!2)dXڀw2ص[wwv㫗P.Jloe㋉a2dխպFZ)l퍉PңOb} <mo&m.ׯBU>V$s lJPgFlA&ckbx&:CX>>I:tsMI։=3 xmJ>L.p9Y~gU.MmFņ@j.7ײҬ`&DEU=Uo'=*؛1e#G1W2 wvx5xq4~cC6Sce~  ukpk vFgZ {:]Ezm1k{O`kpZ3_0qWKniʌTcEr8m@ AǍE~lo2,M=;Ddx?F{gX|pM>g=#vN;]vX0d o@ N6݂әY7i9۲=5hMX$qKA_jgyO uS|zD 4 9ɛ$ , g q6"gve&7J*@(ʱQi@1YbA&[iuXv!4gfn%N{p=ɒsnhBf~J T+XB4 @9Yv VesU3^2ID#]M&8v vAf%843hń"M-p a-yEG.KxK`ug"8)'[;jiu%] /îEp=jy%.' iBI‚[o u&,VÛ_Bv[<|k؏OO13IJ+LtMt_ƚ_o^|~sjga~3(1g;ٯy=Z~Ca!B +3m*X9 ovVRf5܄:Gy&]Kи}n ߼#|/b̓A#8v }¨9j4:eۙ呻)GC58L[;|o4`.ဌFƝo;ZE{YPg!s;WNg @r jgϑֳE~᳟߇s/BYb1u i &TH ǥf߄r4Ӧsm߂* 3s,A0ӟ73{o,u=߾}ݗ0@R D-Y*UJ%%KIUHUlljBE$%" qb wh%d)Na.vKy=pWT xΨ+tYx(4ˑNh/:ٰf0\[]ـ!5 IDATJzm4u(X,_D2;W6jG?}{4 5^x/PG4ߍsO?'VaH`Vj6/8~ <*>R@AEa[UnOF(ݦc0O aȌn"|kE|S 6n`r@,Y:YNk V}dB҅~׿\ArrDT!,I17]TD'cep vcy0D-r0" %_Y$vy0!}oQ(!|pƐp\^0 Hˢ >X8W֐C,) BR`EFB՚i 'jx;ϐ;|!Qy8Ub/!>#m(9`qI;vMw="50FPuiuǙРi@>@3Zt{TEr|+p=Qr2eH4d NX&$2)R %hA0(̶^s=1WͲaӛm8$C8R(ݦY\qӹ0dIzDmimh )Intc ]Hb,U:^$10Nq5Em`6eN{MP8'l>4hBX91#86I,aS#j4QDbR;t)rv~MB2TY"3Gd{>JV,ZUz`GժnY7ŚEW ֫4Ł)Y Hۇ=Ыʠ~@22T WKY35*#9deSɂFXtXJKgX"xԙ_%$C| ՇPD+Tj ZhCNeIۦQ [6?sMzB i!k" Vຆ,RYte犧"mhF1CT+9N0Dr{n^%dtJV0%GqM8ўOj1'"sDhS f9:}}4)E)j,," 5Sdʕ9{l͊oukϾ %㿓.W?/ƍN}sP}mpW6xO~<v4?팩0uEUNtM஝AրrV'7)3K ɹnYOƈY\l<'G(E20 vOư p`Vj| cd7WƂq)ٝP{=4$"(4 1uDS*z ~f0] w#g`5o p1_a|ETN83 %MBC]#uKq\jmQة rML%יJ1hH6 σ~:O*1B0 4)Wh ϛ7'cz_<[?}Ax&0uabT< F sgxtJvн"XBvBnZ,tMMA#i1hQIJLmNo,d)Y!tϟ=Ow}@P,4פjw윎ńbU-6rmфh` mek՛oB\l՛TXbP:uA]Q[ݣxDQ+>!2A+:0 PbĄ DݪX,{?&!my6J"rL~e8 L W @CJ\Xhk2 Q f)>؅UJvY"hsZV]MI琴+[`$%U$#65xg޾_z_y yUaj2/yy2XLjY{ss]UٴQlV'%a(2n0} 5uy-"V&14y0$cWA09Pa{LFb!ۊexԅ|K0 %m8pDTܔe̕ŸDɐӘ;yVXw=QH+M錂쒉xV weCHo.އ&]SW.I @-r748 ,ˠ<,+Yt 63}"eG{(z+Z||Ǿx40l͊o.h8"1}ϵ`8Oay+~ ,)yy%hV!)]@|ɍH:' EQS& ȃ!ue d5+\Y (@F2ZW|Q&J]=_Br6R>8 Pzl&1R:֊:xQ&M0Q|4QlmᬙmomS_%2+YAiϵAKEQ(RaiEq 7dnrYLME\]Mۑ{DxOA?BH G$M76s =',I4 4Q}6AU2>Sԗrh ǃ%iLqVFN,H2^FJ^*'6&!HLuD8j~[c y\]_,6ND.;:a%M`saY;&+b]vн”˹Vꜘ 6G[d,W៽o,%S" O甆UN4ˁ e>ɍs.fB,˦Iur$mT$4,1 %$'GZh}߇`򗟃OC_yiYs-k]3zO ?s2iM_0 ?U%O"{(X#990M羆ҥP;{Š׿GL 'n`8_Q*ଢ଼YAhėvOT)VsC\p m!EN=`qPdڗ;90,Ƌb{wBw o<=4A"aRmd%iР n;pZKpWe ZQu#9>D{ %:٠{Mב E'8CeH#Qqv޾l8&WHH= 4vO cblqi 1}vOW~y0D>N;iF ƻy0B6 Mv8å vINR&(pF% ,ȼDT S0zEF$ F!ǎw?s1L+5_:xΐGs1L;mmGM4D;[`I,1L'6HN(d#FJ0An"t$TцTӕ2YDtLb.=g S!$oszKlЃIًU7$ԍזw&#n0|GHd4 B>R ]pW% VW һĬԠ#ۯaks1ZxtL <ɸOi͓H] "cX]K%]bZ*5Ja'`9'r%7xu?j*=,7q XvW*}OglZ3l, ?& Bl۴F<џދ}Ha%V{~I|O,iR<*AI^>ƼBE;Jg*&[7`7PtE`8=fJn,v`/hOEݲUWUF<8ړׄS)l|C! kE2NǍ&&^X$/ص9bsn!~ Imau[AS7 ĈSf 7\3sMb4%*CNǭr*rJ2J ٲҬT}mf0\몳B W1yݕys 6bNZ*H{'${3J%MƪkUj;nM XQF80H',, cH[E-"BIq 4\s\=1FHzaҵonu*;@ב |]i64<zB{e*W*B%W tہ&6P >7vۤ>{Dczrl4DrrdyHTUod/xr r{pW6Yk$p}UTk:*ŲhlE-UmM$*#9G󨊍4~Qu5]~>$ZX%`͔Z:!ɢ:0v3hQ$$ZŇθ"O~ `KW#??+`R=~kٚuv%W!9>@ʃ< 5{aDY J Tx9Di?}on|A  ,V8Xlx0)Y܅8pTʪ6b y&xrѥU+ _|s sK*qY,M`7aK05ح%ԩuWx5lJ&iǡȭ/a?J))R. .!7^8P87JƷ= }Fuo;7/a4Y!&d[BeERuX_ΦJLߨLXy@iP*`Dǡ9K {$Kj[91z pE,u $_|).'sd*{"#w(R8甐e>CTNH-MS#~&#4—(&T$1rB*9,tc#!]dXª5hSc&KepV n:O2+[?'{!:\>`Vˎ*r؍y$huue=>ܣ뿵 g`> kNhpܕuҔC{R}6Bl:N6-ZfBJt }DpNr#>E>(=HAuPe(TR!wiMtk -)ۂY(]^v 0$` ?E0i 2CZ$Yk3DaxX21ё8~ iD1! j >I%$LJCz _&7^U#|"m2 y8J?j;_=gkٝrkrً0K(^z=l޿ms ؼx '<q L'@˳17ߢQiЇT$!um5h5`5fS( }:2rFI(bЩhrDC,8Ҙ:CIJc!ғCz_Y{~FRF R0(.2L,WMt>%E'vH[g v󐴏 n7}'taP`WYՑ#/=6ìD$ A y@vp #9σ`RD]̩1L #W VXn.Ҙ\%iH wy CxvEY"Y3iB`] [yX:1t,,.hYBn< SHhؔ8t& V m,U`Vj0KUe0YBג E,CqHE3.}Kk0d H3b,XgQhnx$- `4q RZ=DǠx6mh&iyLn\>$} IҤr_]o-,?Ih}C״bsBJݦi-n.YZShR=uig> NkYD}{MׅẰ̂-J,dф#}6 I Kᕴ S VJp?nL4ޣh=ح%%e`q 6oum=d-\;GL !1Ҵݬ`^~FM$E[ .ήꁞOrd-)iLbXXYX!P>_}xQAYXV@X8c+^_F ˔=Ǜ,uNSD4JHi?8c9`]e*iB{y0 4 4!ຆdA(st{0ɾ3xA!B3 !Qoqo"DVyh ߃k/(i&RhC* &g"s ­W.#ڻM Dž%$kɑ'-,TCr擀k?la+o"?siG;7s}rn IDATQ(!xiL^}٘֍w߅+>xNYܘ1fkfFCr3Wq׿(E5d ׮|Al>Dۯ?&KX4օҹxAuHCAc>@|lUŗpM'"鴕 S_&U_&'1.GۮКwtbIt9IY8(:і|L.wBir)x.a )Fg{_Ӡ.xQy^:JUhF'21T"2Gi]RrIdUyF&sӆC6 pZKOd}*RUui3Rh Y61 0yHm0]h!4a( 1ivV7aU(E繚CLqIrյ" FdL0" 9h:LإtC3AtYP VhEbYBg ӵbJp,r 1DDxU6KiDi#:mഖ>cd64"an. }f7wT2c:M3Өi™gD}dzNSmu>F a!8 H}@]#bN[ӂ.>49*iBCN㫌 o<+>q}ݕ "4p]d.u8 ˘v8H/v9J]td{UD$UkXmޅhOᙲPA 9&LL>#4Uz1 i0_S` 1Fx^"q"WHME Qf4qsjU:vswY!CeL5[v}ʸ2Z>މ2h&< v0=t0Q.}J] Q-f@3 wE~iY#Yl@]h)biH2-A|TE /GҬeJφ}EKH:Ա5(2qI QyaplЃUoA@?/*o|+3mk0{' vi 4Õ"ouLWАqhG,*tB/8#` g>4˂Ydl4nbϨn BGܧ% +B_# eԑ5LmVjyͩE7ڋ`9$Au{Ee`¨ ;uSQ&d'Q"vr$ Lp]$y 0zY<…*)]^CmDԩxrD"$Ţb(ޤ}}HҹIc]em[adaxĂ},?uד2!32K e%ԡ4sax>ȚmgTDs(TISe Ȓ*8TM0ux0q̊յaKͯ(ns.tt讇lG02+-;`qD~y0xYZE-` ߾ qE_}Q|ょ]DۚX@6³O`~a%Uk 62[5[53mߍX3? ;GkJt>8eH_9F& 'YT5Vzvc^`b=y0PU}BPFhIJx jspW7Un;dl覅x65N4Ai`Kp%EY,i-i-"ʃ7&}Y, Apqd,6Eh?w7L0g+?O~_#? `q}ßv]GRomDkٝO _{rʣuyW^DrrBe*/ \uvqhJc`ga :l4ωAoS8+|擬$5*"рx"vcatLfRf"[`8TQ_:2l43Y'~OFvM/oMK/a>Ek)nݘ'ځ2Wϟu,؏ 04ȅ"3wc%[ T#ćYFAu4h#)4[6 Q Ixy0 lj$!./? Ͳ,4A6yuhH,"CH7ԦKv붭bz_sX:w69y6sYƯ݇|ߏիeY$99hַ{rmSOyY;[bw&cX/.<a?6w1qGo8&؟$hjQ,ZHC4gKL(4@d1\sizSt/h$`/K~ƌIOd .֎%$-PTi^p&RN*mGirVkVN#0%ѢeWQ2B7w Sf>y>I 6+nۀ0GJ!uydxBj]͜UD7hS'g,l'M4!0I-<SfLYꚖ,v`J^e1ί(r Ob ixl(ଢ଼!C ɀ~O[MzϸҴJܨraVjt+ɒ Y+(_ye[7," T)6!ٰORrLc"Qx%9JtڊLOh2̯qDנn* ILXs0qנ&@hkYHn[?l4b>P|+s ^U}Wix~68KLȏo*V~bGs:2l͊ϼ}8O?/~d$V\Gie}gK. = v: M~ZUЅ p;o%N!tԗgHb"AX4W#4HcTP Gwxo iKQ[ *R() HJD_bI,*nEP@3-d.i ETb4ҝj|DDLp 0[ vu eH;GpWIs-V`HX%LbKA6Ke/=Mzm˂Gn ܾO6 ?'1痛i: 2a5t NAڐ!#d *֓"=,T!&tP wRL]CCdQ"i}kiC F|Wa(f2Bَ*H2X2ѫۦne"1M/KtT+}n?w6>@%/= &[E۪5`ͫB)M\1uk 38 Y&ifs )$!޷4jSy fAi^- ,MOmfVTGo*z޾d؇P!xkJh``{ʏ Dܳ =1)SfZ(\ ʹ0|+oߠ"h{GSbQmV ]mw;Yn\i?mfkf)W>hw,%8>C0?~‡;N 9u_jDA0 ũ˟3JRaXGFMmd,1:2K[Jj7DU)SwGwPZ fQF$ɕF7E%hӓBͲ _$Bd2VfRW,I4Q+{w''85iKeyF`}\;G}hh5˰m'Pi" 8E>T,w)B[7݀UoROF}A8ak9pO>9&d:FD;Qgax lCdGq)0HWDlYӔA"DtXp'7|C^ZkKlYH\4@7U:It4KNOIHFdQ׿vU)$ y&˶CŨ0X9X9p cy:d$I:0E$r6ž_,Er|< t 5U 38j󡺾*; `ōD$6x[;DĔkтhw ҧ/WCOx -.^~otGOً@n-^X!sm!0TQAP|_Nͻ_PygQ{#(˨{;.O5၇GeZ"6 h{n^]9 , .4Oמ/^Ԏgl֬&X|Ke'>G7?~|/|C",.tHbh9WC,ψ 9ڀkpW`*j<zHN]>tׇ+,!nEEqN@:p:I ZH:4Z.U{h:=;ZJ'jKWW^8/ LD ۆQ(p2ac|%wy >WT73JY vi瞤yIu9 :]DoBm0q8uGe'Ls" IDAT,&-IrY N9qms Il)u̅Y6ۣI,U*Z]dþ*0[0&Y_N1\5 v۪+ϱBӕ$@v%CPRv)Wte5t6SךaNcM:a|ܕ .ߧhf {~ ͫG!,<᜹0y -ߚM4?wI$'j|-V}YJR}0#b%-,#>S4);0 EBrG*"F7ӱ&$ٻMX/0Eoy͒Hm\$RPn t[2a.\ʉ i޲ xyXpͪ71y Iu/]Qߪ55f7a0x'c mRQ;Q(32TN(9Oti3V$^3ŵX)xRX߃y(^~;_~ k wB2ck0e8 &Y<=RrlS'l֬,w{z D4NcW)4>gvdYIF |2OŅ`W_FÖqo,,LNʹ,,ênR˜e0+u5j<W3˦wnh[1~;T79ɧ߁QQ,<t@{iVInN4*xg?˕.gd>ҒE4O?CeD WWr"a"5fuYDB ڟܵ3SF爏RkF+c(9F8c0 E W)+2 $#Ikp_vr2nߢК;eDuWc37:TvXiV{Q@%IisGrאOƊk,R T,yJ~l(3"% n:uk .KiS8E~Q/ݶIMv۰ OY Tu ernӮO0hM09%pWUgX,uoz'/>_1 U(;yD _ B-u˚GzSs[ B m$Dބ=7ho[u8^NL)!ޤey!iMzǣyݙޛؕg~ٷ[bUlQjDYVcX I 03`2 qbL-Y#ZZHdIX kuk>` bhfW:{$?YY/ C¥kGpV[Py5>URe =P}w`%+ãUH2$CF茁8yX~AlVPuԿǓ} M9A!K 6KV+u(fCNadɃ: zgr77A|HX^̆k/@O )`Y}5j@P2ăC_و}\MLx9lZRCuWu2Wn<}pC!f~PzpE>o׿`_I2 C2LG}!oP B;lTpKO"Dh _:1¥kT$Jne0T$eģ!: 8Aqj &bAW Pku e*ZB6MĽ:^I0Y.@mLBea,"i> T_%.]4A<\0sRH⌐F; %Sa7A "IvLi9\@E<-=61( (B;ubW!{ Y"7tЍ7JulYq!;\'ݓo%ý7~sM[UB Z \%Ow h׼G ht!lY;"t_.=GT`PJU %H!HaƏѿX"WnP`K7 jY'\R aP5v!2d1mjB"KD#y]# Al;~;>ga,K]_MHCBJYY1mi!j@%h =t{hhsChXg/9FC@suz=bf!6ܵL+!w6ԛXHTub٦IdL"GbXAARr CKIMTJg%#1Y)EJoPM\$+cѠȒ,a|@~ԉIȥ } u p*󺎡M Z.Ph45x#I0$ӺߤD4蓂YpbL.29B/ lȒA)gnp+LϖU)fxLL]!ie̗-IȘAh5-$>~o싺m-B) osoAa@+yzrF4%Bk#w!dK=:)2c'TN%TeHy$)J4:cs2L>kXPЌ~f[VӦ" r FiP)J湪dZw^gkX''u2 ?W,6SnqzkTxOʔL 2! `e@dO`Td-֡4i4a-NlQ@<\#( İ?aw6zp7V`? o$<{/XDd0:#q:$J mr<RE43Ė`RqHb^t"H%" P{*$"?y9E#)<(*$AYB)W!!0K5jQ}A6gg!oUgqZϊ&uZu'u2 ?Wh_aoz;%iBeG2zWxEXӘh4P{RX]aSGm#P-hS(\NJ7,,4SKP* ׹jT{H=ޓu>x 58kQ,^h"S3*UV! Gp#uBhHjxy4Vj P5 ]{mw)*$ST+|Ԃv÷_ihSs,4Ô%:&jG;uCHZPjb0L RdڠA4A9$Ż Q=VFJ]4,qUIx֚cXKYTaQ3TH]2VJJȔV,$e>\ U  5Fx&ݎXuƕx4@9$Ϋa"n1B<f݋2р=O\Ku&U 6R,YFuD68*5D5TER5*d! %B%MjpJ=8c%s!$8 |@d@j Ԧp_u[V)42P`ͿZ@ (rsJ7I R'Pp}_@::Pu(\ ք\(2+ErJk} U2&!J~P~r֖jcJ4a{EEާ^Ix4dϏZn\7[U(URQR:@ Rբ*rRC\baHR Z&$݂\2&$]Z#qw!i:DYAko(Fe(F e>ՏMCmNxsԛ)2 ,0ȓ8S]@Ovaԡ( ~TZ,%*@5ĝ!Pk Ц>U(:O-0mDC- y=-) aB2,րED {0"7I(T(p`!qmx[t( G:vOݟaW#_sA;Av8c(&a2ydwX_kC7zHЖaQ4EA692+BDGpWh{5 jmϱR|sPMD&1Rh !UU+ZmrVn!DRryh)HI3,)/ˀ$C)x"MLA] =jЦgIg >9MMYd(\MLC%41{F1l>REBB߇(IH0VQXDN dt4p6helR d8gkyȑyPNZk0J}zdA4A$hD0@<@m4!O1Ax lQ7 ji$|T6F;ȩ"rʃE=XIsoo WTT4'E!KT_,a6Ǥ;6{R\*ߗ}ar<ru:`"ATsi4dJ2?xȅ"wAC$@zȐ!?#Y29.L%-)4|ujtA$ADEe|LU 9M0 dt९, &CzJFKL|dgfZPth߿% n07Vn@.!]~V'5M! d[QU!J@"h!K"Hm*ϿmzJ1]&uXeLA^rxHpYFpԂyϥpUDi#v`)i#8؅u6gufϟA;LP.(qDPxఅ0M! tIDafjcHaԐE:抛Ҙ$r{&mP|SK.Z1uP($5 v4v54DD2"?dkcKfqC17E\A!F # [hy!>3^Dl` I7l s~U_s:1`Ĵh0ZU 6k Ԍ'σS@{ul(*c\:=O]%g%f h蟭ws/fe MLA8E%i<}A+vlYFa&QF^ "T^2\@-.4 Qt ,1D,6?B=PyhD xE@`UD 2N"+>5?uh@"$Kf!jI3>P.I1or] !'y%y  $&#}79YFC>@3=j nrLG,ITb!#Hᕋ%񁈵%AB_\F1oc{AM Z{Z߆" %d< AVSxn؃dX6*H|?^4.^o6JE&{03h];2_w @!\MRY=Ӑ8k:6nQd=x& 6!)tY-@ z*#L}nph'LE&;q䍗 %ȅ'$!KfՍkIШ Ew@.n3s!OJ e&1ՙGFpok 2c}J 9s WO9[<̒Yl$͆+ F]*$Ƿ? ZpVty'ΘK@. j: (*;pWP C4 =6DE&Zna1 H]q;$w=YGmC4,KQBa9y 2*Ck҉LvDTT~P~3~yEA<#uTA$3w ƴ.$A.އ\ݑL~7{㙛8iT;_ pbc8JB3? I.ʨeZ^"ae!8.*&(hBIB365_@M;~߄bZw??$H|£n{D ų/B6WP "w6>܍UDCT_%UA6ܲ(?)@x~u0&E$>v0 6 YE 9C R^Cb'UYӦ5N^ݢ'ockwQUTjRgѻ_:w:5 ~vkxě3 B.W!^^$b7I <ނB65GC\@mzj}fhx{bpoc&+#r9,.8촑ED-.q@n*:#kde`|%J\)3*pR B9Es *Bb[69 PFJ7>͛(4jq\w̬FDD Y{ap1_x[''u2̞>ghnJ&3/cj$#jbi!N3/B\,AOr_4HYJ:W}6sQ~Y8]_`tR}VRRQ|T?MR5M^gEBx4j`E \\.rے Qd{|f`~߻}7NF5׃" LI ,(*AAȏK"~yϿ=r8LCB<}B 7!m~CԿkPJeSbA2ҋ, # `.]dz6=t}G-듐LV9O%ƣ]^{Fi93&<9A"KmN"U ,8=Fϐ;:iM'uΣ{A_xd))lr0Ϝyg3_7 z"D>2Dd(2>aGQ!Wj4`eCF]f)5="Whã,=BP3\Ҕh/SPKɚWQ_wH\Rk!ЃtìgB15'^>5ُuYD\ηR>ۯz 6}}}0gWnt"\D8ku򝓧ur ?s׿kIu3Νl y5V@ J1 RQ,GvwtPjH\VVX>_2Y4es7VI>\4I*P؃(̀)CEM1eIT͜",2)`%qU4h) ZrŅ)dHcFf4{;B:#v>,t\,[E1>9ذ=h)h!^>#H2\0kx5@Y1i(L |WYQJ݄R\BmΠ/+>(/K8:p&MdejQsIb 0/v*Uɪ Tv%_t\uo# IaJԋmDLwڣR8>ɱ ٥""gqT$7'uS:Nݟ7c>N+ګ^.zj܃b ?$Ӣv6 Цf\+|l߆ +]*yσȸq:.~p!J3HŴ$hJ""i-A-KJ&4q՟"/\Ս:v/Fo_>><[/S\\Fb쐼=B?"SW*4;]L*Qm'SYY\4 "JמgUAmj~UroC2 .^C}H AVJNd;aHmD"tEzĵCv" |8C8kALo ޽#>`n=$n,Ӡ(㘵Tke|5hCm4ipuǶM$bKzG~js<E;'[h}_c[g`9}T{i$ѰI7P~a{iBTTBZ)J dcG"S%ݦsuZЫ4TNC.䋆EA]sϢBWse`IiCTuă|ѱ: J@ʆ4XZCA4# C?+}zJmsh7moZ' }H=t15Xg/A5XZte:@=W"2:t bo`ñc|{T- &g_dZH]2tJnlۤKPWq]KU M.М<2\'ɰ{r}r87bm; cAV`9w쉛S^p8v;6b Σ{߆Ru)Z&aj(\AG*fq ѰMЏj4YDZwǔbOJjp֔xUr~%cb͂ǩk#uw;c/X,X\Zu) $ T̀\,+ב1%ģ/?XYǾDH3*Mf:٣qcqCdQy^)@)Y ![K/8ѝwmV(CºgZH#'VVq Z⌡6&pYQ l2.ԆG mŧ!àG^YJ!0A֔" W΂ ( $0?9KMʚ>4usB|Vuـ)[\Eԣ{0u{[p<7{='(!9{{N~dYF5Bg&Z7y0i̱T[}z E UF2 Za6G!Kޗz2H]jA㛒Z.UPkli3|,"HP*c+ 275eg(j: `E!<`lm|[-=BGc[E#F &vR+aRoiC_8}iء iGaVMƱ){e QOgP,e!!_ZhN56ߧNLBʼ >Ԓ)(Ixr… )WTy)AS45D %WSمkBfjgco!.V[h!,_>;o=Ӱ.\a4[9v$⩪"Lu1c }lB2 ^8!DPU aQ J_΃pZwYCV KH#DcFeB.)wN! +(\ņg|M,,\pivxl[dZ*~ D,W.8qFI/EiBbs;0N*B7W:Ԑ(h .* Xg/:]j}Yr&tKD. סAn Y)W/2=5x32x A.@H%,06:gFJ4Qӑ2A$ rśꋏ9 v6a.]==xE#Bσ@=A6g[F`B^~BY=3jF!B_8 s.}Ѡa[4,DzG3O-Ax3S9gI:mjtlz3\Bvx|﷬_fN }b 0CH;H}YJaiB C8=#ʃQ[X̋fw6ͻ+ZkHyOA\$* I<{os*3-m!4clSc j3w ?.xbx8tT4篢Z{ἁ"U/e i")@=u//P0 ʘ]V@\4A,aiCP'` 2{O-"8؁ c,$@<bRҵP} ]8!lշ\,1*x3NI!˃Hޓu YE M H2B rD݄h/4G*^ 8܇EρTp (B!|c%(2EI PRR!tqLL)% @^ UZ9ʊQ1( (E̊$+S" ഇ,j8yKp Ɠ}("OrqR4b{5򎧞ر?yLKE̼}ƤL fi,JܢR ǦCVe$ڀ T^CiLBTu nr՟Vӈ:E#Sւp%2rFEc7|/pN!իYK=DE5{H!JW4"_jbcւH]!c5+ҹ?B!dw`NQ%b*.OH-`O=Ap51c+@6+9_jIFA L[CP55!(j) oqp;~Rk ? +壃Ww7N;qjBF6bDX.Qh!I.(ge jc`A)6k)ARC9A,,ETb0{OA~,MC2L{$!d$>׆iʢct?m?B7pR`)~dO׋&gHt&L= {?}mTN69e ~ o}x!H"DMElLӂZoBCB]AkND+Ew%MCfLA\,sLTu K<g>3 (=?U, mFQűZoR5xH+V{ĆUwY8wzE DU )HxൿsWnxe Ke:P' J0ظ:Z {@C&zųT@ИDkcg!EJUBۭ'd) ĆGQ786M sn&ϩaB.z;wl"qBb,N )~rJg c $֢&DfI=QM|YRYRszdjeY`SBÎ$*$A)UȓP+5p͜B⹈:m&AӜh2m 7@,o# <B.UIdGU=mjZs7_CNA<܍Gm IDATjYK2L*r2SQ*vPP*5j-+ &D`~ha` 5Ԯvԛ+Ч=YS5s<A^ "G*+ @DPj 0|5gC@\ChQ օNL˜_$\J4Q9R@HY[^zGd'kzN': >~>,69%`rV?5 ,dyUTՐ%0\m'K]Arh8#wFp2*7oEyp?_9ϽꋤnWXy(!N |SGT msu+;6PQ7?Bxemo/**FpV o`b4'0ϜC'?ot@3mrQ`i,[ex">|?˨2ʪɹyX":n¹_OtКS.AqCC]4ɥ 9d;`YXjjzM0N88ci!At KpW]R|e'u?\s'?9vдtA"Q_9Kn}7r$^7x \1GRӛnP# C喑Br;K3'g&Ǖ!N_ٴPx# q:1E4a I@TU Q7B.mX!6HivF>i- KbfI̹̩jsD~`9͋@G-0> *(<10DnRtw68)%/=R]i4SPQ `CrJJE$I5}6I?.? w:1\#Ɨ'1/ .m~|, ^K,q?ZlGFbN]Qo{,deA4(=$3F $n7_ cj_[_>_ ^s{[SKr@!4s9J2~ ԛw㗱:rc|~mzŧ_4W* MS@`7z)Ch0wcmCja3eBy*4j 9Cx Pd`8%a( jT2 ȅ0/"um/7&jQSB* k: @63OcSU*7N/r dC:0A£Bzo|6ν:,7#Q T;{ jsxę9@gJl;T^<,%*^r;Fc$ˋ@?KCNbEO ub #;CyuWTlY0dǰF,"ZD YIi#cs N]@RAuz@]H)xgx:jSמRbCnЦf)6s isεze0D¬dc`43 Yܳ iC H2C~(N;ACI9oxL,8ܧ` zGH1)>% ]g *pVAP|dv)$"ظ(۝% a`Y_/?ݓ'u2\'' 97>C3x. Nw GrƏP/HP/Yjh4y\f`._69 mrS@50x'Y%)J CYQ!4Ig&K0ϰL+4hX.ל }|@P3wio3F4@0N-AMހ65 r ޢ]dQc4s.]]FwjR C~>uHܩ5/׼,MRA,[5k{X7dlV,V>I\4hi#U4Z&AG~'bv(+HCxcy BE ,#}, =BE[641|?#O}"y)Ӣ$4XN^!߼1؇`u4$Wcd Z+3.lv$=WfK,\4r6ץ$55+BD jLdJXٴi c@=i#W2 kjAm HxkZR1Kq,`o* %(f&XLql(0"La=bH1TkC^XR)7|k}9(,sدPy,!B bYV㇇4 3U0![$]hB!86Ѷh`hd=4bۆ'aA+6" >Y5aN vuǟa chAÂb#fX7;mH yy̑1Rp{?Q(w~';e{\a ~Şwջ?sg:vuӺ6VaQ|iZmNIPS<:6?gJ_af}>=DjXIoÈ=R.*O=p7_ƻ_.8[дay|-nZU>qﭬ瑻^b%J#FH:xZ$W|@;]R e]CBֆξ&'nQ$U-ǾRX m8z.|2S0 XQuljauQc\jAcV+tpypEFb[T J M-M[[0ǦhӰFc t{E!vYcd0Rr Ȇk` @k.#w<23`Lƛ/ق92݄5x+$ZGy&1̰H$:W_NAY?ɽ?=ٻzWo] |v̅?LZaѲ umT_"W1s0G'hsu*C_ {{ @OI }g  “2S]YDܨz Au[7Eݬ14*xװ/#,=̡#FT+UsiXȳ?s%|3ce0d`>{+չʚdMBCgDq([F{pe)w<$͠J812NgUQ`M!Ȯ.h<҄^4y[ dC-B$!es~ _WסˢQ]Q$((-)lmlML /B/ lnnbgec:jаu+3w >ڗ.@%š>*ȼY栰su Rgx61}Ě]i]]0R i٠‡;Cւ)i"`eƁNo_|-T뗑=#Oc?rGwi^ !{lX514*_)HqW0U\%Ca 1d3;sܥgg;?St{Wo]q~sU ΍+VTLo],m`1GT^10B70҄!;m8ޥvOC_4 ;[tu<>Gj{Z tG}s B0I1Ox(jn]|4plく}d3#úv -OEg`Lh]}ZZ ]amk[_Q+qr(I![P2Y8/SHY3 eeR-#n36$Z/CƧ+0F'zMHstZXMs쑓 A UeYU$Äs %zܒi rZ5Xwum4/N^4ޤ屒P96ܩ(($@54HsSwyx -bkjSpo/\|i3U'ʶ YS EA{7`uhANP<1!v~aJ ۊ{kۅ55 kb8*!9TD0+v\(BJe#vO^la[k8z Kb̝yԖnG(QsqN~UXbyA.߃VZz q oBp.K!tlQǁI%v)[v6E ق14#Oumx4*0F& 7Hi{0=lVwr 0"ԪHC !Yea;$U&^w/xw]aw*-ۯ\#\_:ri&Eokrntn( 4dB܇} ڞh⪘yW_{όO2yN56( B";qW-AՃZb@ ƨjcQcp~4E?/k0G'H>vFݥyY!5_$ՖꜹKBchi;$ÄOs"_ KM&hPFXc*zliXFؠA_]BOE>%̱)4/o8P$^$Kɏ[M.1Q !z;pzQǡa$[K\əv{9:Do{Wo]`ޗ^ ƿ/4Q(v2o/߼SGs+`MiBPr$G 155 cp?' tn^3w 5?~<ӳ%lQ8uh}po~ | ~1L5ʕ=QWL}eկ(?a Zes[ !aB#fm6GtY7ݰQ"[˺2C5`M]!i Ӡ"Ծaz<pW"d*/X 0ѽuPsydfAĵ𐢒A LA.0bfȤPjVJ|nZj& $ %c qż2sxκ+6 # %&g` s2oCOB]O}"q,}\ɊVl vJ:v !5}TvƑx?&$15_0ª) \{#'Wܲ1 ;65kR&OhN|,0X<I&2Չ}ŐdmQDYEYce6wV w~WmTAC+U\4 dT u91yЇF)HP1sq#H"-wbbaCQj2Kȟ8ʓ>yN Q5ԾUQP}#(?,kbO_@ԨFRS8ߧahOGĸQU};u۴__16HxYsC4]XYGZJ%8,Y>`YbM,R@A">xJD cCSdSb{ IcZ[P!UvB҉ihOY9-dRqp{ 3ÃP el ޺ 0O"\|A^+_Cf+ ob=(qhZִ`[5)$ n=dt+1&K(M2i1"IFT)x BA°^ߗq%@j4 ѹ~&C0'!3s ,Y1LbK2G IDAT0d!65O> |Rcӄm$]XqErdl;::~zxYЇFowװnH7_)g9I7 3I4);k ݥyḎ)p10{o"M"Zw:exoJ# T!Mac_}'Ĕۡ紶CjST$Ó 6j7a #z7Cá\lF1G$nb5*]G'@#nbsbJ&%XIL܆A)]8D bti&)$U%*ruaHmh.4IDZ{N;k aD5_9k˪luѽu,8kC}+x3bc@($vq\3{A`ؓ%jYc-z/tAbI {}'-r`X 됲9*qA~9r-+* QHt VZd5f~tstӔޛ.\8&'G$ q! S.b+{<^Z w}O/V~3˗/'[SԬX:ϯ⹱2x lf6jp &&X_Gg %x@-tr;po/G([-;uW`8 o}C6L4|J&?C #R'Gv8/~ Í :Vor1lFTF"">xg>T,@%C0ǦhۂV g` BtP WJ Zwv]%a$RΈUL E=~ⓘ}#&thPv.֨uKڬcz"!W>y/& AuŇ24Ac5pPsy8/DbI IBgʊ`WC ~5NTfT5-Ď99:chT(}|H-HIT!.+tj{PrE#cX%3(*dt* Z(Cc[R|n Tlq?W5y+נ*rꉢ4!&T$ 0_,WޔW~Y,c?sʷpf a8y${$)@_G0Xawf:M!(+) =̒wb!:(w>j5Ȃ&=̊eYv/iC2ܼ&ŸgdPhNLhgel6;Diá,:w?8/fzWo]뮁{ jd_SϔsO'>i?=rQϠ? X!> xkP| ȬNUR#sy wяh;j_H*ijd+=XBIR6ws6%gsBXœ8P14~9{o4]`!sn/ac6>Qm7@ePڻ\}|a;5:$U::>r&fr:F~8MdPTaPE&*d5w7if`M%<]@M*tpP^&/B"v;&f'{,l"rZpo@2> :adpvh#'J:2ӇpZa,&߶MU& Ȗ kb_>8l*_%9:A6U(MM\Lh:>Y ]B <ȕx]VKAՀ?&a ШP'%EXE7@Xݥ no Ub:+ L Q)}&gHol)d &!XU?٨ܧǀR" f ô୯>q@u0Ǧ.~_飤ð{4aR3S%V,Q~(AO>jH0B̶iBs B\gŲ|" q[M1iT.~enSuݎDyh-ЇƐ?EQ54v.9cӶhjTw᭯NRֻzn]wƠ{,ƚ?e{؇W쑇x]4/5k/a$cacA7#W?ks?eQѼo4 1W.M P(uH7q=?4(<:7 }= #!T8j4i#BlM[Qyh\xQsׅ18sr(4cQ}`sy:ݔY 5=Qoo@($s*O }טtQӆ}4)fi"PV:FNQɰ gll}Jd+CsǁʚgP CȚF,&Yy{ lQAu֡c",M$AB y5tn\A{j9 ֿ[77(s >2iB (CPE+P6"4R -DqI!ڀL>@>xI&+SVHb ܦ> I3h҄>2v QG^l6D*#j+IJMqD7mYmammk+vօ1wQ^xoiBй(G[CjXPL4$ä[7;maeY"Y }dX#[p׻zn)4韭.ť>H_T,k860L\;%cƷQ{O3+*J&8YbRBҰfMDSYʕÚ8w`d!,p @J96E*y1V h{W,qx.U&TzGq>wejWC)Z%(T5WRF]TJIQGuv4` BT&5 3&iXG5] [Cci>qv@y}m%zmP?ZH"4e_ ƵZ R2dZ]2JNy~esstNGWaqYU!҉Au1 9NGPE U|ium@=r'`ML 9h>Mzo &oP $}1dY#b ;sdUV`6oaߏ觉6 %K[E(,Yl*XMӂo7_v{J}.|SY:ڎWdWW|mѝ{0I\d ,lg!l]},⮃S, }.W? 9cSAHÄv A;Y|;MC YS\{Ԣ^iJAlq ݤADpo/!{$fBQL JBC:H~Z +#TFi*Y,`KOl`ZJ"¸@c+L@XHghJzhIՀ$omj8Gkr2ӇIc*^dB%#<( }V 4{4ؘ$Yf<܂JI<j{,C$<5E+tP\PM 200G'EJ>Qۆ?⹇p` $lEnzAmHbka+}?:!:`&,) >0"#|} cj'凌yBBZ\2Huk^j.5%A@ ݀R2,Ky7qGn &0I!&"A[[Plaj') H+nA2і$` #I*$Z:@u`L@5O߼ we„CpWPeAPLp(7f$Yz<5$A`MA$+(IqD0cO`/E TA}9G+A-ڇυZP&K"PPw DbE 0@IlO2kjV )<]BC"0UZ/Ӡ=r~YřR߃+[]B[b]s̞Xm#r=h̪+^$t b?] a&$歯cafHHθ@(I&<$D@d=G8!MT?e4 Yw뗱W YULam^G [xQos )r4Aܥ!7j5h` rߝ9O fֆdXH}LBz6"Ʀ;mt)DV/ܸi!M<; $QYJ&K*i֦ہ{*O18[ID ukO4gsd8u*_0;uA %p_beف8!L< ę,*lS25dAԨoB בt;HHYɝ2Q|qUQٝTw/Aeh n H8}^='p]fyi#lԑ$AAv!i:KN[T(S1 ն 44 #{2GPp̡#L { j/ M,1 Wm#wA1QP4.;EVܔ.~ {Wo] W.;/a}t_xXR#c:k:X"TBiBI$E4aAo}^8++['?Iʬ]@ب!vPzKbjMDG]1GP"?ؔ3J$1LED20@{#QTQG ABP9-t/Q$E&yTUۦB I& Rp<Zomy$/U9MYr%:d4ViR>1K&4TeZ ϪfPe.k{sV:;w;B9yK4ԫ 챁$O<ȡղb Tlu;̞+ r=B t*C#6.@lC0Fz:د2A s|Z"Kh8E$ M7(}Y'aF`h0edm2D`GOJ$hegj8["3s$V ʫ8[_AVst`&` I#96w ӦnWe^뷠*D1 JKPuG `$.RM#*nMf,\Ƿ_y[neG9`M-Fu]iIY׋z?zn T9`jyƙt_cgDEq]ĬB;ljH)_CLb  !j5к6Nu!^DxK;L Cn[[& FwG^ ㇘rfYGi3EU iH-U}QhsM 66y`Y)4*vn s| ST'') gsd ܇i>XNd\4636;nd jcxHbf㠢 wEՠWؚc92IRBuJhP %:HERluYacF-]%kÙm>v <"ۆ9:AӹKT "NץU-S e QQAU b1H :/*yBH1)"ixf!,159ik{jm>1PVI(b ch~>n&: l@1-?4@-JXdmT뮭7郬P1<|13D h_(hIW @afH2K $Y`=xT{ysWȂ} 6489:l!q“d:$)Cgs%>\(0 Ȇ -Wĭu |x7DAD$ia7 ivL$;$^JJr}utYs):7g?0v7\4S]]&ZAB1A4XxCm ';u%Ȯ_TU.0=ЇQ # ;{+p>(a NU$Q$< x"4C8Fwiz?l`Ns;!6pߣ( &* "KEۿz٣9t_ATۡ$HR@O?]Fo /9}uKrwi>_엎@K,I647WsdNVKP"**0G'6B unJ~l O loAckL@iܸ"z Z*lv7 &I¿(w 9kB\n9ĝXgʪ%cy]#jTi ٴ\yQ^^{Ok a?}>$]j֡dBJ}?a5iBӔ+ 4LQ+w1d6/D +5NA lԡ9)\<ۜDeuJdm"{j*WCs: BO8sm܆9: {w#c"Ē\V,KAx^Ԩ2NUVl YH&DhPe>'- ZFHҬʰ&gkpWYψVj`c!zrg$溰ĝ]X0NT{sk@N`d(z ʂQY{xJ$rx˺݂6@sz*@n!}(}aȆw0i͠xPլIv{KK(n>Iy%; DSCBȚ)b fbبZc[ 0x!襠 stw-z91#I(ɬKfIs.0@ $rX vZ{k;BI>16 ƪ`D'`7 lMbR~b;YDGx]^ DWc_$%/*O/<凑$ ^R5 i lB2Ldf!dV cp%"~V6LD|V5Zgl˜[M }y 3p7WނocW/aaf7@TdiG}#94 Qh:8>0,"|sy0Gȯ;8,a$ [YjسˣTab` li*~&g*, 3՞$IdRx!{eՀ HRX@+p[._V gke"!բ!Rpi: y\ 1SŲ1" F6't>Qpo/àjڮkצ-Q=\!%;MT`ƒЧw7y+B-LV p]Wސ$$~𺚣Ї(4Y0&;[tj*Ml-!wA0U{KuwF~C!Բ-E#aI?.lf"ۏ;m'gDל`o_wf'ދo8ҍkXZZ%=j5k&OTӊMW,l.@4)l50"+2BJhj۸-0`+O6}pW.?bcg6{]LRJMaw&|QsVw4F!i @Iro/!^as]i-,ف9 i)[1yG4HD4SEN&0<ObǛ4E{,A+Sh5F2Yx/ |$%厇 胣wX#U&!l#3{i@Vmx.M4~oc6o<{ӄVDǠ*bN{̣> :2muRj&uxGP~9tn\™4!9:Aվ R?h>~ k^$o5Wq[l B= bCs&|diTO̔I~%d++s] 5а83E[`ow߀V>0s8oc+/ ʰPziN_2j~NA+C9qW2R.ȴܼ Y7Q| :躨2RǦ@|e+ đys@IL M'*ڞ6Uio0G'9m:%1" cp, o,o-J_o2?,(0/}pDPT^CMqS$ׅjS\K8rhF s"Loom@P/|EƮ *i 2ZJ(p]H (Udom֐ۻȾw%/w7\.O[kgewjrQ|T F_RXAQ5:1@;1}ѐĿ/We]G kjqNZ U쑓ބ sKk;fE2= #ZkXhEҴ7,3ss]]=R`P"RdY-ر$N P$ #pĦaID("M5Y]U]ӫz|ߝkukJ@ͮ~sk}gRkצ cam24QyeXdQl>ZVò*UI=qЂt`Qqi=T$ks. 4X;&3.2u8ip'~ 꾫h:.P(!ҿ}c6A -ߧ.Odہ7;7H8"2S4Vq"Ip|5P4>x*u,l UX-onqiU=˭&1zQK8b $Sk i7^;Mg1;X-($(ȥiaRBE`YSMv?aYdmP;Tf~ D30-Dx.KXGwќq/_Cz+) ÄӜBҔh" |]u&C6]ҴΟDDikB A[2}V`OS VP@>Dn[Jg+&k7z>j]zzh Ɣ5PP"/tdP߭g@Dt<(cC)EX* :Ctщ~#5K]Am!`ﴃ­[xa VGo%_inLp!گ~՗>SޝQ8/vϏ?CJM-9p;|巧38]NtM7 diN#mҁa0XNI8hl8`dV65aA1Mץ^Ht8~ PӘV*uZX+xN";Y|4nu1016Ki,Ft TulANI48JN8 QlIOq1K*l5ZG:jcc+GLvZE$=yHX8Wł]m,."XTwn<| ӜUE;ZQ;tB|wo#Zk4D&u+áwOɉ_,W5_FCDue=Tj'脭IJ6D #NHsA {JI L/W򰏍SD{i.WTC֦f(l jݡHcj+++5+Ʋ#-2&jdk}]m2U;|Q^̚m?@:d7;2$hxw >܃aU}rL,dipju[m.X%, i n:{8)j!i=~leH=xQH8Buj9w}DHSlDE@l~?2KWA?:brJ/.D }ID[xgz3;x북q^"_/ӿm½5zKw^޸W151,k-9> m5k Ҕcf50 dp*F* wؒebq yU/zįl&!I{z5θt*;9ŷ^$3*X 2긖}w%Ӓ4(KiM%r x︰]Btq@|BEġ:h8lDȃ:is4 ;W+NUVa>8E6$Bf)ws5R6L—0YϯLcji4O7|hwO!"IB㐮2K!\Q-*0,)E{iDۏaJ<<]9!pJ ίTpfp_m>61m)crz(*/~%4C~VJBmr4UH3WH^SQH,II|EkRQxy R X@#-d"htPzY+Q6D4"\%~A!mPcAHZG! Ku%0ۚp*NI |431 {O!٫Ough3 m"U5ݚG&qu 2 bb7[6DP,8K6H)T!i YV zCEuy!==B1 +( Gc:zE;6n>(SдuY KnaQ!Y(-\xȦ`r*?|wvR|Ώ=??I[goDF?xٵ8(|B0DBuU-إ L׃Ḝd.,żԎn3!@MfYdp玪҃_a8=H;#U@IѿiLCJI QOBϋ+ԣ]Z!O$1kB;E]S E9Hbdj)m* Ŋծx׮68 >PEe8iLDN̴ch|.r zM(Q&KQ~!a̬kW.q5@e{]BO1%F#D{HZԗ !/`v1K y8BUx|Y+!$wI[\NK&,@^Gzv<O]@gGF7ZP$ 'NicdtUX&gn?eOܩJ;9D`7[&ϾZI0z,Mb$[z#@ 8S3ָ;f:L TF]g/axKj'Q㨋{ݛp../Ρ̋nҵ}o<(?cܜx׳K\_;| _mB%r*tQMu0@r|z?EMEO6(Rl*EKEE HaqBvDrUELRW>B\LڼMDx\+m0Jwx (}rO@ji\=‘pz$Ai 6EB z:zݕÐρh)(1I]xl |Q$)m#"zPl8Ӥ2*\fHovRH2L>%AIL`m:i&U{ҝW&D"]U"=>`‰)#nTA}l&( oNK0;orxzz h~:ighdzÚ۩^ߟ0 dIM~ޤ)c \g2fbjC\Lg${7B) zN(UyG3uPhU*C')l`.#1, iX0~~#X}"'?yg Wzф[&/Ãmnmc]O'L_vͦ;ݴI{4gU ru@a"SEŮN?at$ȑ[FۏǝD5 B/Z24h]-*Rصu#ħw E3 $v6`z8<2ωV $u}4Q,*!I=!($Z|dVH` ~eYJ5~U% IDATt*Hӓ(^XPPX6g*8T\&,˂'HZŪ!!¢Ȥ8cpi`2'¥=6kEap4-U ƦD _C #!-e=i]7KYWԦI˂hNtLuՒlܾfjI><< wn˟~v/'Qc!X%y4.+g+ gyp@Št(ÝQ *"q0+̣2K;HiIO)r0fHJp3Jg_ΤlvbdɊb&Xjx* 0=6^Pd͆q~W35 ovY/.XatJP0Ai%kP'63WuIPEc Gͬt7)AJp5ׂ-*ld(m89X@o)Ri }cPEpmDcSop*Ͼ}̼ ~{h 햻֝k.~fn>!8/zϏb a)7~iDPP&@1&:!4e^ѐT=%E.|0p%cqtdl_t[uO!llSiۄJzW5vWD]U O+O)ҝᬜp9SwôN"`\ N]4s\ysTg2 NS  wd :p!-R5ѥGƸ۬Ms C (Ak00@:0dc^ۦ&U!OMTLS"ϧiȕnY:5D!9=Ar|;8 T|عdt̆2VĦ$WvӖӦp|U y4bƯ%p0=v} ϭte Iu;\o#sT0GEO&^ j4`‰L.sL;m[jޤ9Azsߏv=u=@ 6Iezo~_H=zaHA3!a'42h =txz;s/}*2"aui@f-?~Miw2Jo@].E8B:BP@]͐1 KM@RM#Q2ʌuuW499b3ޏ•g9BD#*kYu!O/s 0|x ͓Q 3)VE>s#W6"[=E)oNG&=Nc>z!,\wN#C;/{GW>Ώs[~c;ClYJ6 i=ZrIꡨc;Rp pĚ/ZlNʣ :h.UrukGCzլIXF9hI4a*]5Lx3T2lt3^9;OPlGaqx[0 2ĬI&!#N$;cN[ 4FV J!w1|pNc+OӈTH6<%{@#aY+g[m+g: eSSm 4Ad P`D9UBkeK4],] >Hbn}Aҁ+i|Uo^ԉ[|4DƼbR780!ip< K8Y`28ok(U^?`~;5.]#"HP.PH!*D0 /46sTmz(3y;V#~1w, DZUqPG1Zp!j$^fPĚUźNN߅]*1Kk?#Ƈgq׿>[)F=Mm9 h洚L8g-PR JD4-{"X6oLOQנ2;8g]*FOJO?h '(>b1JO?o~C([h}k_"WQ~ 9.\hO" ԼP}E/[_G+Nq3D͵ pM3\o?+Cw}^C;A_/֭GyXO9YKk\<X)a.4cΐ8~P72*FNQw(aLU,3;;V1Ը_w ǃY(ȨSh< I,rqɇ*S"i. (3~ȋ=wtf<"nNc>gjAl#kW&0TO6MdR89.ȑ^giEgLKY̓M*e/h:(*В. 4jNd킏  Qt K6jdJZ;dP; qi0"LqM_ZϜ-Σa;~0H;y0eb>?HA4И[Do]5nҘۦ=~5$ɀWgWTs|~,ae k%5!mI1%Gҝap Dp{N 1|p%:RHkHs7RoBHvPu"X¬[KO p&$:y;|t G`+L>RvMEQYńkEQt}MҘI$F FdTkܹ%'*jw|;?]^+"m Sze{>aFW)FEN~}^FRD &Qj"`g:( KZlqPt OKן麘_Yl40ia.p!BbƷݟݩOn܏~xԻ~kq^\'d^zkW>7?SX\yxiz6PZv&ڜZ:Y VJ.XjHwtkuEN~M9p<[)$FU[䎩6VQ%BaRoZf DLѫT5CatQ:@\Eqg.UPÁ JwȲ e8BKsM N,JSZD-DUAD 6GZ2.~af W6*zMֹ(KݣAtA5ؕnѼnrAY:n d4GW|P1Ҏ)Ey\tR-4B BȜ6vѬ1qFƇ ,F@T ǖJebh\\:Go2Z]z%O&9~pfj:y-RxNLIV:VF#8@NIiEAJO{c]l18&9l62:{XT{+fH68]ZF" ){ 3 ^,-*;*{eE$FAUNb 5©ϰm&M詆ޔ6X,%,0uEezvlLwm?FvrNc͏ 4~Wxw?|a!uI!}$Brwfa1NY #?E`xr2 A"9P a_@p]^U,e֮MdhũN>~s?_.\8/v*[J)!]oGz9QB.0@#'ݜ.hI5` vgk8e'wf=aSmRI*mfQGIᙨZϩtć{]vt-hZTU44A2)-"Pg>/zzԙ' 6 q0MuۄSԐ<vɄIwz:ѵ:G0mYuVYu~VU C 5F7ɑ`ʷaV> 0by+kÝY@n!BJA^hGN! vsi]ti |( ׼az~Y7mg'$XeOeFiW# E49 ND䈞u=y`Q.Ut>.WPҌj ȣ7ffP$)KJe8:pbt~G+>VJY;ǟ?z~_?O>? ~\p~e>|3g||F/|#99ż?=ŧ˴E`nl=N(r*vv6VФZq80 U\"UJܻ4]ObM3ӂkMKYBaq.ww vWctBWl 99Z&Rjd|H bYl@ݫ|4渰%v\rV@ P-s8c`b$BQG"3 "U ‘*\3E && l"ZzSd#$5qӦ`X&1 IVHr A\ 'J$qIEtG&w ˆAdj2XƠkϡ|[k0l|vhwmsdyHJ r&c|(|EVRDcmE  T!5xnFJZvNTKI\؀tqOhy؅"I R N -PtYDT l@;N` 0%4YEDG%ifaE8H WQcRK6ZpHylЇSoƟa3%+6lBц_2_\a۰ :=Ǫ s9̒MR"L mFȩ1I44;ڝWD 'x{zC,]X5&1b^F5\PPL_XY#zH[斘n"H*Mώ%7y')LA>A%9sS~&Q==*Y-0 uFsޏ0r<[/2 ݛJ?C/wy"Mp6;uXvto) D׳h+דƬRv]QzEX"{ܻ ZGZG(lWG(-,Lǃt"9>@?iM"̟uMK7*=3s &co)O,*hbVpْi)t>n&$F6aWT Ӷ/ V"%)=0R/LG|KdHfOe$1?/c7q]\@mn"+$"J } ހ]I])Н%NmdRRdqsN߅6zs5 )BUPuo nbx;9ayϏ㜳g:Kz/?U(în< !٠G՜<ђ֋ebj`Klшg %)lf* / SQ*4H5 82~7_C|t@X1ՑӡNc"]3Zf)woKY u;Hoa;KNUEvۤ'֩T*̠1\ERD^h9@#`k%uf(Ym1dS*V8޲0&O=ۦuO{,|d⣃1qTC]cTjv7Gۜa8.vKZΔZKdB& 6 v} 괨ѶNN1^=q " ݢv`y>jhK4pOn?P95vN.չ]=mԚFu m~ax{\dL5'i::Ȇ n=9NSÓ+cb.G;c# rW89;;MՑ{r!99Br2S=q旙y) I'c!u5oǟe:`.p W[Yv}6*_wZcW㤶~<̚sLۦt7Zި鍱&NNLaHrj7M|G~ _|W+է?7RsvϏ?m{d?m!H|ipBy݄|X %TQ|tMTh2Ҭ`u=AS]ـbcx!}ib&% xg>17GxsKq(jzz,#]¬YIŧdE )qtŸKQ IwT U,*-`WTNӘNO=Rd"Bo[XbFC>/]C|eAIQk Ӥv|TiޙD>L&Ap&@$:MAѳߣMwKEDa*źِf4 *8x-y9U8bݥ]Tq''1YԔ3WŰ.uQk@2dB׸B⚤DdXglh8'KXSIcd_^C9e#v} Zf7Ƹ:=#FH 4}Vho}0m JKSHqI PZхm4M=ʣ`^*AdKIL=Lϧȉ 4:ӫp!y{!ᙣ}T/\yV#y_: zpSj#01%χӜgTC]wߢ ZBF@͖f"AŹ1&hIGH;dȵ|TBK/-֜8(\u^fEj(~: :4 x%P񺅋Wsj]uUV&6̈P =%‚wM/2Mc8Q̎ :Vci.nDIiE:0ԩ"99cn#c 06X7pbdBRJd>2] ޽{x4Bү I T a\ \N 22&|J at>fS ZU0 ).V3(@q!4rЇ 202QT@rrZ2+Da.?PErUߏyΛ1c&t-g `Yh_Em4 L 1&7 QHmSK}6NUM~"̢ŵVPx&G"$M:O3C**Yބ)(1!NO6 ӀGg 2Y 8DvΤ  &yWeV>seѽ9lpo*(MxsH-W>4mR6݀1mhzo1P~sk7ooa.p1L%3PdI꼫Oo$"NT{S#!az[fh:byPz%֓*RYaept 3S^+xcl8C*T\|Of_Vy8/vV/XүV-B}*əkZvh_SvԻbF2 $fި)(`GDpNr2]-Mck/_18=*ZROP&m?F!XRT%2Ȫ]"*SMfzzu:C?`i<_"?#̅F$PäشQB=ـX {$P$K-,YwDcpHX0AwiDvOy,>orj:XYx"qR.]CbDJ-3(˼u26Hwwf(saYK%WX,Fӝ_T$lHSmt 2&ƴ.Hdsq:t5QUa" a&o@r"BYUªLOF ӀQU*Qu8-9޸ƘDHaôa׳3Wq! WM/@ѱc2 m¨< 0{2lb*95:2k;4{G̝YH=wg8 ̰,@?.&]2 LXA@#CNBB$ M9.^7&bJЅ"==:aR1m:t$'T8MO%k.%4q/`ܼC\8 S\E*WYce1~Mkߓ2 pi6g7$dRHMܳ4`$ `8tmAo|݂G(\>~|*ro[8nL,}8/|X|+k/| nyy'];hܽ\ATRQӈTsGM/:9K90$FgÂNBm$͖rh)xH[!F:jIg qQ|vB%.4n q96Gַ %dai +aךl!"L!"Ej .t0Lĸå}6m:HvA B(H-"I+R 1y;xjZN! v6E]RyLHdS]wH>yHJ9fP.tbmNHg `]H& ]R*iSi +9d4zB;TFh(4au몮U(R{\zoe ]I!4CX;_z"MCib-6;`vOƃAp)j:se4E>!>%] X*/5߉n">ܧלawv7VJlNK=Sz0S4O4E_wٝJiu )=$Bd9V*28`Csc]6QV7q|hsbM>@8p] .{F U)m|ZAaEuzc$'pV/kx~zp!~:{\Qcv{Pk_˯} g_7 li4{Ώbߛoc켍 |kY%[Z+hW<&ӣ\9[wdyNu#XA7y&7ꊹH;&*bӤ qE!L@^NFy:%&m?&2hse!T~h1 KQO1i1L٧@NRǃ3 !LQ&-3GC~Y374:@.[&%A ;CX8\ӘFr|0P 4u(u4DrrHB5sr5[ո'FMXͱ6 f;p+5@J"F GɔK;u񩍔fz)oL ۡ"]ƃb75J3m!@r0L 3} BM9ɼ`~b4_e1@m2@MXkГ0UF!]LkV4u1֦+m4 eypO%-O;YNi`:~\%zviv GɋL>Umd|J''o(FMzdp3s?n*02M:428.\%FtꆚAiHvZH5$G{߇7L mGC$qskn< ~ ޤFpLa^Ubx7N=\ĕUߠL sؕ +GAi=>܇z1$aUf<29S 6 Ӏs28iDr|_mE wCxcxn۔R~=?΋ݿBh^I_LT:|405M6hHp #kD|D1C/j`@ ފv /n=f.Wp|N +5k[9 ulvsV|9Ar_T p-=("HuU*UX}"Az7<b<~w.'v$0DEp%L;bCSS}D<WǼj a;0$~h9KZv7Ar39b/_G"w52ωՙ$f-"ۄ>"hR#'I/)vĴ3c$G*[i~.>T2&:D "[:Œw ШY@a;=Ѩ'wބwibYΨ $Vs'} ˢрZAv4 cy֬Cdh*~?t)R#@~jc(hDB=Gcن@XGWO^2 m$S=_H[H{]8KA7=FQH9M|EKpgA+-#G(^}''Gp-2\"B`CD[O!zo9JJs2w=4E"Il  8=o/ 7͇xAɝ4&`B&XY <4EҌ[{`/<B S|G|GǣdՅ= wfop6:v6 [sD<-ocs*{e)P&8/vѣ70M?gÀ;5wf8"i,7uXMt5dzhۀ;)Q9vD݃Ux +K?9LbB}iNvruWKAm>tlimC)?OAr vD4Vk.LEkXD!RatGǺIBz^ΤaYZ i#ZXtHZ4VOV׎fm=fgu8<:Lx#:&5X_Inð,:G諬{\`.5R[lv6`+e3̀PB8]]T!f{Gᚚ S VeuLq]06M 4Ka B"XߵZ `=U]=?"F$ё? (X'hs٠O^8Dz! F>hvo{xUg[;?{|zsKaï 8w/{vOe~~hf`e}1XYG|U]9:(+& 6ʁ,DzK#$x%PoAaT`KS ("%u`-ף=jr6b5-4rL8(!-߿qwݺG.F^lW?nsвUaj}+SOiF7x(\RQXyiֶ"\4 7bC&LcnY{__OڇI*Cś9&lm"kS6庰7wJ'06;>Ԇ*X^#/K>N񓭍U!)EX i*8B"i S"mr2oJE<n +on()8YD%h<dy<'%$[=$G?q| ۾oνmWdron1ۨ4FQ]62zC7m S_:+¿2 IDATCIʶ Rxsx@U(2Kw)zm0Û]+jVNvyRE|.276mL%E ;'?;s{j'r)S z8S ~?}U8z?/.FV{خ=NN"Pem"M"2'`GH\$Rx3sxe i5 #Yi:J2vL(nFk*TjJ1S)7_) ԟ|6y'(ߥ>Z| U &5~!ɺ*U+MTT̡zmoj%@;p񿮞}7{gn+aaG5~O|Wi37c[p%RJ+E2*Ԧ9t4bB]IsAT Aüߣ4%D.M<:Z3\DЭTW)i@k PotiRÉ^=]dlW{R {VaY.2"2П7FQnd]> )D9Fu3$a65ě jc0g:0fHNMC%h><V*5ybmkB^#ךC>LY2a6ӷftZ*73GEvA|68)-iSI1zQAOwee $ J&{j%n{Jy,y X6&R?h!\cŠHUKe<tgO96 B8{PH[Bs1Zlٵ,U(&M5OɄ`j`{)UH&<$x ڇ!kr2A.կ&/Yd%WTD D N}utkß[@1,h^Ji)cXPjXr쭜%d-sp}ӶBgsD=5$s$IwEx5 sK}"w&+Ԁ% `HIo,`e?o 53\Wx;Zj֨`NMYwPrPyoށVP}Nlňe'mu-Kpy=if~Qi@!*P]ɀ›]_,:6nvG=9>k]ܕ}<,\~=,v:S_ܴ- Dg/Rڄ=a#,LӚ2=ֿʿ-&Dt_kdb3*AljÊ s0,;MrcAMCƫ@)^ofۚE6 fɯ7C;6qԟ|rtf2J"P1]]MV1NC <${hEf)22,&%02aJ&C9"<{ !35pg'^?[B}4\kz&+;'QXV"kwޖ -F Y#aơ<p-`Â] `I+BNi2 bgs2= ưK>]Bv RoyioRy{0%]JH*Sci(;k.C&< Zф\N![C>˜MgVdq+ cNi&i9gL>;ˆ7;ߣk5Sq>D1^``¥]'G(vˆ‚*U m1tt׾RG>hi ΛWwcT).s.ӉrӐ#_@` Z>IaW.?Fnov[7hВQҝ<_gΓdlṞF K3)בS#޾Gxd^;N.MRb` dX&fZ]2M{E>>~jJ#c-:i_쥟ko?=o/ZO*~g9x>fwd8zX>,v`_fO?^?ﭭZ+(S' رMP0'p|2y0RdMiY1q8F Y3VDΰ]&M,Sc^h`M@=b9`JTyR $]e[)-BP{˶A,,q vXE>1;]NNňɳ -ϵ`|&N R5f >ň&ZyycjM+PN V9 `hscxCQWr1©֨@tt]3$;ەh#A653Rp'CMTH XYgkN7l+SS/24ydm1!amCe770(FcJϒuFʭ98%̡l@6 T%2i +i: Ad<&qh1$,'V,[{&T2zjQ 03-CiM"_Ux1c 2IhkΟ[&2+f06N n}J;R<$,C`뒤֠($-ɽ/hZ"Nr50,y/N{JhLY$Xu,/d:hAo@PJ`y 8`?P^Xē϶L7; X\aTYdt[:, 3(Z?#(FC_Ca .#{p*X޵bx=SpgwزhvT+9K+?\U|?a>N, G7{ۨ?>2\t.u4]Ʃ֕P(1B/DC]à0!Ʉ N=.@xj>EEhH2kJM1UmQ8$X J錾0%,ft:%$aԕY_I2 =i,ǙHc!i xQǔƜfQbb"bqMiHN".N!i?% ω1k|6ƛ\ R?}81]Os& rN7Ge< o,mXwpU,d?7fI BtڢRJ E}p@+"NYqn֛[ixс=+뺶~VRzK]чu< ɇ؞?Va:A L1jX1ebd MxzLfW WC)al4S܍w(,KP %\^R%YXŚbjȣל%:?}eDwZ3*wH//c7 0G>O5-(Q<^oĈ42lHu-}?mGџd2Kk'X1Ͷagy-)E*)/hDާiL [) DlN`iMy.ŒwZNO-Yj%3\C5qHx2=Ak^x= XXei]&i?9KPCh0 %kE-ATH%L AWB6ɹI>@qbWsl47WbwW~sKv{RnviKO#ܯ7( MZx\r=7i)޹`qmmU lbmX|_GdgEKw:µO$ȉ":/ɘFR(=sNtQpb%`uMu8)̲ 9ǍV0x5(oނ8WupzIɑF;՚ƟeOV%pSMb+)(9}Ծ'm榦4V.]D* /@;{,=˓]fiéT%?]&/?~F(,{.lFEj]A9&Eb_ 1xg~ة=~o8?0? x:`Pg9kŬS \IҷuԃUa!Fwo!݂ϜgLxF7Q>$k )ʂҋ#dG(]FېiLM!}Hs[~W!]š.3zpNuI[g}Ҹc (ٞ; T2ɪY>3Ҽ=|`k7" Ojad=Iz8f}qLE{p;]F9ךϵ֞0J=".5y"QZirЄ/uNp_D**aB( 8( N(.M]eVO}Zn]Ga5!Y$;r:b4)htql;AFstmt__|!B54UQ~0ft0~\?2:ײ-x9=PY {MY8ÁHx ;rYoB+f0n>D^\ϲ .Klᓐњ$z4ļnG>p":/~hHGS; ~Uj(FC u (L̊RB,Is&͍Smΐ!uaQ[7,NHެsB 8!X-i5L4Y'1VE [k &jη4эyH4Ͷ ۇqMXڣOD vqƫ6"ò)=v485Jt*UdG<"-s!X„ m"4ٱiS#`քe[|wLjᝯl00/poj]')K4AJʟh |ʣf{)(r=m#/[Ɲs8x4Fg?_ |4\+7qb+a7?kPY֌Jdm,ל!cZkL \+Ug3KE` aB>:ufB5Rf6uaSHvi 2"\;kb4'xFTJ1gAvG<.0X0AwqYΔ= ϥq`Ԥ"k'h.#L⴦ $VĐ.zVGz]ҧjq_d\+j{9Y;GUe*LS0q_LWh c3borp-b|F-PC|NCKgt&朧,`\E29^OM[XscWj(Y[:"X%۷3BqN@8̀h-T*ȴ0GlNRfST'R Y77hU&Nr~_lG)#ˑlǨ^}'% ( "jr E(ȵ馍&|GemUe@iC8.v?HvM3早cbp[Sy\|0Y_&MH5:B/Yg}ßh%Tp5,Y}'w1{ wߤUw5H@uNT*hCBUTך!㞎6YCu tM +%#l'Bx,yr}`p cigI2MN5TitTے_@.#l??8Q NASԚzHQ ˆSSangi&-Zk9wF7u"d}Gw&|Ѓ?;%^=׾0/Pu,G>{[7nb#S";rmI2 Fi_IZ&ϞCQd)LAS8@S#}`^N&IѹKHjfہ?;E- 5yeL嶃]ՒT09ܣןZ *KLkvԍc&V0($ĭrܱe+J:rJ/!!鄳LcJQJvh:q lchC-&Ml!޾'I'(2I:37YylR]%"P:$NIvkN AyxP䪩3M씃?3@'MbX3?fnkzi ۲Q)v]8\W>SN%NyJd ry(voݦY,ۦ|U&1z}ًpj nѝurWxxIV=aʌ t*5"yB]:1{eI U[ښU2R}dj* H.&//$@`xS$r IQӘ_n04B'a.>Bg:[ir<C 6~,G6X&XpB) v.( kkA֍ך  ħ *]2d̄RWH YAFhp^Y6?<y<#r:uԟz }׿Q_{ebq75 %mjc"Al e<[ zԜ]/DrZ#hjܸV</ͮ_\~31xd]<[6Oz"~-FDa,&Ky4ۢMBfЇe6E`y;K߫;y<8,#,//׾9$?zXq nPW\V 6j/H1"6ңMVTe9`SS_=˂!FtMMzeLJn,}T>N!Z1a 5{:ԃn&5:CU ]Yן'3zs!UcLS(xx5:Q.D)n73Oezr<`Ng ٔVrH/~kmͪ[VDqmqjlZ.=(|"w(#6kB}4@ń@X! !Ư{ nql%XmG  /|2^칳eL&ߩtb&7AY6M'͎)PUr>hS" `CxYZg)i)6nA+d?9.@sD.M=LY{y|(Q ą/A^}{Zau6y`iESŒlr qj Mm{Mٌ[ jG9 %X$J!OH)z)BI1e)OH p@2Na/,#޾GF bLL5$ӑGLBҵFMe(=,J, D9lj W-i#Tͱtr#֌%jDM$AEti){VzȐ)bOЌfNU—^{hԙyit8$W e+nYC{sK*',a,Ov'12]E4iLY.n&x4@x2lŘRq&v=Ł+8e#\VGbgYU1P$A敢A>R<O 4VҰNDk)ZԨ;zHftbLe+6ARY^$%b\m9c{H(GÛ!+R*Xk^Wx+<֩Э7ڮꁉ:]Eāe*@5l XOy'Cư1_7uP'4kP4Hi140wj]IuT5M3W2nhL,E=v5='N$sI2EAEуww yǟȏ&,UTB^Q0 H|ȻǸpMT.?F)Q{i  xz $PF oN#evdQ o\hVݼhH^y+23,LYLye"1Bd Q ,tonirͲ̦u oݠ-h010{JAfNdxYY~:g2E+5Z{ӝijgLJ[ס4H9{^}vT(F(SVք}ҦgkNͯF@Y"-kg;vF C N~&bx3sh\?k>QYw~v!~p_uNa El̖?/;3;,mu$ ;i#XYO߁4ÔpkwbZEswޠg>H|-,sMD#94yd_d|֗YN7a(M9,s* 4EYhZ{XmO}S_ﯕ4o,ۆךCzгn1Fѧeԟx,76N߿MX61 M gLt*eFpu6uTxyKwj>3p 8QU!=x wa!-IRP$g2TWkG#\Z“3cf""ʒ K:.h%yUؼR֔BI<]_z>i.%,yPD!Xg8LHy2&׿!p3>_XۜAr p3{uhy x&A*UDOPA&6g,pMnM@”6Qo=@UH=A{;;Yx&vȺ4F`X%X`a"G&?[ni}ڿҽmT.>p^4F> Ed:/~}Ub4Dvrnߠi`vrd*1L"=: ?,|?>Lg_[c :/ ޼Fxlׁ)rD.ľׅ7#,F1 w9>dBC,S@ۚPtEGvI.eѹ˴brXI{?@֡d'pU*#?8»X \Dg/!_~Q1E4Fr>A DeQ&(GCK5!<:0b XZ/׭PjL[r!O> Sh< {iOg ZG%"NFYr_pF5 ޜDHwQ C2F/vb+Ɏqe9 D?@kfןć#TX{}ӟ~8}2zk_l![fk3A]:I,8Q/jL>S&2MQU>D>:{@rH#g㕎ƖFt`TmR'wm! _V!j] F6Ue5.$ѱIxݧѨ3mG$ N' h:e-9;)Aӫ2>TJ,So2vH'U<L&0nÇz?CK~7#ITma굧iZ;LcMWx$BLjs\'D4E5jCYКL 6|IR|ViTBa҄+>)e&2KKPYb9%1<B#mb0E'/V8uLJvNpcDU8&"f0&^6&T2˶U^&1,h&9$[wa{My5+x8ʴ3!kEj{)y@NTJ3*HeLk(S/u! q) {!30E;oP ߅ÿN-Rj:)O% 6m AH5*Tͮg>Hui4; L%6BM>bL 4r=եtA˶`(gq<@MCO*YlyP7z$يQ7x^?cm05&6>0i ofnvlyq0,t* !KO9UjŠKԫRB:e"ɔ h_p jlr F) {w.hr4>YMҝy eLgqBX,i#PU#TWNI`u9OҤy)/ciR8!Mׅ:@&2/ҔxX֩aƕr⨗!跙-kLܢU*3oݝB(( Q*gM4J(E9mZi!7;"ɇ`ݼ[`y MҴ m]犼i|Ska*l@v~Q T>-!* Kk ^~EiՊKQsKx}ң #) t',-'ȍDDAūȻ'ju*5n*Y@0C?BL6.ПdckoIOhЏ : y[TG"xFh1X%}lmZudY&0SECbOB+A X[OuѿaboN%X6x*n bĬ"̄Zf*;)rikV1"\99q,C kG9ք?;5Stx V:nOI a xK:Oi )2$X:u!t "ϭ5a913<}ꐇUbcKר~£OOi; u]Eg/k!cw4{әSzvOv! HlB1BH $. 1HHH\lہ`n=U\Ӟ\^Ni.tj1WްD KSؐ:LAՁK]&ƒR\l5-lLc]=,&r| Q U~gɋ6+`ݓܶpu V.+W,Azql R+4Hj:R-kXC LeL #,Z)-F)&K!f8P;| H۪P"wD5{-Oa9%rxʺT|̢5UQk4 VQ $!p'6dA䍈ۈ6nh̡Ӛkj9&IV`+ K看1-ub0FkLA­=P\]`wmGm?98]ܟ |@?G1ᕓJs*^3Y&XF< 6R4Ȩk,`t >4x̜suY+kV5 >l!Xqk for2Bv@x:3_[FQDCIR %i|:Z\aGJ*?aV|_}GϟUkkoL@:$ab|E􆲄4~@vPBW9qp1)H!\:p\+?SdU|J^xM'\ٝ{M X㥄+*A֭V]nÕaSo:Xd5A3Rh v3OI7O s|-.>{g(f'F||sؽy-Wý>L-$O`/*'= áL v7nch^@WP5qiw_;=rpꌉ:?;Fv4@|32Bo:OƕUIBXU։b_6*KPPAF#7tt0l M8])B)B2ӊ3Z:uyZqv.Eu>]gV%u hZ Rb_]R[{Z,A69`n{uC oVesr\W)NOc%EJ"Mʨ_tuAzӅ^D)τz:Otk-4—| C.W4n4.J"@U򫨒 uʦ@U !6gC8&]&vgpR \Rǜf?rG0Z7yeADL]xu] nDݛTg,Ϲ0m!ڃj nTљ;/7#;/uE}&.Q<'UD[cYLlYZa]K5R hw(g~ O~N%^&!Es`GJ.ƭ'8Oq?ˬՍwth6,[,)WNHd*M.4t:9I ??9ڟ+iTid2+f4+ĶXNයkMD,u':Br[]_B, 8ڤOPg]JS8֭I8 R dHE)p3oy"XJlY PΦڵjc)Mq@Pq!#Z6čbu=b2 #dAgHcOpXqu\g sN Qt2׿%5ύb2u5[Y hJ4A(~Ic*7Ig D(g¾ v>є aIBI@u2gCy2Igd)J1JPhs-h[ nZ[KQ:Z8N*MBĴX5PXrO.L>n^w@#i&}r秀C+:(F5]P=ͳZrÇ_)p@Ҵ8BL(m,(!Ȩ޻X@2͵ (ŔTR, [Qd{9=q|%J=XoEHXkR~ 𽞝6}Ji#BJ$v^&?v$=x g2"AO5]i&]ϖ0CCT҃(FW_+KK}s\^{>t#CAmX^or^t\on C]rv^zvn!yܴmzopg:¯$h=J<⹣z=|S>/fd:E&yPxGWΎia h%1mhs'D1vlҩbuin܆qRt;௬tt13*r<-ְ/aofMeiV,I,X `GW!,!+YGaYM-T%tpiZTͧ: hyYmXN\:g$i4܄|8e;]cYCKZ]t2v=TL rge&R/"޻Ղ*?;VU녗P^#\8?%헗"˳c^u$*`mg,gLtI}Е ڠԉ{4{ `>e#Hah_\7[~ւ3pQOwt;0X uqvvF >A .4Df;m$9Ap_ׯ{q3̗_EP540YZ^4/ǗH=od6kMo%mQw5铯{}D7 v]GH<@&pyuD+khݼmFqpDCJn{D{PTVIpTMw؜~Fw?e1zfJrBrA\M@M͢ջFa|m%4D:~ !bzT(?T;.rKt`uI/K d'(g1.?;VB_S @H7qs}8;Zo5s 殧vyzb6S:pJҒvJ+,g3'tuErsnfձv}tH(2 k):nk-i!5ˎ@qt|%c|]O?hyYͷ<:DT^(pqPlI-&D`CG;]N=,w)&X?]`[NѾ}nٛEs*Ȕj_(2 ɳGU(.ZMӓDl­/ Es[X<7(;K{ߦ{EQixqK!;9RęM2QAMbtx9S/?xjs{wTyU5;޻xGy/̔w{@SuMP@xmD{H=$S*^98A1o&Iٱʵ~ oz'¢4K2$8;VN\Kp'ۢ+9˲>Oc}~X ͤ;?\?B׿7D p0 2DE4. e(1ORC}ճϜ'_Fze}+SdBU,'[1Xߜc` JQ~yh"LSHUsY;pVe>8-ԋs%9 zH?QÁ$,h{]jHs\o{gJ˚ , ^XC/` a "??¤WtWnjye2:#ҋ(.7ȠS/9T\Pw|:%'_&/y^N'ݐDK9cR:w@c:eM?Q M#ׇШ;/ӵ)P4TKu,$!㗵5q7SaBleA89 H.^l(FMOm|Ʉ3"0 6QIIgС1QnnWj6)KKg:"%Jt,[˹,suOJJUuZ/yUU!ڹ{/Xpk[&?\1Jݮ QnM b%'XrP#ҕK=@ ܍!7?d\&Q.5~'u|CL_"ڽ-XC[fצ` cfXԌ7Qǩ}>3t_$VE#WɔI2u{p%,p7=?|'~|`ae+a^1")qÐgj(*t?1_ c.|z(t!|߇y}UUa<#MSAhRwccQYh,O>{ɳǟ h:-&jŒ"#L2L Ѧ_9@lEB%IplY/>PP/Yyar7CN2bؿ&骺"Ѿ bɝ*,x p2tY+'at%dl/Ef-]f2%݀";zwAL.e3mi2Sw08eʋ:_Qnm f IDAT1Md4( `N =@3MXLM {%(!\nUU@|C?&wty$M>|GYNFX,CUUNv0/6tIb7:b.~!;>r2\'qo&IB)\iRIqN3$3!1\<Їk^;tipcZd(gڐpNb D>3ʦw7lzBF1G{i1+ųʹ9&ѵZ߆I4ދb!-X\O5f(%?XUo:տiDpb;ZT)-F %uݸMIRUY|qt c4$r> .[zD`m' ˆRFr8N FhKuҫ;em^+6<)7`2&;pG]SV f$ 7 )Ҵŭz "$mA 5Jt.Ly 6_P!^%L_إ~MB7T5N5%O dGQ5#Jr[㏶vh)KD{7uvwt rɲyP5YJ&XzGso =Bh_A$#U )<%pT uDZCuOI؃>/L'1ep]dG"F8tww+('#ᅤFGp#9RU=0T֮G0|=kI(aKɧڔl3$>᪮@lJd"*IT ?CTC^2B0޻.q17Qzqqџ޸pAۭ/N]b^Kt72XTեcȦZZfɅ)Ѻq0!}MpZQܦQ*I;\y{EcNBBz9&?q|( B'jlvnHVA!S,^6EV\cD!,2Η9$8b>E5V7CY?DsƩ 5lWWiS/㶚rlYw`mOX .AM3KJ$֬2_ل,چf)s%s釧 +E9ئ,QfKd-d ʻCEzNҟf  \b*G;5A4b켾w .r{+|S[\p*[quj:Rp=$҄[e񷾎tVoOKF9E#Uj|_L*c>0 -(.+>|F q4%;ejZ8xKIO2ⳣYR\Vs=;`vxgz~vLn U'(;awйQdu{*9:l:Ս7憤2/Eo\!=zu H`m ~ Uj&YR#:6kI,L";;ȎQM'hp^U]\`G.m2g"t2YԼ^Zab23̒7~oC*Ƞ7MxE'Oa3皦u M^iS "\w &SLܸEUGK3&3 8~CgC|NnH1K\h5[&eEcmtT7\J:\> T*/.ܸ>K {.RPG* ݔ D.O8Wg5١ƯsƽJzBTF_\;kd2Q/s3:(d > 䴖*ƺ_~h $P9IimzBhgQ9,Z+F6e+iZE/)#8@b’qp?XПM,? xi}h*'U2٣ k5dDrtA)1к-/mBsmKt/U"xԧG4C:u?;Oɻ]X7u=8`LՕg,\|UU(+\‡_k)!sTE]$+0-R>\R^ӽ=knU~Iה_bu_ZIM LQ"?y8)snH:nЬEɢw{(F) q\0%`9#{7qp}ǀ+.X<~;-j6 ڽ3)K=HWFi3ST ,H!!dY(E>W￉ /i0lbƠhƾnAGE O?H36OyBJRj`&pj6ׂJEXJp<ou69smGw[o ~{bD<4Y}#XYflB%M"Ep= "͜U/!;ڧ{VV7Cxw}3l}g8NrSHx]e zTɂ+(ݻr6A`X2wvigX[[C8<\ѱE ?[/Iodiݙ xld 0xS{Gk_mҽP .uX ? ۃ.KI)yݾ"lƧ|ʄص3 1~lO]iԶP.`AXl:ÓXdb4ι9XE5iRp%]E2R֚:?)V)y>am+O~PͦXyp0䶺\h[ *I4^Bvxp T STqY[ew04x?<znh)O( F?M(@{2"! ѨEE<GR k8ŋppX"Ґr~5?WE6ѩ<16yi,j6%ENkOLR(̽(F)<|8UepҴGrJ 56jdp@I&H͞28'B HJ5MfyL=o)Dq6/~L+k.-V75T &O5\DeAyh:q`w}哈pynb_8fL9V~ppkS^Ÿ aFZ4ƧﶇEXYaau #v_WXtqE #@un&*3Sykvk t{tw^xʫsTU3vЅpsWuI'+<Ӡ1(>*$t鄊.Jy5tђ٬NԤ$qN_C0\4+v ~ u6;SF!G­IPϔVoLU.fr|[&#>Z5xsD[{n \B8KqElLWԉώlrY.^ک[* d%6)w8L=ץ)#RB$p[]2C7|%u_VFu#&D)iXU(GFQnygǀ i)GWkA`I[, %mʩ_,U-RH)by^LMrkXͧ\ل2)vUuYFGS}y' Xb{>w`mCҵmP'R!  i乆 ,FyL%T Z(ܨ4aHKt25E&=Ri9G8CEQܳ u"L0@\6Soyug(Ύhp[vz֞BZR,JTӑkc8C]vrP[emf3qhrIǓ$h\-yR,.ס$ Z7|9yH/ˇ{=\Ԡ߅0/+v9W~n"7`ϑ<'Xkh a,F#aϗu[zXn_ה5-b2F-2~ƐލzSnQ{sO!ghh˾#<1F:4" }t]EcZ[*%,E4MQ%|Z\S/'L/zC5%b /k[;ۛ$y0V5KTawh3Cjhn&)M*I|s9nia@:=n/lLԆI@5Y<]. DsVV)mEdn:gqa/'&W֍(r2 4}6pT2^-Ńw`AGk'#%Eؒ$S:p͢: seڒ~|uN3#C؋cdiB5"\['3 O}kݾvNl+ BFM+'G7G7dզ `7a>x-ڲPx>8Ӣ1 0RvZ,A03ΔJ$ČDK,%LֈǨR舔c`JA^lEl]/D 9AU5.%(@ey˯ie [BijX1Z5 Rٲ Wtr:kPܨxt6u.nӺ:"nq剛jx6'j$s:eh9!y~gR,6ҥ5~]hpz*2-I_*GCLX`J6 RKR*{/7^ bf)<_9dYcQ. KEO| P%s '#tocb߁_h]ҵޘ*j.X1F6Z7 ?9$,neMuV)r/! LF?!(C48CY4&If4(prrv~9u;|6(㏤W7 zi_Y`U' 0APi]Rp$ܡko ;ھ}p}N40uM2I4eTO~_qyh_u<:ҁU"ctnO7;Cp]LMnѾ ftdhLS40n^N{f-4uV: SL7Ѻv ^:BO(,u{\¦UyN0A 54q\"^ 3)kvXk5Se, ݉[ktVѡV52X,`:,_iq-n0npY*N3SO`f3kla#],ؔ,EW cPL0\#Տ֯J1c] Y5l~@P >r5¶$ݾp<Rz*p6VfYn?zC7CfM>3&3ڽ"Y5?< (2T U25v=.jY+v`slvfd|&OMmmg8t§ڬ<uUb|q!\.M4XǠohktў7lh$!.]P?#:Gq3 CkZA [gsGU;t_$0ϯ( )ʼn5ˏA@Dl..,_JZVguDoUdZb25S)˅yM MWkI`3MdBoM~Hty[T$sҮ7;IIX4n4MfcdB ’-`^*YS): qZ0M% &h~ƼaNOXɇ Ektr`-KGRآd F%rb=4 &%L[UWP4ZBiwJYt 08P Lӥ⼚Oa3`Ô mu$ *M(' t\'~B.5(Hg D9Qtp\;=8u3nlsGxMp} +IvBr6St7NQA(lq$ϟbO@u_+ y#s jʲDUUHT.]7 L~~0|~d);ˆE7EزjMRw ˅[0\ }vUV]7pR'M&Q'6خ>d!XYC|.:BcVGu/rFuC/FWUN}(rk 3w5:yҝSㅬb?Dmg:J)l?@_"bN#T:p)RE(.Kţ7cRW  p.N㖎xgߣ/)Rju$ til[/J^ݡg* P%X*σ#D B8yKNJ8_ł_u̡aͻ*D}hWPǯEcv5];8muPő0 ᱡ%R=81=D:S\rdYMk EIj\$HF} VIРKvJ .tj˺>o qc^*XT|6yA)nT[U%ӂ_*FS'L!ure<0lbQ| ekJ=KRm\7n}Hk0rkւ5i5&M!y|h4% Hp) EDQ݈p]j.7g:WǦ;{}>I$(!'{.3]Gp~|dE]a=ѾJԀŴj}egJn(*"G{8!C2j3_F8R1+t]ֹΊϞ=CwC| ٌWxZ,Xh9^8;pM˅G~]@d^zjF^G1J6tCer>S)rx:(5!$HjnK }Sv涎ےGYDIfMQ橝Ѳɽ!E8Qu(c.)|E;/#\߄K;B*p=4!gdd2j趪( v{>&qgp~-\׈U[dkbIk.ćV66.Lݾ _lr-pő1c .uN6UFׇ7])e"^PuNljߥSYKd@z^bO #L}m垡g!]ւpb[&QSH*}Tρ殚iܩ w"`@f^oҵsNȵEjrN)RE/Ft`M-8/T fhpvo m &THKY±3JmF&Hbcs6#lp}:DH9~hk{LPdKbϾOQF%6AxI]@LOX"!BF"4L\;/If5! ~B1)26?wfX۲ ƂPi(&r|!&snK}el'cl_bw̳$Ť(( d۾ܻ_c-ֲ&k.:/JASrGFul;H=EzW)M}nxڎ"ibgnko~X\^1 (9"AhJ0DY(Yqp{t[nNNCݺy6J{-tb m`} `eBS6m~]6 #2FKcv rVu AP7gdY7''ca'*i3bSOdni`}"'diڲlx*WÉbD[{v*O0^#J? PzMNQj#;G2t[$X_٦Y\QHȗ▋oM]1r5cy`|;GzpQk/U"Q98sDsciu\ӱnXTs5 EF 2VImbHbR*]*MYhҖ[S극2f0b5 Һ.LIB5 L4pY>d3M>Y&+Yͻ3Zظ&fW%-b|uX*p(V&v% 1Cj $yLqP0ɂdaQL?D^1j(5{tu!-]P9:/t1Z[кq1}ѻgH<6_aT_9D[q{.}0I4yp`a5W_<L_q@h{'/Gף^8g-懅: hdzׯӔd eY<10Loz ([pC{nBzLOrgV7%gn߃I\<8vo!/T(.tF1J!T҂,oLHP%dώQhTi fX)FJ]ȒM^LX7RWaps{7PNFrfl[uwbr U?yvo/`]57fq+ K5-i&55;dV9Dz slL{|ypc崖x%=]"puE655ޥq}mm\SS5J62.o]F 6Aօ0id?_e2d)1yvU "ǻ H7!P- ]9'II:E&TPԆYTpJ p[d>KOKzX-,"BǵK\1R6IV3*?=T=)m%g :B[[d]݀(AH1Bd( *QMz4%8t(]TH Rrsҗ>PJ!>Бu|w*B_RÈ8OΦkwPͦvc(h݁Z_z߯bߊ tX+:zejSDDe Yr-Ksg%dLYqjmLBP<#n,U <܀<>+L5n܆]Ds7pr8MAN룜0#8?X q>{Ldwz mjM'H+,rF>~d>hkxwBxwyv;n߽ w鵅ۺ.4(1 Ƈz?l~ qrr,I1 >6ʲ5+< 5/=z).Ϣ`r,~1No7DeWh߾U1SV?_S{sv#!g^\0 u>5bu:t:]z6 (V_=5и`eMAMؿ@ç(Gd4`;|bUǤdUMG\! &7ȨkMWt4k. Շ[6vZX', ;9RtߺK:{tQ h3bKTgQ,L!7)hbkn0qc{ N#: .nkGTSSQ;ٸ!~4Ibq[jFr@d!RI BJJu%*SQMO#;|A)fovײMTRrw_Yt kEb J'l(hmFEF<'n3Kde9WS+W+,!s4ݸg{kaA$D`e nܦa15 vrNL2'g,X5%;>@ :`_]0fLȚ$Ry+Z2M3\\SKZ*$I70ou]5_ n:Ѿ}_f ,'#Xgǘ=ǘF8Nr9ҊցVs( V#+a@RUxBRU8I \Dع~wO$ƶ,;>_xm̬̬&K,Ie [D d< 0=7`A@ ٦%є(%$+++>nO9ģioTY/6ZH?kůI&i}/QC?Eko>4?_pή1?)1G]mQZYQ' `fl6jB]sok[o8ÿՔp{WӔ$1kdsV1z{ ?{BM .71JĢ@ڃ5r{aZvX޼!1cՂ u<6f(װ銝ӗ%"m?]afӣOP>w Q׎9… ck8洩kxA@tG(B3P*Cit67?`$se}iթ5$=T[*zÎækFR6KY"*/a4U#fqaJD m`hëEʠ@RX,BK4hSU:{$8eO~3"bX) LPPUűVt0A4Ɨuqsh_ <̈́!ISİםyɎ8H%-vy74jncx-LOn5^/Qo0;yF6=Ct %mȥ 9~x柾1Zs^"/?(SaPbbXvenc7ߋuj~h kJrqMGC'^ <깚F\mwvAIh~h袎| i}l'MTXo֚5xX-y`x\T-hf8ju\ '7P/:jBؘb %IV;N!ۻ*pbLfSG5o4^ZZR"[1=J c;+`TP6J㈏„9m MYѶ?aSS!i{D8)K6ψ[;/?K;]O IQ)gAMq^]Ѩ]M+Nؚ_,$=A+Nʨז%r?c]$=튒RgS1Tt֬ ˑΒ2-mc0uU]3S^cՂ"nP IDATo ;dPΦ. |_7wy1{}KsL$Z4ۻq3[Ac$~F3}w@f 4&U]òrl&NTHS`/?qT}fIUFqagє8p{F1▉ԍεc(z@! {BwKJ PsA!/`cIi}UN5$}/>ulMHn"t{,|`l*ψGn [ ǪM\Qs %l&Nlҭ)o 2/hV03gHg}pTyFI\i56WKXrS.ˇ޴zQ.WMX+s[(֛U7&5>lY{7WZ, =DtMU J5&O[(;IgL ?&Jc]-SV\ONS6d)LH4_pWY-fd=$Ic7]ݯHQ5ʺB&P j~g8g[$>5ޘM/Z"0$4 O\\X^^AaH=dZgJ7ۚȫ(l*q!/IpjN}ffbPKK#nV,!"΀:}~uR̾^.>8FXu]c0*,4Z+GOUޏFR7t+4~8{49! ׇc4%|NS(o4^ߨ~KD"h$ۈ?┭뎞 hFbXj9'k=*>>w??7mY\k4uM,%F`EV%h/o2j0_qy͗޼@r&(/ e@!szŎJZd`k4/PvZMvђլ-0lAo oXuKRt\HJgKy%}' nx{.A<#D<ã $2I"լ%1HwgV W zl𢦕.0sY^9<VCwCe8\W֘3~ f3ѹծ%|iAY)v otђ΅tTKB|Ey-nB ';=4y.lc4y"/hYKv.ve˱n#\J2&Ii#wetvEB"ڻ Ys*UtP\Gk.:MaNӯ>}[AL G8٦ }RAp~]?н_$-zQnɏ5IA&: ]ۻwDNkʼ6;63hG^;E\MLd\_]İwɞw[䈏v.)?D5iC_x9挶L'%2RLɔ͓}v"l^R&NHB:]Dɞ"dPQoiCdyG7[N37^BkTV7ESSr>%g7/O]$cX߇?L Y`ĩ3av+~:'s"o4nCtWt53]L_ m՝@0x_GQ,}d/5n4aڥ8HwŋtrgREyXN-{[\AQSzю]FQWn5U-B !^zqkIZK1Eʦ*{~'}+N.4iW;LkzUH(re$bK io6}(hۈ=D{nsz*A {L'b+ZDIԕHdPW/NT_3ofS,+.kgƔJ~'^fa*&NP\;{n+bP+"5e5(^qj w#7ݯo[,K CFc{??o'M` Wқ+7Pl%wmGph3S䧯P-aH&2N"i̩LH;RN0Dysi 0U^)Epru!<G1B慦]pg_{=*O^–egw#2amjY%u^8 fGv[*e6uICm`QM#>'(o 1@ #Dt 6]w:ک+)3 P;BpG&a-)ۢ@֤,s-"pg<,EY BW[ A F&2 &WQ3*զ:r[ L{,v]%*aߎѽg+Lafucg0+B>7hX q?OEv?lEZAJsuZl.4fec#\D:.(.OQ\#??1d~ `="-u9&p`î<~L> כ5ʛN:4畔)"u~cj 5Ϋ3x фZoiX ]w4wΫQ^SawH?:wv~{"TOۡZPqV‡UF x|,f̔\>>JA~4熥崼B5?ަ^\5Gf <|lh>Oyx̺bա4.mɥ(Sߑ(-YCEgٛѹ&/ iۗ쭰zieϒ`vՂ*´S y !f7ebzI@8č|zr~KdRܠDsWh{DGyoɯR9>???~2=;N.'/?VeUG)Z6?{spƸ}1ү># I矐l5MrGtM4̃eEctbJƍj1GGK죜j(Ʈty&FWN~3^/HiYb6NuB;xO8/:ɏ6_}~};{6U GSW4OV[K-R㣇ܹ̹$)5 ]5f /!5qwͿIt)F y=<}[eA[.4}6W?^yw?x2wi33͒jG:늌yUk:GZp?yЦgT(SL~Z5^WO~cćGw(/ Ү(6-/qʡ GSj?'eyJs0ќsIojb [!{d#MK!igF/3P\^d<|Ã}[?Qo( IO])'|q]L^{z Cח|pQ찉T{ڝ3 lZI}\`Y.;K Ѝf]}0Ɇ(mȄ,(!0FrXZ;(mMD|Y#pP׻;\sL(ֱV(.J< >:x"5;`X5~ёK/ؚhNHN‚((·?J j2UZc*Fu{ hlEq۬L/ûC\9~zpҮX(Rl$hH ⃣LWNP-(شaG/+Yn0R` *;B"^? |N3xCg|4˖%_/rA9b6JP&rc ůH]wh`ز8Az-XCZαy6c*Q\\QXSgL1t'ͿEa*BlBn!SfxtXr1!m0vC#&9xGck%'\U#*Z4;{͗jpQ[a,,b`!1A6Z@J]ѹ\\Q*ϰb+D(Fr@oD+iVX6C[J 6ws\$]k7؋mKqm $sTL\&)1#*R\r)1u}J tsBf:a #׮ Kb9wn7VɫVzݥh3 Ez^д!ENF8A0%қ*UlMyIj6uG炓.pD[ovq`+J\MDyI#I5fErvK, q 2Vm4C1%IVB sc]Nm'Rry)w͗bV^8 }-C/k3GD͆FH Lb`0 C%4R w f\;SMJ/}56vp$6hEw NƂc0]*޴ZvR ]SHDD&0H.7!FxAHr%R:I<ۚl6wMu/v=՞oǿ4Ar!y7f lZl|&)uj;–ǚ^n(1z42S XO[R$=! d'Po0{=yqgH;F~qLGԽ'aOWBu"$GQ`TI~L z2'6ʇ R`PXT3&44T˅jCܽ>~~vPs/`AȨ^9}{Z 8U=3)'nQnixzRKtRr^ȕחTnXaVn cLPk?brO8񑟽Q/KhjF]b&βzn% V2hѓޠ=y,G%nVtc-\0AysE=6kIiJQE5qߴt1 $" &atnxGQ^b 1qT"ӱGH䠞^}}A䅢dR2oIУκM1xGY(x?OZh`^3֭2O=$g!a,rhz)I|(rE**ʱ%Y(?neAEHVf.=Gk\V,EÏa"Z!tc],{FYqTbdtE ZjtF[*dՔ1j$NSgJaO_Z-ԴV-0ח|M_bE Laɷ^G(dQ\#ڥr7Fww`_+J~*W-Y=H*L:ilCXB1dj& C#6!}K0l#`vCf Pn:Y5G-sꅵ…Kf 13(9ZolN+_g| `㹃3P7/sz&I{eV{n1%(ڔ%8h6[3tSez~II[ +cV_\.:|.JA%!I-YnAطBp1˔Ll8 < c (9.v&T U>GH_|w?Q_c $.:˔*["4ڿm{.٭Vzt.}׽Am[?vR͠b8E1qOÓ 1@ 7+4+ ?s4eqq} xwQ\_"{ \NM$N?K{DkDR$Wm`5)k[WgkW+>z`CKn`8B0U ?=>1} ?.`/Ns`l*$xԱ7NvsDEo;MӐzF/QN/ȈRl)& Lh,mVkfvFsҞo#J DGËbyUʨy}nŬ)X2Wj6bea1}FbC[Rp [5=,o$(B);L QC ^j@"b;n>bNbI65;~ 9ҲQ,/9* Kk-5vvo ݯi˛Z}[(gӷz%2b$}DhՇ ?}uBсEpԡNլwG5Ay}AL8AV BgutIRe]HjQ9S%2ͣA|S%+% HpHcfFbOa\j(XެWV yN˳u2^&`ҏz@t` _"+4^ ,)2@~qQe yfĒPJ)dyu.h^r[ku(ZK8mCZF5vVs} ZtFaOݐ!W*ꤋLZ6KNJD }h4qGHp6Kۂe}-,8eT^K4j~um{kkT Y:Ɨ%A TW$U9b:x:8-5%NHg/j$teOr*km#9`Ԓ!x5n~F,9׶- dۮLi(OP\"%3I'O5A4sԜ,h"1xrAĚcbEZc.ZX" ]ݦ p lBQtRLt׻Pe<"ըHtN#~/ @'~6rӗ:5ӟÌiџ&Y'{L1aD5_up+x=[rL CS ){g)&by6%+J:b0lIf؈Me,?xe0ZFcg{ãW 7]ޯS+„!=-$e-RAyݍnfIckxh w׌` PEHQe9G#t/ɭ+Ȯ(B{HPK֤CH|Yyr%Pd ~<=><>`nAT5u͇#T5Ē*$*I<?'J G.8 #'Nߐ aU6KM+=]-")q0jRT.C:};ZL.G 2u$ {MYPr_ZzJ/~^I qxii6k'BKgW7ꪖÂ9ўNswi!nx9ԄP)q9;&) F[zqqb˟-ᾦmmTF#\O-$ݠ FI:ϻ]׭.tnMī:|ʼnJ^O_EE7)Fy|_qvOw 6hy=k31S %]&WF14EAEwM^F|n >~IL='dcܧ^Gh64ţI ck堮sѓXY"dݬMaj6%=z]#?{xJZ^4,mʍUKAq dJe^1N(+ FFAKn4 Y/qC@9,뮩*T˹6PjRD 7U 8qP/Vt!pΤ5iYJD!"1iQ.%"*b_X׽ݬt"SJ/iQz}%MZM.8C7-#T՝J>׵via3Yj+ N:%bM]a0/)t>;m" g =Ț2GtLKfcR/ǤeeA;1- E.<[%5c}HKY_?#>8RcIqy!*0(T)O6#&g{,}JVYL4D Q,LME){7Qz^1H!!l49#lTGy)Z-KUx `Mw*5x|pZMvcZ}t͚. w(mh@5Qv=,\o_r{rMO.JD.S6{ۅlԑ.O^B״v2FԲ@944^q/j ONe$35:n뮗ϱ)r2r7I0[^d"Hk|]fLB׮bkRb5\@c/(Ir.nYOŰRyk"H$ckGGtpDN0 >׷B^S5iLyl zN>[Z#*ʓ6[Q1n Oq^6y>qw}dŖ%EؖQ./۠ϖq_th.U&yDCՕHYݔ- ']Y,Z,ٺktNI8FA^dI|=Ljӕ~0aH 1BquKS{45yfزT(5!r5hNY5i~|&LBYx< l OLEʭn,kE4:T~ff~hS@nD 5PNys&ŤM"$CחJ+ε0q{qуBר-oΒSآP"Gu(]1M7r/ˋ5%0C,~Gtd&Pw*ÅG:/fXُP.gN_Br@frzMcL'>Tp{&-b:5&dFF\x~"4)8EWW:}Es2k?֢Jx~|T[?#;/zB2M=K'X}c:h&;)aVB[S3= tCB~yV6۠r(F\TZ}g;bgG6܍k^WSoN+Bu.ވ;~j~Cb[*G#Jǔ)Ѭ*R(gwtP[N380P]"[Pz0&!u렇#3s W0!#}.(Mp0TSHKtU._M.Q@~ܱ|'YmHb_#O|7u]B-CPPV Yyjg'Ǐ#o (s2pq;8Sl $h]MUtD f95M+)YMU&:Zjz5T7ީV]9ϼ.sKTϥ@WN4b0l["I慆H6m/j'$(m!ܿ&( V5xd"8a6iJ3Ƙ@&jSϚ2hJ^t9"-rޕ~/{5=uΞU+WXk{=[ K%S¸wum,Y*և?e.zɅK=1l#2doK;FVKMDEWekW M]S=`]4\~(2`-8"@ i0Hg1h)8qMf|x_7=/۶HoD Rw"!t{AKGKW˂:GbIbPtn“\!$#9kٍhZUkWby֎ K֞QҀC*6ms솯HQYN"IC+ږ-RdNU{XebZ;z촀p~)}t'zj3j7,UK-%[֝h{,2MDづ6 jӥu7u*'nQe?Q.f0Ƈ@i=IN1K "b:W3\ BaT4gp'G0~nt.MyWyM ܚ(+ 8[nmZwJݮ.8z{< `ے!ugܑutcByHr<~mTJBؤIn(lLbg#[ޕ7ܕI{]BLSH_#%=X_}~&e'Տq`ko ߨ̖vˤ`Z.MUnD1BaWI@s߻ IDATK {*ݧ#k0D5jD?n%ީtL H5 :M4~M)'W#Ne:e)pVЫN}811ך`kyNSl[XvHFXcf(@^ ;]B2҉C\F| w:Ӵen`KlˢYBnԂJnƇy+yqBȂ ?Yzxqnu(H֚ \NeJ}GIJCPYTZS& G{3 LpQ=a`2N}E"}Ap*cD]KA4T|: oaKwwIK{˕CkN[v?ؚP'ϡTm?!s^OutE`0DqsՍK"r$7M |fV4M0QkZ.(ie"V scŜ")Z4`Y ޱr)hK%yTz#g `!r,G~$2A-=\#$s" }p'lCz!<:֋3dd&V՜Ps;& _ѝ`kMT`N`4 MYQ6|C|Sݬ٥ k QC5' =xPWMAFLINyy`h~v&`}{LjKoxMe4cLo`SƇQ /=DS@ qWƺd'0JSy,?\,M'6RqM< J*#dOz21q9lԳ:8FrXm?N䄝L4\oք!M ?~`v u" 5`]g<^pHԥHKI-(֫%:Yn*V\-%74y,KM eve$Dn $sFSek7&z_ RS3B %%EެQ e)SUp{z`Der! {9wٱ&Np c5L*Ez5еj!;4/ 1rzpo9@Q/:h,P~R A*kR.5O&AP+ /_NsKNhBG}31noeFep؆|""pSTPgBd^0b +jL5l׶YǕȄLv4hD%wTq5zwרK/NCYlQ^P}nk w~TU8὇&"-/rzۻHË nS +[oT) l^Q\]i=xa_nc\\_Rg1 >]԰X5Ahݱח"=≩Io⽡@yȠkv/=aݒAoːR(緪'OjoTE7)ndhg+)RȹOH&5v54!L -ZCt49PD^S(a.Ըh\D^~yŪt\ͯ\MWcZiFZIU3ѥԀ;fG0WC OHw>Uo$OHeՔŦD,Iu7NUlv H &\J/D(KO k}⣇#ݻe8BOAu_-L妮.{j='(WtչwdK*إcy'wb%CkP.DžJBܬF OlUYsEh4 T9v-˛+%@~~T(o/NpS9+*H|68D8[1| &z)>O%CVן CkŪhPɤD>)̩kω襋mB ؚ:STR{_!9zzVU7]ݟ?ng(BKiOv&SuM1}?Uh! ^>YyT%½CY7AB$z >zrvg?Ayu_+y) G-o=m]H_ 4RCQ{:&f 1dxtahL;tTNTqyGQ F S21׷)_}ql!˳A_VRP:wsRT^d\h%+S?{G*3iw5Qx.lrAcyuDNU!]s?K=蠊z!HrnYs,]=Y{9S!] P\%+&N` t0iձ.V>4 0iLLv*J#)T(od`eӢO:}Li\P(⤍|v2wqWruZͦZ̒fE3V_ځ']ua]-o;lʒ>W^nȆȩd(s)0] vNs $Ǐ;bٓ<kGʔmlCF^O58AKE1oc?"jN!t'tt6]S]|xY3:2ؔ:1 NK<ϝxѽBkCzO&q@$mԤ/Lk4ur?@\ ; N[]&ܚRTy+br)%;(_'XL )bv{f=eYз|SxGDFfdVTAw-h cKT@tWwQUYIeVTfd ᓙt|ϸk8z=BR(ͮ{>{o5kxI`v /MvsX!04P8ZY qa" ,}#9}Hټψެt_SQxR)=/.vEz;~p\+?QN/Q>|W}(eɷQ"Oswg{Aqu>#4u/hD鶳/bv SvWc P_߄j!@㐝 *^*4L WXu)ɭsW-}PM}L56fi^իslyM"(~'AwHz%$F6(ECBX*Ei;B"WNj|vG'٫o{G{`T6M[7VZ.T-(1wIŭ !`)♳']X1I6s׺9H\V*6'!?E~1^g # X?;Eڬt{}z7EZQm~]v o8[þ kjIwd֛5E6I3 DI츣xB:; 5b~KTJ9p^Xe,b5mG+bIO*Y2"UEv2S4K:HأY9uDA 7" zB˱OnzUZSg`6M;BPx!<Åcn ?GKF`,ϑ<C}N9c -ANK5:PT7:6y,Yc]È.IwE{q~qv"r^# i6ϴ!j@yAouI4A饞GfMɛwS+Q,s(B/Kt?UThv  7A}v dP*(/0fPUr45SH, )D&{圜z}eIqC<U!888QkNkrzn#%,K_\)K 3+Gc,~3.R;]O[WJteA׀vEGdƔԀUi6՟D mVV L CRg~N2V|pB-LH dWqh8"apn "qFy:g]%:q4.!: Me^1D(.(!Gb*`.5G s Sgw(׺R[)FXhS'!H$muOWA&D!ld^4ujT)gw;b)f}Mu`t/Qq>r]4Upώ&kkt-H*MYV _/?CGm<`D>t{{3=h ? #tyWmgϋrZDاř"1Tyz%$m7E0<f7"7z:&ޢ n ۮF616._NiG5{/MѪ+83ԍ{c7aoc /^d7Q# ԛ59=t{4N'+ULt<:7k )Տ}>^Ҁ AK6}Zc4B*7WZ6e(nhZ;ϋsd(7mau{\ ,M8tVRicwm/6^okF{r+=3Ň'F$1yw|Oa6WgߠigzU˅鈁Uۮ( CteVIċ+}UG{Jh9elE,>%7j 3NOM]_SD3(!ʧNPݠZwh/~Q+*Vͦ0QLB+SLuȀgC|ݗϟmǖE;FC&JPͦ}#ͦpe@r6CJUPxT]WJ46q8'[!GA9٨nNxx l+0S7j1Xٴ]3욝B ?38SFe \1r6E49mzRF⍣%m6:"SE|xBF-e3+Va6+UUMfS@7XkrK*CG4Bh!*v6 ZvM=OyJB=}2=^ B]f.C viN3FV(;J3JHZ@~F-./Rn C)s#lC`z:ygk)We" ﺣѴ2!^~hrW25|8h}0B#9ON+>M[HAf"ˆ?@5+ Mx9,j ( %jNZqb$-ENK ltS >6NW@pٿŧZx;4@ݪ}^2GtY- }O)VcQiꊨz HsCgX_@Q/TH^Mw3>8V {n'l]1>zFSF=E(gmF$t{GX7~1 WJבi[Ȇ)IIp!ݧ y*f AG{mJPW[WPKwPDW:Z/p@EX#qy)FyV՜8L'P[3B*5ZQ\Ayw s<_lڤnְ `՛ztpDNbپ)J6?.6ia˟&Tj9٫|֐yWVijtVs"}.u=~TnT]#:t+b3-p+J_!>yrDPWX}C}6ȱ$Bą4Ar1C94U>+ ?č~ jCoV9mJx%]J9;5ɷ]Cy7U<>|SpUW 97Whvͫ~Ii~pBeT/VőK&bM^ZE58"%qz/BHu\r/3-Q@3+Ó17Ft䳋"i GoxJRV~L?'?A^o^S:\Qxa vlFDYkt!Uw WUZ(?-:=*lܽ3Tdr`)3HimVzд$FT^MI,tۘ_weL^}{6-1ABMkl*ԚE u. w8F$ؾ5g+/i\Y6A@Ų6"!x"A^ee76nZxzH' 3Z-((no>xjE+S-fvϖ|MNLLdM 0$w>?t׸.SI64?Eu>*h;)zhc.<sE@FOAb`Q.G})d/iWҨaOZ^ij7̮ʳD=)NGa$12 dN\mh\:fެnTM-:8o ѿJ+ntimr>UKpB%=MaMBy[m:9 @ItՍ"E Bo7}x^HURkre򬥩p @:LTݞ>6I;>L.=nڨe&77CuNBA%!B@rM-` Pikۗ)sZ|ׅIdg$*NNR zwRĿZ8Kn-ScH +r:SM'k<_Δ~cL|D%< CR )Qk5F|\sET&;.h{Ƚ$zv42QLQ7>Cv (Eh*L xVBMv-.vs(؄?Ț6 MF5?1^5C' AL.cI=+W*I!9}?IRڈ$7iU߳Ap֢a_ ŋ ҇k2"y.$8ZՐqʏb"y~##$#Z0PboA`0n_X$2,@ BBSV -|%f8 P/UcPM]+Ls6a˘Gm7=tt$1^_/jOtDQ-WcrPic5їT$.Bg&SGț AڍETV=~9C"CDoy:ҩUstٕ YIS$cD=B[#hq  ȏ ֢ݣ(9ٶpej94 Ϟqdνg}neԞgI}/y eޟDrr E6_b&BՋS`(ԃF:/>-lL4HN7w(6`ģ>k@{o-ǠRIxC<&n`bS Q|bEd]A8zoh,RO[1pFejÖ\0Noq }Vczv}{ 0Ja x0D||\0N CP*gw4ʷ*.i4W$SL"fy{Ⱦgl=!7I)^VLk3QLov|Q2GvI]#{ʽ^S^ @4'‹3*Dלy;өuaLA*pif0!.K$zNG.hhAFw %1-Uj(*ZE|qC1z-j-hLSϐ}S~OT.ISL#ZXX#S Js*vt>b-ã6L(glbEhl%_l}CMR7-G[MѳȜ4'Fsqއ!Ʒo†#KR#*p~yE0JcO%)RuMJ/\߫ $)!G i0Ogע4~A&4L"A@NV$FFWr6נޮXj 4zpE?v1GEh\59DS1%"e])߉k_2 - kG'ڄf&@bO)"+Ih,&Q,sF0 Ia]spjAݵ5&;lr2TQcJ=ԃkk|vRuL?mwW6P@Fp04Jo1jѶ#p C|Avw Ad0$ZIʐǠ7 pP[UfRJ1#˘E.kHT*VWnʚ@cɤݰYkÈ.hP5s\rZj0pm֊qJqy{r MӨ{+ >yLFm?ǶTfCz^"}'qpr[`k"1nIޣCkr"cSDq BT4Ylk獏%YI8ڣ‰ǐ^Ud/j6HS~I, XVfޢ3XW; n9jMR J^#ER/|ExJ! T(E6q`cGm֨wMIV{clISP^cgWA8BfMzzF4vz&6a4vdfmYsYX5" ,"Ϛr 9Zn,k7(1ULgcPG4- IDAT8**ʤ-]#6Uf \i}N/fZ|i`{`SXWi`spM[k/sG k@ϗmkNdbD /8q "G$; nؽrD]7W;\uMjNό/ ?#GlC(Lb),`\j1DOGTٰkB/ɛPFrP5t(gwMިBSGkC$Da܅LZD{4tjp-¡=؅=ԫYjI c`FhYDr$;\Qowt+cnP^wH|r%qF6E#0R~HMRg̑5yx,?F5">:U{!Y*<ɈN9_15Nrq $Ab|Htm(AzIfa-, ckBmq"ϓ8HTް+7UIJuA?"g .{[@4&)%"8S_zώ eGx{㖲f^9Br jsQ?аzFg*et/~u"sݮ+![Jh_U%F""ZIλo{Q1H`,b4*H;l]Mb{g/X):js'Ӏj~hr#(҉jvxj*t"H$&ɠEPLtOŊNfgU mvɜWx7/v̗(³g0N߯˟<-ZNGNw86;TG*T[E j&wZ-9h%dμ5yM1Z-Egq_";@ղEX|Ax|xZfŬ?N7Mv/؅}*r"'B]^Ǩn֓/(tAF%hf")|Kn5=B^<˒kY'~;]RȖ; 0QB%g(RA֫B)Kb'A"".u\(.۲d8EMkܐÂEdYZ$mǏB7kTKp\0A@ rLUrE<'t4"LَI ሚ!k{i#tl#I`pWE!e@*+NipW!qD/tb45"h!g}#⑟(e.9QT*MD RK󑝽TW (/Poj>T:>>F'N].(aj" 8Ig "bZ/Q$_qQؒ5Y/Qb@jq}qbouj"r؇!w9qA/C"6iAħ9Hmqg]Y`SoPg, riP ry`D4!/~ dm!^8_?B03j:]8>oAiv Cd/z H"J i{!ŕ!lh * ODX{`*-8]aK-bfr_}]G^k 9j]8E{tJkjr]cutqF.g}P9(@  .SzխXSd]ݞY&^t'N-(;;{{aڷ+J*K,K.L^7kˠxnK_TAe_C qdFܑ n_V#zLj5G"1%GGAF"L+o֫?~[8&Nv6c9­ G{mw ;#~MUܲ_lq}@zl© z4dg$eM8~W; MՈ\hdD& lEjo69q46Umy_˒8e1HA ,4X5^D|E:Cl-nӼBPaYnh&a\d%AU7 ˲aWU5{g@3Yh6}܍t?EV´!+"2NAo1zyIGݧ^#JS|u~qW4ҡ{xq*@9C4ާi oT%Acl+98FIx`OGH3-"'!{zއ˿iˮ&45_Uw( t!B@v5LԦر|]'$).>J+-r,JV7WH8"MMLNBhMN3QB\Iq0ZImC4/!\e I:G)<(kئҿKSΦKPT '2~yqu>B xH;njL%zNj@}up|s4t5PLP4Rrv (|8nCIQC[do([kU;Z)L.د79ơ;#BUlaW7 4A!da6܋3T+?<$ԋMIŵ~y+\*uJ1$I6FOt{0E8 q#(寧M?ҍ38eorH^•O>,QAIKT4imx5ʳ74<W B\[0R,PWTP噊\EAaoZGwWKd7WYE_fD͖PBqن]`cV&~fz"h}~_ЂXכz%s]\I$iMX&  VǺjZ+#^jY`_z5lˆfE{ :Pm=ETy{M燐2-'?E gYAe,b&zDks<>{ȴ o8Y)iV=BM0'2E{[j?%;|2D#|{2oj w&oe"||]Y,*Ͽю} YgjFT6 ynO* o똿+ 8nttͺ `GD mb<̦+^ZQa$Dku]X/ zOw0v Lg,XLެ+~bo1/v0T1GY;pι?{|{_t}76Ǯ$G:aI G{L 5EFqy{ Gq"I9l RG`(SXm3;PUeaE>KRk 7q";u1~3acH68 @w8 UC< D}dV1\H MC'" ͘HMReO 30"2>%OW 8;w'.?n#[Zi@wqL8V'FFfX޸NEz>Nr-zEJz k ]{z"G"0GԾrnŔ&nK pElN" \}Z%)/Q/?mcN}ެy;0IRm7h=L(wwlѼg s6$8SRjYeg/ JonI(>Yxl1M/:6~e^E=Un9/*b) Fv" 0s-~s "O tZPڟ%@ BDz0_u?}gI <k9V+*Fw"0!A5IROAsiG55m& u;A]=ȱC⤽ 91 "ȸ9r(PQ4_L%5k?XzsxL]k+6c-{CΞ (A"yll@ުxJTǢ’nozކ>6 bw`ݢR pUZ^q>j/?}g߶Qb} w?Tn><~&>Lت-qyHK<ևQFbc垺l=яv"d.<ԓ9;=_Q$HRB=x#IϨp̕ :vɗOMNfJҠ Ao V$P-4:2"Z0Ӵ#+=/>2V1<>rO1&J6 s˘R.妺skЈ7^C"HŸ3G>KYoԐ}]/GईW ۤR~v(T ܔ HQhS9e1@ɡUr_k3onU%lmEL@N,E[Gc T!):QRIEH+5pyN1Smvk.jƴȅb觱iӨ@D5`W@ N`|Vֿ4kORX^_ܪ"$0d95Mǀώ6MSPpm:1,{6S|V[s4Mݛ%8ᇛ(B'\*W5y^ _\)AGӔٍ3F::fTGp#kWmVp,ݳI˷4k%)0))Ei!d~ AAXچyMAnN')jU-u7SZ#VxcRaK{i6Jk>IDAT洴7@ެTXtZ>!hX2 T2F¨wUXs}z.۠)`y!{-ӇZ4 *Vg77E(; 2V }I,_3A`h4U)Qq XS}6ATO^bIx_IL 񄟹&5 ӕSrD g+kd߼6t 7b9hc)͖L;v~&>MHr;^ ll%.P C;/7EشKl __&~G?ۻ&ˎݼ}CvI-Y-dy&8;lرoذaŖap8 rȭVK]]jxÝ3E9W2{ jxwʛy;}Xkq||, eY"c6kAi7znY!~wo ?g@G8r˓ X]fHo6M{x|yLU@SQ#&IN +#3'4Z\‹"w/"l(~d[5_/dIC_$A3 @;v̧ ;Uɭe*^eB57W0Pp~εN_X0,x!DUF5hqb]Gœyw5)W#]9e:.dhA .BA ]U0^Sna(bDmRD#~"P!=Q8^Gǔ =k7.K{ݳ7I9daXϭ_Qj+,ֻ'Fi};%AJ0/P}3$N߬ٶi̚D(n3:gv[C׳ G v_ /+  ;:WDN .pݹyqaHaOAsG DI-cm7=^yk.Bg-VWW({4tE+y!S,mK5n14E4xt({Y8AU7h;N1{Zy/4)({ 2󏾿Υ^*rwkL1:c ΪxۛIp|m8D\/}} p)܀ijl>Ag,yn\A晣9BH0Vk$7\W#xMBEn#=>94\yyAIbx]LxcA6rNעeJ:\BPcv;+Q9N @MgPkP>9Zs*W W?{mLcx9/XG C(\W.k#? ;?a/Jm%SL]bSΡSoֈ>NZgX{q-grN"cv/XbzECv˧afO/Z$΂HSB[yδaK'ˋфB+p:!Tqk˷YK  YW5 5l诉GӘh%T+T~{'ed;n@-CBYf]tI:*ohcʥ>I./uXK>kǶXXtIV;6Z|r]n`;G(Ty˰r埻<̦)D0=wZ32,~Vn6r۵ۍ#E]Vxl8/׾w(51mDg끮 Ճb2-螘3D )q?#< ۴Xbt~ɫK̟~sNz/N2'sNrX!&M sac慹T8X7i1-RjJyL~&>wJ!xQ}s}Q.uR7W_^SQ\Ly+ @3,ϗP\Z/^>US -Mnwq|pۭ*3G` "!%5_V/7G9۾g?ukP&AW8+txɕ9Y`l Z&S K9LƠCU:w!ߍ4Wr5KӶ?gכ,v r|>R UU!!"8_bݢ?͏1l;hoOM|tM*  <8FHSL1箏ĥ~xZObt/Wf9{$Wtqmuu %t#>jLNK_*ٖJxRE'%]aT4EW$ɮgޝ# 2;0FE}ǭYwPqxZchnPbQO :ÑWHҜ>ƃ'g4Cv:Bݴ ǒ[z~m:N@Cha /8 lܻ环ZhX8:YgD*#6SlkNA v]9ɓЏpG VF0j=WFBAr`@j N Ucd$b>6uH /Pq<$h6w6~4 ɑ #͚A8{D|pЅգØJ= 6r NB)-Ȑg,#.3tEMoH'Q*%e8qwjԑnFB[pBV8?릆|h6gQ!"Guva'=SX!ޒ/."݋$E[/8ΈBy!-ޥNY(˹ x_d&{1kPGG^1y()olz5~m(5vՅ2y0FYׄRFІk,v"uޏ#˸$CHOɁQg3BSw[Gh5Or\*8UseݷC 7]@7 ޞ C!AT fpk ;&Π=Rds-Nm.2zE%"?xޛ֚XO!zInNwj̀wi3 p-*XS;nm)1>ャJ;::UR ~CtF]XVfPJa^#2аΙj3vgK.b,ˠBY8??R a{uiFN8>>E^.sI`ZW^l6ff8<QPm[~n0{l;9}u ittZk>:>]A/46=t{J9XϞBh߳(~ӱE^7 (/^ѼA]cE?yn.~u] ł#4˲w)@A,u]( k{w(P5gm8A Ϸn[m|ُ5#E`ZK nnkm4uZ?g~C6czh}Pu'\gŤqLq]n<&&ƪ֚M\9ϧt|HcOA:^,shf5nw^`Y}o֥dX*xnEWt ucΟf 꺆nLo6%R󜏑)߃E wN~ —Xe 1wIENDB`biber-2.19/htdocs/index.html000066400000000000000000000140051440117422400160100ustar00rootroot00000000000000 Biber: BibTeX replacement for biblatex

Biber: A BibTeX replacement for users of BibLaTeX

The biblatex package is becoming the definitive citation management tool for LaTeX users. Biblatex provides a powerful and flexible macro interface for authors of citation styles.

Biblatex's own data backend processor, biber, allows biblatex to offer the following features:

  • Deals with the full range of UTF-8
  • Sorts in a completely customisable manner using, when available, CLDR collation tailoring
  • Allows for per-entrytype options
  • Automatically encodes the .bbl into any supported encoding format ("Supported" here means encodings supported by the Perl Encode module)
  • Processes all bibliography sections in one pass of the tool
  • Handles UTF-8 citekeys and filenames (given a suitable fully UTF-8 compliant TeX engine)
  • Creates entry sets dynamically and allows easily defined static entry sets, all processed in one pass
  • "Syntactic" inheritance via new XDATA entrytype and field. This can be thought of as a field-based generalisation of the BibTeX @STRING functionality (which is also supported).
  • "Semantic" inheritance via a generalisation of the BibTeX crossreference mechanism. This is highly customisable by the user--it is possible to choose which fields to inherit for which entrytypes and to inherit fields under different names etc. Nested crossreferences are also supported.
  • Handles complex auto-expansion and contraction of names and namelists (See section 4.11.4 of the BibLaTeX manual for an excellent explanation with examples, this is quite an impressive feature ...)
  • Extensible modular data sources architecture for ease of adding more data source types
  • Support for remote data sources
  • User-definable mapping and suppression of fields and entrytypes in data sources. You can use this to, for example, ignore all ABSTRACT fields completely.
  • Support for related entries, to enable generic treatment of things like "translated as", "reprinted as", "reprint of" etc
  • Customisable labels
  • Multiple bibliography lists in the same section with different sorting and filtering
  • No more restriction to a static data model of specific fields and entrytypes.
  • Structural validation of the data against the data model with a customisable validation model.

Biber has a comprehensive PDF manual which you can find on SourceForge in the documentation folder for the release. Much of the functionality is exposed through BibLaTeX and the BibLaTeX PDF manual is the primary source for much Biber+BibLaTeX information. Biber-only features are marked prominently in the BibLaTeX manual with the marginal note "Biber only"

Biber 2.19 is now released. It should be used in conjunction with biblatex 3.19".


Source code repository and bug tracker on Github


Valid XHTML 1.0 Transitional Valid CSS!

biber-2.19/lib/000077500000000000000000000000001440117422400132755ustar00rootroot00000000000000biber-2.19/lib/Biber.pm000066400000000000000000005444301440117422400146700ustar00rootroot00000000000000package Biber; use v5.24; use strict; use warnings; use parent qw(Class::Accessor Biber::Internals); use constant { EXIT_OK => 0, EXIT_ERROR => 2 }; use Biber::Config; use Biber::DataLists; use Biber::DataList; use Biber::DataModel; use Biber::Constants; use Biber::Internals; use Biber::Entries; use Biber::Entry; use Biber::Entry::Names; use Biber::Entry::Name; use Biber::LangTags; use Biber::Sections; use Biber::Section; use Biber::LaTeX::Recode; use Biber::UCollate; use Biber::Utils; use Carp; use Data::Dump; use Digest::MD5 qw( md5_hex ); use Data::Compare; use Encode; use File::Copy; use File::Slurper; use File::Spec; use File::Temp; use IO::File; use List::AllUtils qw( first uniq max first_index ); use Log::Log4perl qw( :no_extra_logdie_message ); use POSIX qw( locale_h ); # for lc() use Scalar::Util qw(looks_like_number); use Sort::Key qw ( multikeysorter ); use Text::BibTeX qw(:macrosubs); use Unicode::Normalize; =encoding utf-8 =head1 NAME Biber - main module for biber, a bibtex replacement for users of biblatex =cut my $logger = Log::Log4perl::get_logger('main'); =head1 SYNOPSIS use Biber; my $biber = Biber->new(); $biber->parse_ctrlfile("example.bcf"); $biber->prepare; =cut our $MASTER; # reference to biber object. Needed all over the place =head1 METHODS =head2 new Initialize the Biber object, optionally passing named options as arguments. =cut sub new { my ($class, %opts) = @_; my $self = bless {}, $class; Biber::Config->_initopts(\%opts); # Add a reference to a global temp dir used for various things $self->{TEMPDIR} = File::Temp->newdir("biber_tmp_XXXX", TMPDIR => 1, CLEANUP => (Biber::Config->getoption('noremove_tmp_dir') ? 0 : 1)); $self->{TEMPDIRNAME} = $self->{TEMPDIR}->dirname; # Initialise recoding schemes Biber::LaTeX::Recode->init_sets(Biber::Config->getoption('decodecharsset'), Biber::Config->getoption('output_safecharsset')); $MASTER = $self; # Validate if asked to. # This has to be here, after config file is read and options # are parsed. It seems strange to validate the config file after it's been # read but there is no choice and it's useful anyway as this will catch some semantic # errors. Uses biber_error() and so $MASTER has to be defined before we call this if (Biber::Config->getoption('validate_config') and $opts{configfile}) { validate_biber_xml($opts{configfile}, 'config', ''); } # Set up LangTag parser $self->{langtags} = Biber::LangTags->new(); return $self; } =head2 display_end Output summary of warnings/errors/misc before exit =cut sub display_end { my $self = shift; # Show location of temporary directory if (Biber::Config->getoption('show_tmp_dir')) { if (Biber::Config->getoption('noremove_tmp_dir')) { $logger->info("TEMP DIR: " . $self->biber_tempdir_name); } else { biber_warn("--noremove-tmp-dir was not set, no temporary directory to show"); } } if ($self->{warnings}) { foreach my $w ($self->{warnings}->@*) { $logger->warn($w); } $logger->info('WARNINGS: ' . scalar($self->{warnings}->@*)); } if ($self->{errors}) { $logger->info('ERRORS: ' . $self->{errors}); exit EXIT_ERROR; } } =head2 biber_tempdir Returns a File::Temp directory object for use in various things =cut sub biber_tempdir { my $self = shift; return $self->{TEMPDIR}; } =head2 biber_tempdir_name Returns the directory name of the File::Temp directory object =cut sub biber_tempdir_name { my $self = shift; return $self->{TEMPDIRNAME}; } =head2 sections my $sections= $biber->sections Returns a Biber::Sections object describing the bibliography sections =cut sub sections { my $self = shift; return $self->{sections}; } =head2 add_sections Adds a Biber::Sections object. Used externally from, e.g. biber =cut sub add_sections { my ($self, $sections) = @_; $self->{sections} = $sections; return; } =head2 datalists my $datalists = $biber->datalists Returns a Biber::DataLists object describing the bibliography sorting lists =cut sub datalists { my $self = shift; return $self->{datalists}; } =head2 langtags Returns a Biber::LangTags object containing a parser for BCP47 tags =cut sub langtags { my $self = shift; return $self->{langtags}; } =head2 set_output_obj Sets the object used to output final results Must be a subclass of Biber::Output::base =cut sub set_output_obj { my $self = shift; my $obj = shift; croak('Output object must be subclass of Biber::Output::base!') unless $obj->isa('Biber::Output::base'); $self->{output_obj} = $obj; return; } =head2 get_preamble Returns the current preamble as an array ref =cut sub get_preamble { my $self = shift; return $self->{preamble}; } =head2 get_output_obj Returns the object used to output final results =cut sub get_output_obj { my $self = shift; return $self->{output_obj}; } =head2 set_current_section Sets the current section number that we are working on to a section number =cut sub set_current_section { my $self = shift; my $secnum = shift; $self->{current_section} = $secnum; return; } =head2 get_current_section Gets the current section number that we are working on =cut sub get_current_section { my $self = shift; return $self->{current_section}; } =head2 tool_mode_setup Fakes parts of the control file for tool mode =cut sub tool_mode_setup { my $self = shift; my $bib_sections = new Biber::Sections; # There are no sections in tool mode so create a pseudo-section my $bib_section = new Biber::Section('number' => 99999); my $ifs = []; foreach my $if (@ARGV) { push $ifs->@*, {type => 'file', name => $if, datatype => Biber::Config->getoption('input_format'), encoding => Biber::Config->getoption('input_encoding')}; } $bib_section->set_datasources($ifs); $bib_section->set_allkeys(1); $bib_sections->add_section($bib_section); # Always resolve date meta-information in tool mode Biber::Config->setblxoption(undef, 'dateapproximate', 1); Biber::Config->setblxoption(undef, 'dateera', 1); Biber::Config->setblxoption(undef, 'dateuncertain', 1); # No need to worry about this in tool mode but it needs to be set Biber::Config->setblxoption(undef, 'namestrunchandling', 0); # Add the Biber::Sections object to the Biber object $self->add_sections($bib_sections); my $datalists = new Biber::DataLists; my $seclist = Biber::DataList->new(section => 99999, sortingtemplatename => 'tool', sortingnamekeytemplatename => 'global', uniquenametemplatename => 'global', labelalphanametemplatename => 'global', labelprefix => '', name => 'tool/global//global/global'); $seclist->set_type('entry'); # Locale just needs a default here - there is no biblatex option to take it from Biber::Config->setblxoption(undef, 'sortlocale', 'en_US'); if ($logger->is_debug()) {# performance tune $logger->debug("Adding 'entry' list 'tool' for pseudo-section 99999"); } $datalists->add_list($seclist); $self->{datalists} = $datalists; # User maps are set in config file and need some massaging which normally # happens in parse_ctrlfile if (my $usms = Biber::Config->getoption('sourcemap')) { # Force "user" level for the maps $usms->@* = map {$_->{level} = 'user';$_} $usms->@*; } return; } =head2 parse_ctrlfile This method reads the control file generated by biblatex to work out the various biblatex options. See Constants.pm for defaults and example of the data structure being built here. =cut sub parse_ctrlfile { my ($self, $ctrl_file) = @_; my $ctrl_file_path = locate_data_file($ctrl_file); Biber::Config->set_ctrlfile_path($ctrl_file_path); biber_error("Cannot find control file '$ctrl_file'! - Did latex run successfully on your .tex file before you ran biber?") unless ($ctrl_file_path and check_exists($ctrl_file_path)); # Early check to make sure .bcf is well-formed. If not, this means that the last biblatex run # exited prematurely while writing the .bcf. This results is problems for latexmk. So, if the # .bcf is broken, just stop here, remove the .bcf and exit with error so that we don't write # a bad .bbl my $checkbuf; unless ($checkbuf = eval {slurp_switchr($ctrl_file_path)->$*}) { # Reading ctrl-file as UTF-8 failed. Probably it was written by fontenc as latin1 # with some latin1 char in it (probably a sourcemap), so try that as a last resort unless (eval {$checkbuf = slurp_switchr($ctrl_file_path, 'latin1')->$*}) { biber_error("$ctrl_file_path is not UTF-8 or even latin1, please delete it and run latex again or check that biblatex is writing a valid .bcf file."); } # Write ctrl file as UTF-8 slurp_switchw($ctrl_file_path, $checkbuf);# Unicode NFC boundary } $checkbuf = NFD($checkbuf);# Unicode NFD boundary unless (eval "XML::LibXML->load_xml(string => \$checkbuf)") { my $output = $self->get_output_obj->get_output_target_file; unlink($output) unless $output eq '-';# ignore deletion of STDOUT marker biber_error("$ctrl_file_path is malformed, last biblatex run probably failed. Deleted $output"); } # Validate if asked to if (Biber::Config->getoption('validate_control')) { validate_biber_xml($ctrl_file_path, 'bcf', 'https://sourceforge.net/projects/biblatex'); } # Convert .bcf to .html using XSLT transform if asked to if (Biber::Config->getoption('convert_control')) { require XML::LibXSLT; require XML::LibXML; my $xslt = XML::LibXSLT->new(); my $CFstyle; # we assume that the schema files are in the same dir as Biber.pm: (my $vol, my $biber_path, undef) = File::Spec->splitpath( $INC{"Biber.pm"} ); # Deal with the strange world of PAR::Packer paths # We might be running inside a PAR executable and @INC is a bit odd in this case # Specifically, "Biber.pm" in @INC might resolve to an internal jumbled name # nowhere near to these files. You know what I mean if you've dealt with pp my $bcf_xsl; if ($biber_path =~ m|/par\-| and $biber_path !~ m|/inc|) { # a mangled PAR @INC path $bcf_xsl = File::Spec->catpath($vol, "$biber_path/inc/lib/Biber", 'bcf.xsl'); } else { $bcf_xsl = File::Spec->catpath($vol, "$biber_path/Biber", 'bcf.xsl'); } if (check_exists($bcf_xsl)) { $CFstyle = XML::LibXML->load_xml( location => $bcf_xsl, no_cdata=>1 ) } else { biber_warn("Cannot find XML::LibXSLT stylesheet. Skipping conversion : $!"); goto LOADCF; } my $CF = XML::LibXML->load_xml(location => $ctrl_file_path); my $stylesheet = $xslt->parse_stylesheet($CFstyle); my $CFhtml = $stylesheet->transform($CF); $stylesheet->output_file($CFhtml, $ctrl_file_path . '.html'); $logger->info("Converted BibLaTeX control file '$ctrl_file_path' to '$ctrl_file_path.html'"); } # Open control file LOADCF: $logger->info("Reading '$ctrl_file_path'"); my $buf = slurp_switchr($ctrl_file_path)->$*; $buf = NFD($buf);# Unicode NFD boundary # Read control file require XML::LibXML::Simple; my $bcfxml = XML::LibXML::Simple::XMLin($buf, 'ForceContent' => 1, 'ForceArray' => [ qr/\A(?:no)*citekey(?:count)?\z/, qr/\Aoption\z/, qr/\Aoptions\z/, qr/\Avalue\z/, qr/\Asortitem\z/, qr/\Abibdata\z/, qr/\Adatasource\z/, qr/\Aconstant\z/, qr/\Asection\z/, qr/\Asort(?:ex|in)clusion\z/, qr/\A(?:ex|in)clusion\z/, qr/\Asort\z/, qr/\Amode\z/, qr/\Amaps\z/, qr/\Amap\z/, qr/\Amap_step\z/, qr/\Aper_type\z/, qr/\Aper_nottype\z/, qr/\Akeypart\z/, qr/\Apart\z/, qr/\Asortingnamekeytemplate\z/, qr/\Asortingtemplate\z/, qr/\Aper_datasource\z/, qr/\Anosort\z/, qr/\Anonamestring\z/, qr/\Amember\z/, qr/\Anoinit\z/, qr/\Anolabel\z/, qr/\Anolabelwidthcount\z/, qr/\Apresort\z/, qr/\Atype_pair\z/, qr/\Ainherit\z/, qr/\Anamepart\z/, qr/\Afieldor\z/, qr/\Afieldxor\z/, qr/\Afield\z/, qr/\Ascope\z/, qr/\Atransliteration\z/, qr/\Atranslit\z/, qr/\Aalias\z/, qr/\Aalsoset\z/, qr/\Aconstraints\z/, qr/\Aconstraint\z/, qr/\Aentryfields\z/, qr/\Aentrytype\z/, qr/\Adatetype\z/, qr/\Adatalist\z/, qr/\Alabel(?:part|element|alpha(?:name)?template)\z/, qr/\Auniquenametemplate\z/, qr/\Acondition\z/, qr/\Afilter(?:or)?\z/, qr/\Aoptionscope\z/, ], 'NsStrip' => 1, 'KeyAttr' => []); # use Data::Dump;dd($bcfxml);exit 0; my $controlversion = $bcfxml->{version}; my $bltxversion = $bcfxml->{bltxversion}; Biber::Config->setblxoption(undef, 'controlversion', $controlversion); unless ($controlversion eq $BCF_VERSION) { biber_error("Error: Found biblatex control file version $controlversion, expected version $BCF_VERSION.\nThis means that your biber ($Biber::Config::VERSION) and biblatex ($bltxversion) versions are incompatible.\nSee compat matrix in biblatex or biber PDF documentation."); } # Option scope foreach my $bcfscopeopts ($bcfxml->{optionscope}->@*) { my $scope = $bcfscopeopts->{type}; foreach my $bcfscopeopt ($bcfscopeopts->{option}->@*) { my $opt = $bcfscopeopt->{content}; $CONFIG_BIBLATEX_OPTIONS{$scope}{$opt}{OUTPUT} = $bcfscopeopt->{backendout} || 0; if (my $bin = process_backendin($bcfscopeopt->{backendin})) { $CONFIG_BIBLATEX_OPTIONS{$scope}{$opt}{INPUT} = $bin; } $CONFIG_OPTSCOPE_BIBLATEX{$opt}{$scope} = 1; $CONFIG_SCOPEOPT_BIBLATEX{$scope}{$opt} = 1; if (defined($CONFIG_OPTTYPE_BIBLATEX{$opt}) and lc($CONFIG_OPTTYPE_BIBLATEX{$opt}) ne lc($bcfscopeopt->{datatype})) { biber_warn("Warning: Datatype for biblatex option '$opt' has conflicting values, probably at different scopes. This is not supported."); } else { $CONFIG_OPTTYPE_BIBLATEX{$opt} = lc($bcfscopeopt->{datatype}); } } } # Now we have the per-namelist options, make the accessors for them in the Names package foreach my $nso (keys $CONFIG_SCOPEOPT_BIBLATEX{NAMELIST}->%*) { Biber::Entry::Names->follow_best_practice; Biber::Entry::Names->mk_accessors($nso); } # Now we have the per-name options, make the accessors for them in the Name package foreach my $no (keys $CONFIG_SCOPEOPT_BIBLATEX{NAME}->%*) { Biber::Entry::Name->follow_best_practice; Biber::Entry::Name->mk_accessors($no); } # OPTIONS foreach my $bcfopts ($bcfxml->{options}->@*) { # Biber options if ($bcfopts->{component} eq 'biber') { # Global options if ($bcfopts->{type} eq 'global') { foreach my $bcfopt ($bcfopts->{option}->@*) { # unless already explicitly set from cmdline/config file unless (Biber::Config->isexplicitoption($bcfopt->{key}{content})) { if ($bcfopt->{type} eq 'singlevalued') { Biber::Config->setoption($bcfopt->{key}{content}, $bcfopt->{value}[0]{content}); } elsif ($bcfopt->{type} eq 'multivalued') { Biber::Config->setoption($bcfopt->{key}{content}, [ map {$_->{content}} sort {$a->{order} <=> $b->{order}} $bcfopt->{value}->@* ]); } } } } } # BibLaTeX options if ($bcfopts->{component} eq 'biblatex') { # Global options if ($bcfopts->{type} eq 'global') { foreach my $bcfopt ($bcfopts->{option}->@*) { if ($bcfopt->{type} eq 'singlevalued') { Biber::Config->setblxoption(undef, $bcfopt->{key}{content}, $bcfopt->{value}[0]{content}); } elsif ($bcfopt->{type} eq 'multivalued') { # sort on order attribute and then remove it Biber::Config->setblxoption(undef, $bcfopt->{key}{content}, [ map {delete($_->{order}); $_} sort {$a->{order} <=> $b->{order}} $bcfopt->{value}->@* ]); } } } # Entrytype options else { my $entrytype = $bcfopts->{type}; foreach my $bcfopt ($bcfopts->{option}->@*) { if ($bcfopt->{type} eq 'singlevalued') { Biber::Config->setblxoption(undef, $bcfopt->{key}{content}, $bcfopt->{value}[0]{content}, 'ENTRYTYPE', $entrytype); } elsif ($bcfopt->{type} eq 'multivalued') { # sort on order attribute and then remove it Biber::Config->setblxoption(undef, $bcfopt->{key}{content}, [ map {delete($_->{order}); $_} sort {$a->{order} <=> $b->{order}} $bcfopt->{value}->@* ], 'ENTRYTYPE', $entrytype); } } } } } # DATAFIELD SETS # Since we have to use the datamodel to resolve some members, just record the settings # here for processing after the datamodel is parsed foreach my $s ($bcfxml->{datafieldset}->@*) { my $name = lc($s->{name}); foreach my $m ($s->{member}->@*) { if (my $field = $m->{field}[0]) {# 'field' has forcearray for other things push $DATAFIELD_SETS{$name}->@*, $field; } else { push $DATAFIELD_SETS{$name}->@*, {fieldtype => $m->{fieldtype}, datatype => $m->{datatype}}; } } } # DATASOURCE MAPPING # This is special as it's both a biblatex option and a biber option # We merge into the biber option # In biblatex you can set driver mappings but not in biber # Order of application of maps is decided by the level and within 'user' level, # which can come from two places (biber.conf and \DeclareSourcemap), order is # \DeclareSourcemap, then biber.conf if (exists($bcfxml->{sourcemap})) { # User maps are set in config file if (my $usms = Biber::Config->getoption('sourcemap')) { # Force "user" level for the maps $usms->@* = map {$_->{level} = 'user';$_} $usms->@*; # Merge any user maps from the document set by \DeclareSourcemap into user # maps set in the biber config file. These document user maps take precedence so go # at the front of any other user maps # Are there any doc maps to merge? if (my @docmaps = grep {$_->{level} eq 'user'} $bcfxml->{sourcemap}{maps}->@*) { # If so, get a reference to the maps in the config map and prepend all # of the doc maps to it. Must also deref the doc maps map element to make # sure that they collapse nicely my $configmaps = first {$_->{level} eq 'user'} $usms->@*; unshift($configmaps->{map}->@*, map {$_->{map}->@*} @docmaps); } # Merge the driver/style maps with the user maps from the config file if (my @m = grep {$_->{level} eq 'driver' or $_->{level} eq 'style'} $bcfxml->{sourcemap}{maps}->@* ) { Biber::Config->setoption('sourcemap', [$usms->@*, @m]); } else { # no driver defaults, just override the config file user map settings Biber::Config->setoption('sourcemap', $bcfxml->{sourcemap}{maps}); } } else { # just write the option as there are no config file settings at all Biber::Config->setoption('sourcemap', $bcfxml->{sourcemap}{maps}); } } # LABELALPHA NAME TEMPLATE my $lants; foreach my $t ($bcfxml->{labelalphanametemplate}->@*) { my $lant; foreach my $np (sort {$a->{order} <=> $b->{order}} $t->{namepart}->@*) { push $lant->@*, {namepart => $np->{content}, use => $np->{use}, pre => $np->{pre}, substring_compound => $np->{substring_compound}, substring_side => $np->{substring_side}, substring_width => $np->{substring_width}}; } $lants->{$t->{name}} = $lant; } Biber::Config->setblxoption(undef, 'labelalphanametemplate', $lants); # LABELALPHA TEMPLATE foreach my $t ($bcfxml->{labelalphatemplate}->@*) { my $latype = $t->{type}; if ($latype eq 'global') { Biber::Config->setblxoption(undef, 'labelalphatemplate', $t); } else { Biber::Config->setblxoption(undef, 'labelalphatemplate', $t, 'ENTRYTYPE', $latype); } } # EXTRADATE specification my $ed; foreach my $scope ($bcfxml->{extradatespec}->{scope}->@*) { my $fields; foreach my $field (sort {$a->{order} <=> $b->{order}} $scope->{field}->@*) { push $fields->@*, $field->{content}; } push $ed->@*, $fields; } Biber::Config->setblxoption(undef, 'extradatespec', $ed); # INHERITANCE schemes for crossreferences (always global) Biber::Config->setblxoption(undef, 'inheritance', $bcfxml->{inheritance}); # NOINIT # Make the data structure look like the biber config file structure # "value" is forced to arrays for other elements so we extract # the first element here as they will always be only length=1 my $noinit; foreach my $ni ($bcfxml->{noinits}{noinit}->@*) { push $noinit->@*, { value => $ni->{value}[0]}; } # There is a default so don't set this option if nothing is in the .bcf Biber::Config->setoption('noinit', $noinit) if $noinit; # NOLABEL # Make the data structure look like the biber config file structure # "value" is forced to arrays for other elements so we extract # the first element here as they will always be only length=1 my $nolabel; foreach my $nl ($bcfxml->{nolabels}{nolabel}->@*) { push $nolabel->@*, { value => $nl->{value}[0]}; } # There is a default so don't set this option if nothing is in the .bcf Biber::Config->setoption('nolabel', $nolabel) if $nolabel; # NOLABELWIDTHCOUNT # Make the data structure look like the biber config file structure # "value" is forced to arrays for other elements so we extract # the first element here as they will always be only length=1 my $nolabelwidthcount; foreach my $nlwc ($bcfxml->{nolabelwidthcounts}{nolabelwidthcount}->@*) { push $nolabelwidthcount->@*, { value => $nlwc->{value}[0]}; } # There is a default so don't set this option if nothing is in the .bcf Biber::Config->setoption('nolabelwidthcount', $nolabelwidthcount) if $nolabelwidthcount; # NOSORT # Make the data structure look like the biber config file structure # "field" and "value" are forced to arrays for other elements so we extract # the first element here as they will always be only length=1 my $nosort; foreach my $ns ($bcfxml->{nosorts}{nosort}->@*) { push $nosort->@*, {name => $ns->{field}[0], value => $ns->{value}[0]}; } # There is a default so don't set this option if nothing is in the .bcf Biber::Config->setoption('nosort', $nosort) if $nosort; # NONAMESTRING # Make the data structure look like the biber config file structure # "field" and "value" are forced to arrays for other elements so we extract # the first element here as they will always be only length=1 my $nonamestring; foreach my $ns ($bcfxml->{nonamestrings}{nonamestring}->@*) { push $nonamestring->@*, {name => $ns->{field}[0], value => $ns->{value}[0]}; } Biber::Config->setoption('nonamestring', $nonamestring) if $nonamestring; # UNIQUENAME TEMPLATE my $unts; my $checkbase = 0; foreach my $unt ($bcfxml->{uniquenametemplate}->@*) { my $untval = []; foreach my $np (sort {$a->{order} <=> $b->{order}} $unt->{namepart}->@*) { $checkbase = 1 if $np->{base}; push $untval->@*, {namepart => $np->{content}, use => $np->{use}, disambiguation => $np->{disambiguation}, base => $np->{base}}; } $unts->{$unt->{name}} = $untval; } # Check to make sure we have a base to disambiguate from. If not, we can get infinite loops # in the disambiguation code biber_error("The uniquenametemplate must contain at least one 'base' part otherwise name disambiguation is impossible") unless $checkbase; Biber::Config->setblxoption(undef, 'uniquenametemplate', $unts); # SORTING NAME KEY # Use the order attributes to make sure things are in right order and create a data structure # we can use later my $snss; foreach my $sns ($bcfxml->{sortingnamekeytemplate}->@*) { my $snkps; foreach my $snkp (sort {$a->{order} <=> $b->{order}} $sns->{keypart}->@*) { my $snps; foreach my $snp (sort {$a->{order} <=> $b->{order}} $snkp->{part}->@*) { my $np; if ($snp->{type} eq 'namepart') { $np = { type => 'namepart', value => $snp->{content} }; if (exists($snp->{use})) { $np->{use} = $snp->{use}; } if (exists($snp->{inits})) { $np->{inits} = $snp->{inits}; } } elsif ($snp->{type} eq 'literal') { $np = { type => 'literal', value => $snp->{content} }; } push $snps->@*, $np; } push $snkps->@*, $snps; } $snss->{$sns->{name}}{visibility} = $sns->{visibility}; $snss->{$sns->{name}}{template} = $snkps; } Biber::Config->setblxoption(undef, 'sortingnamekeytemplate', $snss); # SORTING # transliterations foreach my $tr ($bcfxml->{transliteration}->@*) { if ($tr->{entrytype}[0] eq '*') { # already array forced for another option Biber::Config->setblxoption(undef, 'translit', $tr->{translit}); } else { # per_entrytype Biber::Config->setblxoption(undef, 'translit', $tr->{translit}, 'ENTRYTYPE', $tr->{entrytype}[0]); } } # sorting excludes foreach my $sex ($bcfxml->{sortexclusion}->@*) { my $excludes; foreach my $ex ($sex->{exclusion}->@*) { $excludes->{$ex->{content}} = 1; } Biber::Config->setblxoption(undef, 'sortexclusion', $excludes, 'ENTRYTYPE', $sex->{type}); } # sorting includes foreach my $sin ($bcfxml->{sortinclusion}->@*) { my $includes; foreach my $in ($sin->{inclusion}->@*) { $includes->{$in->{content}} = 1; } Biber::Config->setblxoption(undef, 'sortinclusion', $includes, 'ENTRYTYPE', $sin->{type}); } # presort defaults foreach my $presort ($bcfxml->{presort}->@*) { # Global presort default unless (exists($presort->{type})) { Biber::Config->setblxoption(undef, 'presort', $presort->{content}); } # Per-type default else { Biber::Config->setblxoption(undef, 'presort', $presort->{content}, 'ENTRYTYPE', $presort->{type}); } } my $sortingtemplates; foreach my $ss ($bcfxml->{sortingtemplate}->@*) { $sortingtemplates->{$ss->{name}} = _parse_sort($ss); } Biber::Config->setblxoption(undef, 'sortingtemplate', $sortingtemplates); # DATAMODEL schema (always global and is an array to accomodate multiple # datamodels in tool mode) # Because in tests, parse_ctrlfile() is called several times so we need to sanitise this here Biber::Config->setblxoption(undef, 'datamodel', []); Biber::Config->addtoblxoption(undef, 'datamodel', $bcfxml->{datamodel}); # SECTIONS # This is also where we set data files as these are associated with a bib section # Data sources my %bibdatasources = (); foreach my $data ($bcfxml->{bibdata}->@*) { foreach my $datasource ($data->{datasource}->@*) { unless (first {$_->{type} eq $datasource->{type} and $_->{datatype} eq $datasource->{datatype} and $_->{name} eq $datasource->{content}} $bibdatasources{$data->{section}[0]}->@*) { push $bibdatasources{$data->{section}[0]}->@*, { type => $datasource->{type}, name => $datasource->{content}, datatype => $datasource->{datatype}, encoding => $datasource->{encoding} // Biber::Config->getoption('input_encoding'), glob => $datasource->{glob} // Biber::Config->getoption('glob_datasources')}; } } } # Be friendly to latexmk etc. unless (%bibdatasources) { biber_warn("No data sources defined!"); exit EXIT_OK; } my $key_flag = 0; my $bib_sections = new Biber::Sections; SECTION: foreach my $section ($bcfxml->{section}->@*) { my $bib_section; my $secnum = $section->{number}; # Can be multiple section 0 entries and so re-use that section object if it exists if (my $existing_section = $bib_sections->get_section($secnum)) { $bib_section = $existing_section; } else { $bib_section = new Biber::Section('number' => $secnum); } # Set the data files for the section unless we've already done so # (for example, for multiple section 0 entries) $bib_section->set_datasources($bibdatasources{$secnum}) unless $bib_section->get_datasources; my @prekeys = (); my @keys = (); # Pre-process to deal with situation where key is both \nocite'd and \cited # \cite'd takes priority foreach my $keyc ($section->{citekey}->@*) { my $key = NFD($keyc->{content}); # Key is already UTF-8 - it comes from UTF-8 XML if ($keyc->{nocite}) {# \nocite'd # Don't add if there is an identical key without nocite since \cite takes precedence unless (first {$key eq NFD($_->{content})} @prekeys) { push @prekeys, $keyc; } } else {# \cite'd # If there is already a nocite of this key, remove the nocite attribute and don't add if (first {($key eq NFD($_->{content})) and $_->{nocite}} @prekeys) { @prekeys = map {delete($_->{nocite}) if $key eq NFD($_->{content});$_} @prekeys; } else { push @prekeys, $keyc; } } } # Loop over all section keys foreach my $keyc (@prekeys) { my $key = NFD($keyc->{content}); # Key is already UTF-8 - it comes from UTF-8 XML # Stop reading citekeys if we encounter "*" as a citation as this means # "all keys" if ($key eq '*') { $bib_section->set_allkeys(1); Biber::Config->set_keyorder($secnum, $key, $keyc->{order}); if ($keyc->{nocite}) { $bib_section->set_allkeys_nocite(1); } $key_flag = 1; # There is at least one key, used for error reporting below } elsif (not $bib_section->get_seenkey($key)) { # Dynamic set definition # Save dynamic key -> member keys mapping for set entry auto creation later # We still need to find these even if allkeys is set if (exists($keyc->{type}) and $keyc->{type} eq 'set') { $bib_section->set_dynamic_set($key, split /\s*,\s*/, $keyc->{members}); push @keys, $key; $key_flag = 1; # There is at least one key, used for error reporting below } else { # Track cite/nocite - needed for sourcemapping logic if ($keyc->{nocite}) { $bib_section->add_nocite($key); } else { $bib_section->add_cite($key); } # Set order information - there is no order on dynamic key defs above # as they are a definition, not a cite Biber::Config->set_keyorder($secnum, $key, $keyc->{order}); # order of keys which have the same order so we can track order in \cite{a,b,c} if ($keyc->{intorder}) { Biber::Config->set_internal_keyorder($secnum, $key, $keyc->{intorder}); } push @keys, $key; $key_flag = 1; # There is at least one key, used for error reporting below } } $bib_section->incr_seenkey($key); # always increment } # Get citecounts if present foreach my $keycount ($section->{citekeycount}->@*) { my $key = NFD($keycount->{content}); # Key is already UTF-8 - it comes from UTF-8 XML $bib_section->set_citecount($key, $keycount->{count}); } if ($bib_section->is_allkeys) { # Normalise - when allkeys is true don't need citekeys - just in case someone # lists "*" and also some other citekeys $bib_section->del_citekeys; $logger->info("Using all citekeys in bib section " . $secnum); } else { $logger->info('Found ', $#keys+1 , " citekeys in bib section $secnum"); } unless ($bib_section->is_allkeys) { if ($logger->is_debug()) { # performance shortcut $logger->debug("The citekeys for section $secnum are: ", join(', ', sort @keys), "\n"); } } $bib_section->add_citekeys(@keys) unless $bib_section->is_allkeys; $bib_sections->add_section($bib_section); } # Add the Biber::Sections object to the Biber object $self->{sections} = $bib_sections; # Read datalists my $datalists = new Biber::DataLists; foreach my $list ($bcfxml->{datalist}->@*) { my $ltype = $list->{type}; my $lstn = $list->{sortingtemplatename}; my $lsnksn = $list->{sortingnamekeytemplatename}; my $luntn = $list->{uniquenametemplatename}; my $llantn = $list->{labelalphanametemplatename}; my $lpn = $list->{labelprefix}; my $lname = $list->{name}; my $lsection = $list->{section}[0]; # because "section" needs to be a list elsewhere in XML if ($datalists->get_list(section => $lsection, name => $lname, type => $ltype, sortingtemplatename => $lstn, sortingnamekeytemplatename => $lsnksn, labelprefix => $lpn, uniquenametemplatename => $luntn, labelalphanametemplatename => $llantn)) { if ($logger->is_debug()) {# performance tune $logger->debug("Section datalist '$lname' of type '$ltype' with sortingtemplate '$lstn', sortingnamekeytemplatename '$lsnksn', labelprefix '$lpn', uniquenametemplate '$luntn' and labelalphanametemplate '$llantn' is repeated for section $lsection - ignoring"); } next; } my $datalist = Biber::DataList->new(section => $lsection, sortingtemplatename => $lstn, sortingnamekeytemplatename => $lsnksn, uniquenametemplatename => $luntn, labelalphanametemplatename => $llantn, labelprefix => $lpn, name => $lname); $datalist->set_type($ltype || 'entry'); # lists are entry lists by default $datalist->set_name($lname || "$lstn/$lsnksn/$lpn/$luntn/$llantn"); # default to ss+snkss+pn+untn+lantn foreach my $filter ($list->{filter}->@*) { $datalist->add_filter({'type' => $filter->{type}, 'value' => $filter->{content}}); } # disjunctive filters are an array ref of filter hashes foreach my $orfilter ($list->{filteror}->@*) { my $orfilts = []; foreach my $filter ($orfilter->{filter}->@*) { push $orfilts->@*, {type => $filter->{type}, value => $filter->{content}}; } $datalist->add_filter($orfilts) if $orfilts; } # Collator for determining primary weight hash for sortinit # Here as it varies only with the locale and that doesn't vary between entries in a list # Potentially, the locale could be different for the first field in the sort spec in which # case that might give wrong results but this is highly unlikely as it is only used to # determine sortinithash in DataList.pm and that only changes \bibinitsep in biblatex. $datalist->set_sortinit_collator(Unicode::Collate::Locale->new(locale => Biber::Config->getblxoption(undef, 'sortingtemplate')->{$datalist->get_sortingtemplatename}->{locale}, level => 1)); if ($logger->is_debug()) {# performance tune $logger->debug("Adding datalist of type '$ltype' with sortingtemplate '$lstn', sortingnamekeytemplatename '$lsnksn', labelprefix '$lpn', uniquenametemplate '$luntn', labelalphanametemplate '$llantn' and name '$lname' for section $lsection"); } $datalists->add_list($datalist); } # Check to make sure that each section has an entry datalist for global sorting # We have to make sure in case sortcites is used which uses the global order. foreach my $section ($bcfxml->{section}->@*) { my $globalss = Biber::Config->getblxoption(undef, 'sortingtemplatename'); my $secnum = $section->{number}; unless ($datalists->get_lists_by_attrs(section => $secnum, type => 'entry', sortingtemplatename => $globalss, sortingnamekeytemplatename => 'global', uniquenametemplatename => 'global', labelalphanametemplatename => 'global', labelprefix => '', name => "$globalss/global//global/global")) { my $datalist = Biber::DataList->new(section => $secnum, type => 'entry', sortingtemplatename => $globalss, sortingnamekeytemplatename => 'global', uniquenametemplatename => 'global', labelalphanametemplatename => 'global', labelprefix => '', name => "$globalss/global//global/global"); $datalists->add_list($datalist); # See comment above $datalist->set_sortinit_collator(Unicode::Collate::Locale->new(locale => Biber::Config->getblxoption(undef, 'sortingtemplate')->{$datalist->get_sortingtemplatename}->{locale}, level => 1)); } } # Add the Biber::DataLists object to the Biber object $self->{datalists} = $datalists; # Warn if there are no citations in any section unless ($key_flag) { biber_warn("The file '$ctrl_file_path' does not contain any citations!"); } # Normalise any UTF-8 encoding string immediately to exactly what we want # We want the strict perl utf8 "UTF-8" normalise_utf8(); # bibtex output when not in tool mode, is essentially entering tool mode but # without allkeys. We are not in tool mode if we are here. We fake tool mode # and then add a special section which contains all cited keys from all sections # No reference resolution for bibtex output and always include all cross/xrefs # otherwise the output won't be a standalone .bib file if (Biber::Config->getoption('output_format') eq 'bibtex') { Biber::Config->setoption('tool', 1); Biber::Config->setoption('mincrossrefs', 1); Biber::Config->setoption('minxrefs', 1); my $bib_section = new Biber::Section('number' => 99999); foreach my $section ($self->sections->get_sections->@*) { if ($section->is_allkeys) { $bib_section->set_allkeys(1); } else { $bib_section->add_citekeys($section->get_citekeys); } foreach my $ds ($section->get_datasources->@*) { $bib_section->add_datasource($ds); } } $self->sections->add_section($bib_section); my $datalist = Biber::DataList->new(section => 99999, sortingtemplatename => Biber::Config->getblxoption(undef, 'sortingtemplatename'), sortingnamekeytemplatename => 'global', uniquenametemplatename => 'global', labelalphanametemplatename => 'global', labelprefix => '', name => Biber::Config->getblxoption(undef, 'sortingtemplatename') . '/global//global/global'); $datalist->set_type('entry'); if ($logger->is_debug()) {# performance tune $logger->debug("Adding 'entry' list 'none' for pseudo-section 99999"); } $self->{datalists}->add_list($datalist); } return; } =head2 process_setup Place to put misc pre-processing things needed later =cut sub process_setup { my $self = shift; # If this is tool mode and therefore there is a 99999 section, delete all other sections # This is because bibtex output not in real tool mode retains sections from the .bcf # which are not needed and cause unnecessary dual-processing of entries since everything # is already in the 99999 section anyway foreach my $section ($self->sections->get_sections->@*) { if (Biber::Config->getoption('output_format') eq 'bibtex') { if ($section->number != 99999) { $self->sections->delete_section($section); } } } # Make sure there is a default entry list with global sorting for each refsection # Needed in case someone cites entries which are included in no # bibliography as this results in no entry list in the .bcf foreach my $section ($self->sections->get_sections->@*) { my $secnum = $section->number; unless ($self->datalists->has_lists_of_type_for_section($secnum, 'entry')) { my $datalist = Biber::DataList->new(sortingtemplatename => Biber::Config->getblxoption(undef, 'sortingtemplatename'), sortingnamekeytemplatename => 'global', uniquenametemplatename => 'global', labelalphanametemplatename => 'global', labelprefix => '', name => Biber::Config->getblxoption(undef, 'sortingtemplatename') . '/global//global/global'); $datalist->set_type('entry'); $datalist->set_section($secnum); $self->datalists->add_list($datalist); # See comment for same call in .bcf instantiation of datalists $datalist->set_sortinit_collator(Unicode::Collate::Locale->new(locale => Biber::Config->getblxoption(undef, 'sortingtemplate')->{$datalist->get_sortingtemplatename}->{locale}, level => 1)); } } # Break data model information up into more processing-friendly formats # for use in verification checks later # This has to be here as opposed to in parse_ctrlfile() so that it can pick # up user config dm settings Biber::Config->set_dm(Biber::DataModel->new(Biber::Config->getblxoption(undef, 'datamodel'))); # Now resolve any datafield sets from the .bcf _resolve_datafieldsets(); # Force output_safechars flag if output to ASCII and input_encoding is not ASCII if (Biber::Config->getoption('output_encoding') =~ /(?:x-)?ascii/xmsi and Biber::Config->getoption('input_encoding') !~ /(?:x-)?ascii/xmsi) { Biber::Config->setoption('output_safechars', 1); } } =head2 process_setup_tool Place to put misc pre-processing things needed later for tool mode =cut sub process_setup_tool { my $self = shift; Biber::Config->set_dm(Biber::DataModel->new(Biber::Config->getblxoption(undef, 'datamodel'))); # Now resolve any datafield sets from the .bcf _resolve_datafieldsets(); # Force output_safechars flag if output to ASCII and input_encoding is not ASCII if (Biber::Config->getoption('output_encoding') =~ /(?:x-)?ascii/xmsi and Biber::Config->getoption('input_encoding') !~ /(?:x-)?ascii/xmsi) { Biber::Config->setoption('output_safechars', 1); } } # datafield sets need to be resolved after the datamodel is parsed sub _resolve_datafieldsets { my $dm = Biber::Config->get_dm; while (my ($key, $value) = each %DATAFIELD_SETS) { my $fs; foreach my $m ($value->@*) { if (ref $m eq 'HASH') { if ($m->{fieldtype} and $m->{datatype}) { push $fs->@*, $dm->get_fields_of_type($m->{fieldtype}, $m->{datatype})->@*; } elsif ($m->{fieldtype}) { push $fs->@*, $dm->get_fields_of_fieldtype($m->{fieldtype})->@*; } elsif ($m->{datatype}) { push $fs->@*, $dm->get_fields_of_datatype($m->{datatype})->@*; } } else { push $fs->@*, $m; } } $DATAFIELD_SETS{$key} = $fs; } } =head2 resolve_alias_refs Resolve aliases in xref/crossref/xdata which take keys as values to their real keys We use set_datafield as we are overriding the alias in the datasource =cut sub resolve_alias_refs { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $dm = Biber::Config->get_dm; # Don't resolve alias refs in tool mode unless told to if (Biber::Config->getoption('tool') and not (Biber::Config->getoption('output_resolve_crossrefs') or Biber::Config->getoption('output_resolve_xdata'))) { return; } foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); # XREF if (my $refkey = $be->get_field('xref')) { if (my $realkey = $section->get_citekey_alias($refkey)) { $be->set_datafield('xref', $realkey); } } # CROSSREF if (my $refkey = $be->get_field('crossref')) { if (my $realkey = $section->get_citekey_alias($refkey)) { $be->set_datafield('crossref', $realkey); } } # XDATA if (my $xdata = $be->get_xdata_refs) { my $resolved_keys; foreach my $xdataref ($xdata->@*) { if (not defined($xdataref->{xdatafield})) { # XDATA ref to whole entry foreach my $refkey ($xdataref->{xdataentries}->@*) { # whole entry XDATA can be xsv $refkey = $section->get_citekey_alias($refkey) // $refkey; push $resolved_keys->@*, $refkey; } $xdataref->{xdataentries} = $resolved_keys; } else { # granular XDATA ref - only one entry key my $refkey = $xdataref->{xdataentries}->[0]; $refkey = $section->get_citekey_alias($refkey) // $refkey; $xdataref->{xdataentries} = [$refkey]; } } } } } =head2 process_citekey_aliases Remove citekey aliases from citekeys as they don't point to real entries. =cut sub process_citekey_aliases { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); foreach my $citekey ($section->get_citekeys) { if (my $a = $section->get_citekey_alias($citekey)) { if ($logger->is_debug()) {# performance tune $logger->debug("Pruning citekey alias '$citekey' from citekeys"); } $section->del_citekey($citekey); } } } =head2 instantiate_dynamic This instantiates any dynamic entries so that they are available for processing later on. This has to be done before most all other processing so that when we call $section->bibentry($key), as we do many times in the code, we don't die because there is a key but no Entry object. =cut sub instantiate_dynamic { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Creating dynamic entries (sets/related) for section $secnum"); } # Instantiate any dynamic set entries before we do anything else foreach my $dset ($section->dynamic_set_keys->@*) { my @members = $section->get_dynamic_set($dset); # Resolve any aliases in the members my @realmems; foreach my $mem (@members) { push @realmems, $section->get_citekey_alias($mem) // $mem; } @members = @realmems; $section->set_dynamic_set($dset, @realmems); my $be = new Biber::Entry; $be->set_field('entrytype', 'set'); $be->set_field('entryset', [ @members ]); $be->set_field('citekey', $dset); $be->set_field('datatype', 'dynamic'); $section->bibentries->add_entry($dset, $be); if ($logger->is_debug()) {# performance tune $logger->debug("Created dynamic set entry '$dset' in section $secnum"); } foreach my $m (@members) { # Save graph information if requested if (Biber::Config->getoption('output_format') eq 'dot') { Biber::Config->set_graph('set', $dset, $m); } # Instantiate any related entry clones we need from dynamic set members $section->bibentry($m)->relclone; } # Setting dataonly options for members is handled by process_sets() } # Instantiate any related entry clones we need from regular entries foreach my $citekey ($section->get_citekeys) { $section->bibentry($citekey)->relclone; } return; } =head2 resolve_xdata Resolve xdata =cut sub resolve_xdata { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); # Don't resolve xdata in tool mode unless told to if (Biber::Config->getoption('tool') and not Biber::Config->getoption('output_resolve_xdata')) { return; } if ($logger->is_debug()) {# performance tune $logger->debug("Resolving XDATA for section $secnum"); } # We are not looping over citekeys here as XDATA entries are not cited. # They may have been added to the section as entries, however. foreach my $be ($section->bibentries->entries) { # Don't directly resolve XDATA entrytypes - this is done recursively in the Entry method # Otherwise, we will die on loops etc. for XDATA entries which are never referenced from # any cited entry next if $be->get_field('entrytype') eq 'xdata'; next unless my $xdata = $be->get_xdata_refs; $be->resolve_xdata($xdata); } } =head2 cite_setmembers Promotes set member to cited status =cut sub cite_setmembers { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Adding set members to citekeys for section $secnum"); } foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); # promote indirectly cited inset set members to fully cited entries if ($be->get_field('entrytype') eq 'set' and $be->get_field('entryset')) { my $inset_keys = $be->get_field('entryset'); # Ignore empty sets (likely this means that they contained only # non-existent keys that were removed) next unless $inset_keys->@*; my $realmems; foreach my $mem ($inset_keys->@*) { push $realmems->@*, $section->get_citekey_alias($mem) // $mem; } $inset_keys = $realmems; $be->set_datafield('entryset', $inset_keys); foreach my $inset_key ($inset_keys->@*) { if ($logger->is_debug()) {# performance tune $logger->debug("Adding set member '$inset_key' to the citekeys (section $secnum)"); } $section->add_citekeys($inset_key); # Save graph information if requested if (Biber::Config->getoption('output_format') eq 'dot') { Biber::Config->set_graph('set', $citekey, $inset_key); } } # Set parents inherit first child member data so that they get sensible # sorting/labelling defaults. Most of these inherited fields will not be output # in the .bbl $be->set_inherit_from($section->bibentry($inset_keys->[0]), $section); # warning for the old pre-Biber way of doing things if ($be->get_field('crossref')) { biber_warn("Field 'crossref' is no longer needed in set entries in Biber - ignoring in entry '$citekey'", $be); $be->del_field('crossref'); } } } } =head2 preprocess_sets $biber->preprocess_sets This records the set information for use later =cut sub preprocess_sets { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); # Don't preprocess sets in tool mode unless told to if (Biber::Config->getoption('tool') and not Biber::Config->getoption('output_resolve_sets')) { return; } if ($logger->is_debug()) {# performance tune $logger->debug("Recording set information"); } foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); # Record set information # It's best to do this in the loop here as every entry needs the information # from all other entries in process_sets() if ($be->get_field('entrytype') eq 'set') { my $entrysetkeys = $be->get_field('entryset'); unless ($entrysetkeys) { biber_warn("Set entry '$citekey' has no entryset field, ignoring", $be); next; } foreach my $member ($entrysetkeys->@*) { $section->set_set_pc($citekey, $member); $section->set_set_cp($member, $citekey); # Instantiate any related entry clones we need from static set members $section->bibentry($member)->relclone; } } } } =head2 calculate_interentry $biber->calculate_interentry Ensures that crossrefs/xrefs that are directly cited or cross-referenced at least mincrossrefs/minxrefs times are included in the bibliography. =cut sub calculate_interentry { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Calculating explicit and implicit xref/crossrefs for section $secnum"); } foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); # Loop over cited keys and count the cross/xrefs # Can't do this when parsing entries as this would count them # for potentially uncited children if (my $refkey = $be->get_field('crossref')) { if ($logger->is_debug()) {# performance tune $logger->debug("Incrementing crossrefkey count for entry '$refkey' via entry '$citekey'"); } # Don't increment if the crossref doesn't exist Biber::Config->incr_crossrefkey($refkey) if $section->bibentry($refkey); } if (my $refkey = $be->get_field('xref')) { if ($logger->is_debug()) {# performance tune $logger->debug("Incrementing xrefkey count for entry '$refkey' via entry '$citekey'"); } Biber::Config->incr_xrefkey($refkey); } # Record xref inheritance for graphing if required if (Biber::Config->getoption('output_format') eq 'dot' and my $xref = $be->get_field('xref')) { Biber::Config->set_graph('xref', $citekey, $xref); } } # We make sure that crossrefs that are directly cited or cross-referenced # at least mincrossrefs times are included in the bibliography. foreach my $k ( Biber::Config->get_crossrefkeys->@* ) { # If parent has been crossref'ed more than mincrossref times, upgrade it # to cited crossref status and add it to the citekeys list if (Biber::Config->get_crossrefkey($k) >= Biber::Config->getoption('mincrossrefs')) { if ($logger->is_debug()) {# performance tune $logger->debug("cross key '$k' is crossref'ed >= mincrossrefs, adding to citekeys"); } # Don't add this flag if the entry is also cited directly $section->bibentry($k)->set_field('crossrefsource', 1) unless $section->has_citekey($k); $section->add_citekeys($k); } } # We make sure that xrefs that are directly cited or x-referenced # at least minxrefs times are included in the bibliography. foreach my $k ( Biber::Config->get_xrefkeys->@* ) { # If parent has been xref'ed more than minxref times, upgrade it # to cited xref status and add it to the citekeys list if (Biber::Config->get_xrefkey($k) >= Biber::Config->getoption('minxrefs')) { if ($logger->is_debug()) {# performance tune $logger->debug("xref key '$k' is xref'ed >= minxrefs, adding to citekeys"); } # Don't add this flag if the entry is also cited directly $section->bibentry($k)->set_field('xrefsource', 1) unless $section->has_citekey($k); $section->add_citekeys($k); } } } =head2 process_interentry $biber->process_interentry Ensures proper inheritance of data from cross-references. =cut sub process_interentry { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); # Don't resolve crossrefs in tool mode unless told to if (Biber::Config->getoption('tool') and not Biber::Config->getoption('output_resolve_crossrefs')) { return; } if ($logger->is_debug()) {# performance tune $logger->debug("Processing explicit and implicit xref/crossrefs for section $secnum"); } # This must come after doing implicit inclusion based on minref/mincrossref # otherwise cascading xref->crossref wont' work foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); # Do crossref inheritance if (my $cr = $be->get_field('crossref')) { # Skip inheritance if we've already done it next if Biber::Config->get_inheritance('crossref', $cr, $be->get_field('citekey')); my $parent = $section->bibentry($cr); if ($logger->is_debug()) {# performance tune $logger->debug("Entry $citekey inheriting fields from parent $cr"); } unless ($parent) { biber_warn("Cannot inherit from crossref key '$cr' - does it exist?", $be); } else { $be->inherit_from($parent); } } } } =head2 validate_datamodel Validate bib data according to a datamodel Note that we are validating the internal Biber::Entries after they have been created from the datasources so this is datasource neutral, as it should be. It is here to enforce adherence to what biblatex expects. =cut sub validate_datamodel { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $dm = Biber::Config->get_dm; if (Biber::Config->getoption('validate_datamodel')) { $logger->info("Datamodel validation starting"); my $dmwe = Biber::Config->getoption('dieondatamodel') ? \&biber_error : \&biber_warn; foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $citekey = $be->get_field('citekey'); my $et = $be->get_field('entrytype'); my $ds = $section->get_keytods($citekey); # default entrytype to MISC type if not a known type unless ($dm->is_entrytype($et)) { $dmwe->("Datamodel: $bee entry '$citekey' ($ds): Invalid entry type '" . $be->get_field('entrytype') . "' - defaulting to 'misc'", $be); $be->set_field('entrytype', 'misc'); $et = 'misc'; # reset this too } # Are all fields valid fields? # Each field must be: # * Valid because it's allowed for "ALL" entrytypes OR # * Valid field for the specific entrytype OR # * Valid because entrytype allows "ALL" fields unless ($et eq 'xdata' or $et eq 'set') { # XDATA/SET are generic containers for any field foreach my $ef ($be->datafields) { unless ($dm->is_field_for_entrytype($et, $ef)) { $dmwe->("Datamodel: $bee entry '$citekey' ($ds): Invalid field '$ef' for entrytype '$et'", $be); } } } # Mandatory constraints foreach my $warning ($dm->check_mandatory_constraints($be)) { $dmwe->($warning, $be); } # Conditional constraints foreach my $warning ($dm->check_conditional_constraints($be)) { $dmwe->($warning, $be); } # Datamodel datatypes # This is a check on the datatypes of all fields in the datamodel foreach my $warning ($dm->check_datatypes($be)) { $dmwe->($warning, $be); } # Data constraints foreach my $warning ($dm->check_data_constraints($be)) { $dmwe->($warning, $be); } } $logger->info("Datamodel validation complete"); } } =head2 process_namedis Generate name strings and disambiguation schema. Has to be in the context of a data list (reference context) because uniquenametemplate can be specified per-list/context =cut sub process_namedis { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $dmh = Biber::Config->get_dm_helpers; if ($logger->is_debug()) { # performance tune $logger->debug("Processing names in entries in section $secnum to generate disambiguation data"); } # Use nameuniqueness template to construct uniqueness strings my $untname = $dlist->get_uniquenametemplatename; my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $un = Biber::Config->getblxoption($secnum, 'uniquename', $bee, $citekey); my $ul = Biber::Config->getblxoption($secnum, 'uniquelist', $bee, $citekey); # Can be per-entry $untname = Biber::Config->getblxoption($secnum, 'uniquenametemplatename', undef, $citekey) // $untname; # Instead of setting this directly in here, we save the data and pass it out as we need # to use this method to get data without setting it in the list object (in uniqueprimaryauthor()) my $namedis; MAIN: foreach my $pn ($dmh->{namelistsall}->@*) { next unless my $nl = $be->get_field($pn); my $nlid = $nl->get_id; # per-namelist uniquenametemplatename if (defined($nl->get_uniquenametemplatename)) { $untname = $nl->get_uniquenametemplatename; } # per-namelist uniquelist if (defined($nl->get_uniquelist)) { $ul = $nl->get_uniquelist; } # per-namelist uniquename if (defined($nl->get_uniquename)) { $un = $nl->get_uniquename; } foreach my $n ($nl->names->@*) { my $nid = $n->get_id; my $namestring = ''; my $namestrings = []; my $namedisschema = []; # per-name uniquenametemplatename if (defined($n->get_uniquenametemplatename)) { $untname = $n->get_uniquenametemplatename; } # Die if no uniquenametemplate found as this results in an infinite loop # in the disambiguation code unless (Biber::Config->getblxoption(undef, 'uniquenametemplate')->{$untname}) { biber_error("No uniquenametemplate called '$untname' found, cannot continue."); } # per-name uniquename if (defined($n->get_uniquename)) { $un = $n->get_uniquename; } my $nameun = $un; # First construct base part ... my $base = ''; # Might not be any base parts at all so make sure it's not undefined my $baseparts; foreach my $np (Biber::Config->getblxoption(undef, 'uniquenametemplate')->{$untname}->@*) { next unless $np->{base}; my $npn = $np->{namepart}; if (my $p = $n->get_namepart($npn)) { if ($np->{use}) { # only ever defined as 1 my $method = "get_use$npn"; my $useok = Biber::Config->getblxoption($secnum, "use$npn", $bee, $citekey); # Override with per-namelist setting - only for extended name format if (defined($nl->$method)) { $useok = $nl->$method; } # Override with per-name setting - only for extended name format if (defined($n->$method)) { $useok = $n->$method; } next unless $useok; } $base .= $p; push $baseparts->@*, $npn; } } $namestring .= $base; push $namestrings->@*, $base; push $namedisschema->@*, ['base' => $baseparts] if defined($baseparts); # ... then add non-base parts by incrementally adding to the last disambiguation level foreach my $np (Biber::Config->getblxoption(undef, 'uniquenametemplate')->{$untname}->@*) { next if $np->{base}; next if defined($np->{disambiguation}) and ($np->{disambiguation} eq 'none'); my $npn = $np->{namepart}; my $level = $np->{disambiguation} // $UNIQUENAME_CONTEXTS{$un // 'false'}; my $lastns = $namestrings->[$namestrings->$#*]; if (my $p = $n->get_namepart($npn)) { my $pi = $n->get_namepart_initial($npn); if ($np->{use}) { # only ever defined as 1 my $method = "get_use$npn"; my $useok = Biber::Config->getblxoption($secnum, "use$npn", $bee, $citekey); # Override with per-namelist setting - only for extended name format if (defined($nl->$method)) { $useok = $nl->$method; } # Override with per-name setting - only for extended name format if (defined($n->$method)) { $useok = $n->$method; } next unless $useok; } $namestring .= $p; # per-namepart disambiguation level # Here we incrementally add disambiguation possibilities to an array and simultaneously # record a schema of what each incremental disambiguation is if (fc($level) eq fc('full')) { # only full disambiguation push $namestrings->@*, $lastns . $p; push $namedisschema->@*, [$npn => 'fullonly']; } if (fc($level) eq fc('initorfull')) { # initials or full disambiguation push $namestrings->@*, $lastns . join('', $pi->@*); push $namedisschema->@*, [$npn => 'init']; push $namestrings->@*, $lastns . $p; push $namedisschema->@*, [$npn => 'full']; } elsif (fc($level) eq fc('init')) { # inits only push $namestrings->@*, $lastns . join('', $pi->@*); push $namedisschema->@*, [$npn => 'init']; } } } if ($logger->is_trace()) { # performance tune $logger->trace("namestrings in '$citekey': " . join (',', $namestrings->@*)); } # namelistul is the option value of the effective uniquelist option at the level # of the list in which the name occurs. It's useful to know this where the results # of the sub are used $namedis->{$nlid}{$nid} = {nameun => $nameun, namelistul => $ul, namestring => strip_nonamestring($namestring, $nl->get_type), namestrings => [map {strip_nonamestring($_, $nl->get_type)} $namestrings->@*], namedisschema => $namedisschema}; } } return $namedis; } =head2 postprocess_sets Adds required per-entry options etc. to sets =cut sub postprocess_sets { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); foreach my $citekey ( $section->get_citekeys ) { # process set entries $self->process_sets($citekey); } return; } =head2 process_entries_static Processing of entries which is not list-specific and which can therefore insert data directly into entries =cut sub process_entries_static { my ($self) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Processing static entry information in section $secnum"); } foreach my $citekey ( $section->get_citekeys ) { # generate nocite information $self->process_nocite($citekey); # generate labelname name $self->process_labelname($citekey); # generate labeldate name $self->process_labeldate($citekey); # generate labeltitle name $self->process_labeltitle($citekey); # generate fullhash $self->process_fullhash($citekey); # push entry-specific presort fields into the presort state $self->process_presort($citekey); } } =head2 process_entries_pre Main processing operations, to generate metadata and entry information This method is automatically called by C. Runs prior to uniqueness processing =cut sub process_entries_pre { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Processing entries in section $secnum (before uniqueness)"); } foreach my $citekey ( $section->get_citekeys ) { my $be = $section->bibentry($citekey); # process name disambiguation schemata my $namedis = $self->process_namedis($citekey, $dlist); foreach my $nlid (keys $namedis->%*) { foreach my $nid (keys $namedis->{$nlid}->%*) { # process_namedis() has to record uniquelist/uniquename as it has access to # namelist-scope and name-scope uniquelist/uniquename and makes this visible # here so that they can be checked # We only don't set name disambiguation data if both uniquelist/uniquename # effective options are 'false'. If either are not false, we need the information if ($namedis->{$nlid}{$nid}{nameun} eq 'false' and $namedis->{$nlid}{$nid}{namelistul} eq 'false') { next; } $dlist->set_namedis($nlid, $nid, $namedis->{$nlid}{$nid}{namestring}, $namedis->{$nlid}{$nid}{namestrings}, $namedis->{$nlid}{$nid}{namedisschema}); } } } if ($logger->is_debug()) {# performance tune $logger->debug("Finished processing entries in section $secnum (before uniqueness)"); } return; } =head2 process_entries_post More processing operations, to generate things which require uniqueness information like namehash Runs after uniqueness processing =cut sub process_entries_post { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Postprocessing entries in section $secnum (after uniqueness)"); } foreach my $citekey ( $section->get_citekeys ) { # generate labelalpha information $self->process_labelalpha($citekey, $dlist); # generate information for tracking extraalpha $self->process_extraalpha($citekey, $dlist); # generate information for tracking extradate $self->process_extradate($citekey, $dlist); # generate information for tracking extraname $self->process_extraname($citekey, $dlist); # generate information for tracking extratitle $self->process_extratitle($citekey, $dlist); # generate information for tracking extratitleyear $self->process_extratitleyear($citekey, $dlist); # generate information for tracking singletitle, uniquetitle, uniquebaretitle and uniquework $self->process_workuniqueness($citekey, $dlist); # generate namehash $self->process_namehash($citekey, $dlist); # generate per-name hashes $self->process_pername_hashes($citekey, $dlist); # generate information for tracking uniqueprimaryauthor $self ->process_uniqueprimaryauthor($citekey, $dlist); } if ($logger->is_debug()) {# performance tune $logger->debug("Finished processing entries in section $secnum (after uniqueness)"); } return; } =head2 process_entries_final Final processing operations which depend on all previous processing =cut sub process_entries_final { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Final processing for entries in section $secnum"); } foreach my $citekey ( $section->get_citekeys ) { # Generate singletitle field if requested $self->generate_singletitle($citekey, $dlist); # Generate uniquetitle field if requested $self->generate_uniquetitle($citekey, $dlist); # Generate uniquebaretitle field if requested $self->generate_uniquebaretitle($citekey, $dlist); # Generate uniquework field if requested $self->generate_uniquework($citekey, $dlist); # Generate uniqueprimaryauthor if requested $self->generate_uniquepa($citekey, $dlist); } } =head2 process_uniqueprimaryauthor Track seen primary author base names for generation of uniqueprimaryauthor =cut sub process_uniqueprimaryauthor { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); if (my $lni = $be->get_labelname_info) { if (Biber::Config->getblxoption(undef, 'uniqueprimaryauthor', $bee, $citekey)) { my $nl = $be->get_field($lni); if ($logger->is_trace()) {# performance tune $logger->trace("Creating uniqueprimaryauthor information for '$citekey'"); } my $namedis = $self->process_namedis($citekey, $dlist); my $nds = $namedis->{$nl->get_id}{$nl->nth_name(1)->get_id}{namedisschema}; my $nss = $namedis->{$nl->get_id}{$nl->nth_name(1)->get_id}{namestrings}; my $pabase; for (my $i=0;$i<=$nds->$#*;$i++) { my $se = $nds->[$i]; if ($se->[0] eq 'base') { $pabase = $nss->[$i]; } } $dlist->set_entryfield($citekey, 'seenprimaryauthor', $pabase); $dlist->incr_seenpa($pabase, $nl->nth_name(1)->get_hash); } } } =head2 process_workuniqueness Track seen work combination for generation of singletitle, uniquetitle, uniquebaretitle and uniquework =cut sub process_workuniqueness { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $identifier; my $lni = $be->get_labelname_info; my $lti = $be->get_labeltitle_info; # ignore settings from inheritance data? my $ignore = Biber::Config->get_uniq_ignore($citekey); # singletitle # Don't generate information for entries with no labelname or labeltitle # Use fullhash as this is not a test of uniqueness of only visible information if ($lni and Biber::Config->getblxoption(undef, 'singletitle', $bee, $citekey)) { $identifier = $self->_getfullhash($citekey, $be->get_field($lni)); # Skip due to ignore settings? # Don't count towards singletitle being false if both labelname and labeltitle # were inherited # Put another way, if both labelname and labeltitle were inherited, singletitle # can still be true (in a mvbook for example, which is just a single "work") unless (($lni and first {fc($lni) eq fc($_)} $ignore->{singletitle}->@*) and ($lti and first {fc($lti) eq fc($_)} $ignore->{singletitle}->@*)) { $dlist->incr_seenname($identifier); } $dlist->set_entryfield($citekey, 'seenname', $identifier); } # uniquetitle # Don't generate information for entries with no labeltitle if ($lti and Biber::Config->getblxoption(undef, 'uniquetitle', $bee, $citekey)) { $identifier = $be->get_field($lti); # Skip due to ignore settings? unless (first {fc($lti) eq fc($_)} $ignore->{uniquetitle}->@*) { $dlist->incr_seentitle($identifier); } $dlist->set_entryfield($citekey, 'seentitle', $identifier); } # uniquebaretitle # Don't generate information for entries with no labeltitle and with labelname if ($lti and not $lni and Biber::Config->getblxoption(undef, 'uniquebaretitle', $bee, $citekey)) { $identifier = $be->get_field($lti); # Skip due to ignore settings? unless (first {fc($lti) eq fc($_)} $ignore->{uniquebaretitle}->@*) { $dlist->incr_seenbaretitle($identifier); } $dlist->set_entryfield($citekey, 'seenbaretitle', $identifier); } # uniquework # Don't generate information for entries with no labelname and labeltitle # Should use fullhash this is not a test of uniqueness of only visible information if ($lni and $lti and Biber::Config->getblxoption(undef, 'uniquework', $bee, $citekey)) { $identifier = $self->_getfullhash($citekey, $be->get_field($lni)) . $be->get_field($lti); # Skip due to ignore settings? unless (first {fc($lni) eq fc($_)} $ignore->{uniquework}->@* and first {fc($lti) eq fc($_)} $ignore->{uniquework}->@*) { $dlist->incr_seenwork($identifier); } $dlist->set_entryfield($citekey, 'seenwork', $identifier); } return; } =head2 process_extradate Track labelname/labeltitle+date parts combination for generation of extradate =cut sub process_extradate { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $dm = Biber::Config->get_dm; # Generate labelname/year combination for tracking extradate # * If there is no labelname/labeltitle to use, use empty string # * Don't increment the seen_nametitledateparts count if the name/title string is empty # (see code in incr_seen_nametitledateparts method). # * Don't increment if skiplab is set if (Biber::Config->getblxoption(undef, 'labeldateparts', $bee, $citekey)) { if (Biber::Config->getblxoption($secnum, 'skiplab', $bee, $citekey)) { return; } if ($logger->is_trace()) {# performance tune $logger->trace("Creating extradate information for '$citekey'"); } my $contexthash = ''; my $edc = Biber::Config->getblxoption(undef, 'extradatecontext'); foreach my $field ($edc->@*) { my $fieldc = $field->{content}; if ($fieldc =~ m/^label.+/) { my $method = "get_${fieldc}_info"; $fieldc = $be->$method; } if (my $fv = $be->get_field($fieldc)) { if ($dm->field_is_datatype('name', $fieldc)) { $contexthash = $self->_getnamehash_u($citekey, $fv, $dlist); } elsif ($dm->field_is_fieldtype('list', $fieldc)) { $contexthash = md5_hex(encode_utf8(NFC(normalise_string_hash(join('', $fv->@*))))); } else { $contexthash = md5_hex(encode_utf8(NFC(normalise_string_hash($fv)))); } last; } } my $datestring = ''; # Need a default empty string my $edspec = Biber::Config->getblxoption(undef, 'extradatespec'); my $edscope; # Look in each scope foreach my $scope ($edspec->@*) { # Use the first field in the scope which we find and ignore the rest foreach my $field ($scope->@*) { if (defined($be->get_field($field))) { $datestring .= $be->get_field($field); $edscope = $field; last; } } } my $tracking_string = "$contexthash,$datestring"; $be->set_field('extradatescope', $edscope); $dlist->set_entryfield($citekey, 'nametitledateparts', $tracking_string); $dlist->incr_seen_nametitledateparts($contexthash, $datestring); } return; } =head2 process_extraname Track labelname only for generation of extraname =cut sub process_extraname { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption($secnum, 'skiplab', $bee, $citekey)) { return; } if ($logger->is_trace()) {# performance tune $logger->trace("Creating extraname information for '$citekey'"); } my $namehash; if (my $lni = $be->get_labelname_info) { $namehash = $self->_getnamehash_u($citekey, $be->get_field($lni), $dlist); } # Don't bother with extraname when there is no labelname if (defined($namehash)) { $dlist->set_entryfield($citekey, 'labelnamehash', $namehash); $dlist->incr_seen_labelname($namehash); } return; } =head2 process_extratitle Track labelname/labeltitle combination for generation of extratitle =cut sub process_extratitle { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); # Generate labelname/labeltitle combination for tracking extratitle # * If there is no labelname to use, use empty string # * If there is no labeltitle to use, use empty string # * Don't increment if skiplab is set # This is different from extradate in that we do track the information # if the labelname is empty as titles are much more unique than years if (Biber::Config->getblxoption(undef, 'labeltitle', $bee)) { if (Biber::Config->getblxoption($secnum, 'skiplab', $bee, $citekey)) { return; } if ($logger->is_trace()) {# performance tune $logger->trace("Creating extratitle information for '$citekey'"); } my $namehash = ''; if (my $lni = $be->get_labelname_info) { $namehash = $self->_getnamehash_u($citekey, $be->get_field($lni), $dlist); } my $lti = $be->get_labeltitle_info; my $title_string = $be->get_field($lti) // ''; my $nametitle_string = "$namehash,$title_string"; if ($logger->is_trace()) {# performance tune $logger->trace("Setting nametitle to '$nametitle_string' for entry '$citekey'"); } $dlist->set_entryfield($citekey, 'nametitle', $nametitle_string); if ($logger->is_trace()) {# performance tune $logger->trace("Incrementing nametitle for '$namehash'"); } $dlist->incr_seen_nametitle($namehash, $title_string); } return; } =head2 process_extratitleyear Track labeltitle/labelyear combination for generation of extratitleyear =cut sub process_extratitleyear { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); # Generate labeltitle/labelyear combination for tracking extratitleyear # * If there is no labeltitle to use, use empty string # * If there is no labelyear to use, use empty string # * Don't increment the seen_titleyear count if the labeltitle field is empty # (see code in incr_seen_titleyear method). # * Don't increment if skiplab is set if (Biber::Config->getblxoption(undef, 'labeltitleyear', $bee, $citekey)) { if (Biber::Config->getblxoption($secnum, 'skiplab', $bee, $citekey)) { return; } if ($logger->is_trace()) {# performance tune $logger->trace("Creating extratitleyear information for '$citekey'"); } my $lti = $be->get_labeltitle_info; my $title_string = $be->get_field($lti) // ''; # Takes into account the labelyear which can be a range my $year_string = $be->get_field('labelyear') || $be->get_field('year') || ''; my $titleyear_string = "$title_string,$year_string"; if ($logger->is_trace()) {# performance tune $logger->trace("Setting titleyear to '$titleyear_string' for entry '$citekey'"); } $dlist->set_entryfield($citekey, 'titleyear', $titleyear_string); if ($logger->is_trace()) {# performance tune $logger->trace("Incrementing titleyear for '$title_string'"); } $dlist->incr_seen_titleyear($title_string, $year_string); } return; } =head2 process_sets Postprocess set entries Checks for common set errors and enforces "dataonly" options for set members. It's not necessary to set skipbib, skipbiblist in the OPTIONS field for the set members as these are automatically set by biblatex due to the \inset =cut sub process_sets { my $self = shift; my $citekey = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); if (my @entrysetkeys = $section->get_set_children($citekey)) { # Enforce Biber parts of virtual "dataonly" options for set members # Also automatically create an "entryset" field for the members foreach my $member (@entrysetkeys) { my $me = $section->bibentry($member); process_entry_options($member, [ 'skipbib', 'skiplab', 'skipbiblist', 'uniquename=false', 'uniquelist=false' ], $secnum); # Use get_datafield() instead of get_field() because we add 'entryset' below # and if the same entry is used in more than one set, it will pass this test # and generate an error if we use get_field() if ($me->get_datafield('entryset')) { biber_warn("Field 'entryset' is no longer needed in set member entries in Biber - ignoring in entry '$member'", $me); $me->del_field('entryset'); } # This ends up setting \inset{} in the bbl $me->set_field('entryset', [ $citekey ]); } unless (@entrysetkeys) { biber_warn("No entryset found for entry $citekey of type 'set'", $be); } } # Also set this here for any non-set keys which are in a set and which haven't # had skips set by being seen as a member of that set yet else { if ($section->get_set_parents($citekey)) { process_entry_options($citekey, [ 'skipbib', 'skiplab', 'skipbiblist', 'uniquename=false', 'uniquelist=false' ], $secnum); } } } =head2 process_nocite Generate nocite information =cut sub process_nocite { my ($self, $citekey) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); # Either specifically nocited or \nocite{*} and not specifically cited without nocite if ($section->is_nocite($citekey) or ($section->is_allkeys_nocite and not $section->is_specificcitekey($citekey))) { $be->set_field('nocite', '1'); } } =head2 process_labelname Generate labelname information. =cut sub process_labelname { my ($self, $citekey) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $lnamespec = Biber::Config->getblxoption(undef, 'labelnamespec', $bee); my $dm = Biber::Config->get_dm; my $dmh = Biber::Config->get_dm_helpers; # First we set the normal labelname name foreach my $h_ln ($lnamespec->@*) { my $lnameopt; my $ln = $h_ln->{content}; if ( $ln =~ /\Ashort(\X+)\z/xms ) { $lnameopt = $1; } else { $lnameopt = $ln; } unless (first {$ln eq $_} $dmh->{namelistsall}->@*) { biber_warn("Labelname candidate '$ln' is not a name field - skipping"); next; } # If there is a biblatex option which controls the use of this labelname info, check it if ($CONFIG_OPTSCOPE_BIBLATEX{"use$lnameopt"} and not Biber::Config->getblxoption($secnum, "use$lnameopt", $bee, $citekey)) { next; } if ($be->get_field($ln)) { $be->set_labelname_info($ln); last; } } # Then we loop again to set the labelname name for the fullhash generation code # This is because fullhash generation ignores SHORT* fields (section 4.2.4.1, BibLaTeX # manual) foreach my $h_ln ($lnamespec->@*) { my $ln = $h_ln->{content}; if ( $ln =~ /\Ashort(.+)\z/xms ) { next; } # We have already warned about this above next unless (first {$ln eq $_} $dmh->{namelistsall}->@*); # If there is a biblatex option which controls the use of this labelname info, check it if ($CONFIG_OPTSCOPE_BIBLATEX{"use$ln"} and not Biber::Config->getblxoption($secnum, "use$ln", $bee, $citekey)) { next; } if ($be->get_field($ln)) { $be->set_labelnamefh_info($ln); last; } } unless ($be->get_labelname_info) { if ($logger->is_debug()) {# performance tune $logger->debug("Could not determine the labelname source of entry $citekey"); } } } =head2 process_labeldate Generate labeldate information, including times =cut sub process_labeldate { my $self = shift; my $citekey = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $dm = Biber::Config->get_dm; if (Biber::Config->getblxoption(undef, 'labeldateparts', $bee, $citekey)) { my $ldatespec = Biber::Config->getblxoption(undef, 'labeldatespec', $bee); foreach my $lds ($ldatespec->@*) { my $pseudodate; my $ld = $lds->{content}; if ($lds->{'type'} eq 'field') { # labeldate/year field my $ldy; my $ldey; my $ldm; my $ldd; my $ldhour; my $ldmin; my $ldsec; my $ldtz; my $datetype = ''; # This effectively loses the distinction between DATE and YEAR fields # which is what we want $ldy = $ld; if ($dm->field_is_datatype('date', $ld)) { $datetype = $ld =~ s/date\z//xmsr; $ldy = $datetype . 'year'; $ldey = $datetype . 'endyear'; $ldm = $datetype . 'month'; $ldd = $datetype . 'day'; $ldhour = $datetype . 'hour'; $ldmin = $datetype . 'minute'; $ldsec = $datetype . 'second'; $ldtz = $datetype . 'timezone'; } else { # non-iso8601-2 split date field so make a pseudo-year $pseudodate = 1; } # Did we find a labeldate - this is equivalent to checking for a year/endyear # as that is always present if there is a labeldate if (defined($be->get_field($ldy)) or defined($be->get_field($ldey))) { # set source to field or date field prefix for a real date field $be->set_labeldate_info({'field' => {year => $ldy, month => $ldm, day => $ldd, hour => $ldhour, minute => $ldmin, second => $ldsec, timezone => $ldtz, pseudodate => $pseudodate, source => $pseudodate ? $ldy : $datetype }}); last; } } elsif ($lds->{'type'} eq 'string') { # labelyear fallback string $be->set_labeldate_info({'string' => $ld}); last; } } # Construct label* # Might not have been set due to skiplab if (my $ldi = $be->get_labeldate_info) { if (my $df = $ldi->{field}) { # set labelyear to a field value my $pseudodate = $df->{pseudodate}; $be->set_field('labelyear', $be->get_field($df->{year})); $be->set_field('labelmonth', $be->get_field($df->{month})) if $df->{month}; $be->set_field('labelday', $be->get_field($df->{day})) if $df->{day}; $be->set_field('labelhour', $be->get_field($df->{hour})) if $df->{hour}; $be->set_field('labelminute', $be->get_field($df->{minute})) if $df->{minute}; $be->set_field('labelsecond', $be->get_field($df->{second})) if $df->{second}; $be->set_field('labeltimezone', $be->get_field($df->{timezone})) if $df->{timezone}; $be->set_field('labeldatesource', $df->{source}); # ignore endyear if it's the same as year my ($ytype) = $df->{year} =~ /\A(\X*)year\z/xms; $ytype = $ytype // ''; # Avoid undef warnings since no match above can make it undef # construct labelyear from start/end year field if ($be->field_exists($ytype . 'endyear') and (($be->get_field($df->{year}) // '') ne $be->get_field($ytype . 'endyear'))) { $be->set_field('labelyear', ($be->get_field('labelyear') // ''). '\bibdatedash ' . $be->get_field($ytype . 'endyear')); } if (not $pseudodate) { # construct labelmonth from start/end month field if ($be->get_field($ytype . 'endmonth') and (($be->get_field($df->{month}) // '') ne $be->get_field($ytype . 'endmonth'))) { $be->set_field('labelmonth', ($be->get_field('labelmonth') // '') . '\bibdatedash ' . $be->get_field($ytype . 'endmonth')); } # construct labelday from start/end month field if ($be->get_field($ytype . 'endday') and (($be->get_field($df->{day}) // '') ne $be->get_field($ytype . 'endday'))) { $be->set_field('labelday', ($be->get_field('labelday') // '') . '\bibdatedash ' . $be->get_field($ytype . 'endday')); } # construct labelhour from start/end hour field if ($be->get_field($ytype . 'endhour') and (($be->get_field($df->{hour}) // '') ne $be->get_field($ytype . 'endhour'))) { $be->set_field('labelhour', ($be->get_field('labelhour') // '') . '\bibdatedash ' . $be->get_field($ytype . 'endhour')); } # construct labelminute from start/end minute field if ($be->get_field($ytype . 'endminute') and (($be->get_field($df->{minute}) // '') ne $be->get_field($ytype . 'endminute'))) { $be->set_field('labelminute', ($be->get_field('labelminute') // '') . '\bibdatedash ' . $be->get_field($ytype . 'endminute')); } # construct labelsecond from start/end second field if ($be->get_field($ytype . 'endsecond') and (($be->get_field($df->{second}) // '') ne $be->get_field($ytype . 'endsecond'))) { $be->set_field('labelsecond', ($be->get_field('labelsecond') // '') . '\bibdatedash ' . $be->get_field($ytype . 'endsecond')); } } } elsif (my $ys = $ldi->{string}) { # set labeldatesource to a fallback string $be->set_field('labeldatesource', $ys); } } else { if ($logger->is_debug()) {# performance tune $logger->debug("labeldate information of entry $citekey is unset"); } } } } =head2 process_labeltitle Generate labeltitle Note that this is not conditionalised on the biblatex "labeltitle" as labeltitle should always be output since all standard styles need it. Only extratitle is conditionalised on the biblatex "labeltitle" option. =cut sub process_labeltitle { my $self = shift; my $citekey = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $ltitlespec = Biber::Config->getblxoption(undef, 'labeltitlespec', $bee); foreach my $h_ltn ($ltitlespec->@*) { my $ltn = $h_ltn->{content}; if (my $lt = $be->get_field($ltn)) { $be->set_labeltitle_info($ltn); $be->set_field('labeltitle', $lt); last; } if ($logger->is_debug()) {# performance tune $logger->debug("labeltitle information of entry $citekey is unset"); } } } =head2 process_fullhash Generate fullhash =cut sub process_fullhash { my $self = shift; my $citekey = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $dmh = Biber::Config->get_dm_helpers; # fullhash is generated from the labelname but ignores SHORT* fields and # max/mincitenames settings # This can't be resolved nicely by biblatex because it depends on use* options # and also SHORT* fields etc. if (my $lnfhi = $be->get_labelnamefh_info) { if (my $lnfh = $be->get_field($lnfhi)) { $be->set_field('fullhash', $self->_getfullhash($citekey, $lnfh)); } } # Generate fullhash for all other name fields foreach my $n ($dmh->{namelistsall}->@*) { next unless my $nv = $be->get_field($n); $be->set_field("${n}fullhash", $self->_getfullhash($citekey, $nv)); } return; } =head2 process_namehash Generate namehash =cut sub process_namehash { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $dmh = Biber::Config->get_dm_helpers; # namehash is generated from the labelname # This can't be resolved nicely by biblatex because it depends on use* options # and also SHORT* fields etc. if (my $lni = $be->get_labelname_info) { if (my $ln = $be->get_field($lni)) { $dlist->set_entryfield($citekey, 'namehash', $self->_getnamehash($citekey, $ln, $dlist)); $dlist->set_entryfield($citekey, 'bibnamehash', $self->_getnamehash($citekey, $ln, $dlist, 1)); } } # Generate namehash for all other name fields foreach my $n ($dmh->{namelistsall}->@*) { next unless my $nv = $be->get_field($n); $dlist->set_entryfield($citekey, "${n}namehash", $self->_getnamehash($citekey, $nv, $dlist)); $dlist->set_entryfield($citekey, "${n}bibnamehash", $self->_getnamehash($citekey, $nv, $dlist, 1)); } return; } =head2 process_pername_hashes Generate per_name_hashes =cut sub process_pername_hashes { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $dmh = Biber::Config->get_dm_helpers; foreach my $pn ($dmh->{namelistsall}->@*) { next unless my $nl = $be->get_field($pn); foreach my $n ($nl->names->@*) { my $pnhash = $self->_genpnhash($citekey, $n); $n->set_hash($pnhash); $dlist->set_namehash($nl->get_id, $n->get_id, $pnhash); } } return; } =head2 process_visible_names Generate the visible name information. This is used in various places and it is useful to have it generated in one place. =cut sub process_visible_names { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $dmh = Biber::Config->get_dm_helpers; if ($logger->is_debug()) {# performance tune $logger->debug("Postprocessing visible names for section $secnum"); } foreach my $citekey ($section->get_citekeys) { my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); my $maxcn = Biber::Config->getblxoption($secnum, 'maxcitenames', $bee, $citekey); my $mincn = Biber::Config->getblxoption($secnum, 'mincitenames', $bee, $citekey); my $maxbn = Biber::Config->getblxoption($secnum, 'maxbibnames', $bee, $citekey); my $minbn = Biber::Config->getblxoption($secnum, 'minbibnames', $bee, $citekey); my $maxsn = Biber::Config->getblxoption($secnum, 'maxsortnames', $bee, $citekey); my $minsn = Biber::Config->getblxoption($secnum, 'minsortnames', $bee, $citekey); my $maxan = Biber::Config->getblxoption($secnum, 'maxalphanames', $bee, $citekey); my $minan = Biber::Config->getblxoption($secnum, 'minalphanames', $bee, $citekey); foreach my $n ($dmh->{namelistsall}->@*) { next unless my $nl = $be->get_field($n); my $count = $nl->count; my $visible_names_cite; my $visible_names_bib; my $visible_names_sort; my $visible_names_alpha; # Cap min*names for this entry at $count. Why? Because imagine we have this: # # John Smith and Bill Jones # # and mincitenames=3. Then visibility will be set to 3 but there aren't 3 names to # get information from so looping over the visibility count would cause name methods # to operate on undef at index 3 and die my $l_mincn = $count < $mincn ? $count : $mincn; my $l_minbn = $count < $minbn ? $count : $minbn; my $l_minsn = $count < $minsn ? $count : $minsn; my $l_minan = $count < $minan ? $count : $minan; # If name list was truncated in bib with "and others", this means that the # name list has already been manually truncated to the correct visibility # and so the visibility is just the count of the explicit names # max/minalphanames doesn't care about uniquelist - labels are just labels if ($count > $maxan) { $visible_names_alpha = $l_minan; } else { $visible_names_alpha = $count; } # max/mincitenames if ($count > $maxcn) { # Visibility to the uniquelist point if uniquelist is requested # We know at this stage that if uniquelist is set, there are more than maxcitenames # names. We also know that uniquelist > mincitenames because it is a further # disambiguation on top of mincitenames so can't be less as you can't disambiguate # by losing information $visible_names_cite = $dlist->get_uniquelist($nl->get_id) // $l_mincn; } else { # visibility is simply the full list $visible_names_cite = $count; } # If biblatex option "pluralothers" is true, then "et al" must replace more than one element # in a name list. This means that the visibility must be increased to the list length if # the visibility is one less than the list count. If we don't do this, extra* will be incremented # to disambiguate the list and this will be incorrect as biblatex.sty will detect "pluralothers" # and print an unambiguous list which will be disambiguated by extra* unnecessarily. if (Biber::Config->getblxoption(undef, 'pluralothers') and $count-$visible_names_cite==1) { $visible_names_cite = $count; } # max/minbibnames if ($count > $maxbn) { # Visibility to the uniquelist point if uniquelist is requested # We know at this stage that if uniquelist is set, there are more than maxbibnames # names. We also know that uniquelist > minbibnames because it is a further # disambiguation on top of minbibnames so can't be less as you can't disambiguate # by losing information $visible_names_bib = $dlist->get_uniquelist($nl->get_id) // $l_minbn; } else { # visibility is simply the full list $visible_names_bib = $count; } # max/minsortnames if ($count > $maxsn) { # Visibility to the uniquelist point if uniquelist is requested # We know at this stage that if uniquelist is set, there are more than maxsortnames # names. We also know that uniquelist > minsortnames because it is a further # disambiguation on top of minsortnames so can't be less as you can't disambiguate # by losing information $visible_names_sort = $dlist->get_uniquelist($nl->get_id) // $l_minsn; } else { # visibility is simply the full list $visible_names_sort = $count; } if ($logger->is_trace()) { # performance shortcut $logger->trace("Setting visible names (cite) for key '$citekey' to '$visible_names_cite'"); $logger->trace("Setting visible names (bib) for key '$citekey' to '$visible_names_bib'"); $logger->trace("Setting visible names (sort) for key '$citekey' to '$visible_names_sort'"); $logger->trace("Setting visible names (alpha) for key '$citekey' to '$visible_names_alpha'"); } # Need to set these on all name forms my $nlid = $be->get_field($n)->get_id; $dlist->set_visible_cite($nlid, $visible_names_cite); $dlist->set_visible_bib($nlid, $visible_names_bib); $dlist->set_visible_sort($nlid, $visible_names_sort); $dlist->set_visible_alpha($nlid, $visible_names_alpha); } } } =head2 process_labelalpha Generate the labelalpha and also the variant for sorting =cut sub process_labelalpha { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); # Don't add a label if skiplab is set for entry if (Biber::Config->getblxoption($secnum, 'skiplab', $bee, $citekey)) { return; } if ( my $la = Biber::Config->getblxoption(undef, 'labelalpha', $bee, $citekey) ) { my ($label, $sortlabel) = $self->_genlabel($citekey, $dlist)->@*; $dlist->set_entryfield($citekey, 'labelalpha', $label); $dlist->set_entryfield($citekey, 'sortlabelalpha', $sortlabel); } } =head2 process_extraalpha Generate the extraalpha information =cut sub process_extraalpha { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption(undef, 'labelalpha', $bee, $citekey)) { if (my $la = $dlist->get_entryfield($citekey, 'labelalpha')) { $dlist->incr_la_disambiguation($la); } } } =head2 process_presort Put presort fields for an entry into the main Biber bltx state so that it is all available in the same place since this can be set per-type and globally too. =cut sub process_presort { my $self = shift; my $citekey = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $be = $section->bibentry($citekey); # We are treating presort as an option as it can be set per-type and globally too if (my $ps = $be->get_field('presort')) { Biber::Config->setblxoption($secnum, 'presort', $ps, 'ENTRY', $citekey); } } =head2 process_lists Process a bibliography list =cut sub process_lists { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); foreach my $list ($self->datalists->get_lists_for_section($secnum)->@*) { my $lattrs = $list->get_attrs; my $ltype = $list->get_type; my $lname = $list->get_name; # sanitise state - essential in tests which call Biber::prepare() multiple times $list->reset_state; # Last-ditch fallback in case we still don't have a sorting spec $list->set_sortingnamekeytemplatename('global') unless $list->get_sortingnamekeytemplatename; $list->set_uniquenametemplatename('global') unless $list->get_uniquenametemplatename; $list->set_labelalphanametemplatename('global') unless $list->get_labelalphanametemplatename; $list->set_keys([ $section->get_citekeys ]); if ($logger->is_debug()) { # performance tune $logger->debug("Populated datalist '$lname' of type '$ltype' with attributes '$lattrs' in section $secnum with keys: " . join(', ', $list->get_keys->@*)); } # A datalist represents a biblatex refcontext # and many things are refcontext specific and so we need to use the right data. For # example labelalphanametemplate and uniquenametemplate can be set per-list and much # processing uses these unless (Biber::Config->getoption('tool')) { # Set this so that uniqueness processing starts $list->set_unul_changed(1); # Main processing loop, part 1 $self->process_entries_pre($list); # Generate uniqueness information $self->uniqueness($list); } # Generate visible names information for all entries $self->process_visible_names($list); unless (Biber::Config->getoption('tool')) { # Main processing loop, part 2 $self->process_entries_post($list); # Final processing loop $self->process_entries_final($list); } # Filtering - must come before sorting/labelling so that there are no gaps in e.g. extradate if (my $filters = $list->get_filters) { my $flist = []; KEYLOOP: foreach my $k ($list->get_keys->@*) { my $be = $section->bibentry($k); foreach my $f ($filters->@*) { # Filter disjunction is ok if any of the checks are ok, hence the grep() if (ref $f eq 'ARRAY') { next KEYLOOP unless grep {check_list_filter($k, $_->{type}, $_->{value}, $be)} $f->@*; } else { next KEYLOOP unless check_list_filter($k, $f->{type}, $f->{value}, $be); } } push $flist->@*, $k; } if ($logger->is_debug()) { # performance tune $logger->debug("Keys after filtering list '$lname' in section $secnum: " . join(', ', $flist->@*)); } $list->set_keys($flist); # Now save the sorted list in the list object } # Sorting $self->generate_sortdataschema($list); # generate the sort schema information $self->generate_sortinfo($list); # generate the sort information $self->sort_list($list); # sort the list $self->generate_contextdata($list) unless Biber::Config->getoption('tool'); } return; } =head2 check_list_filter Run an entry through a list filter. Returns a boolean. =cut sub check_list_filter { my ($k, $t, $fs, $be) = @_; if ($logger->is_debug()) {# performance tune $logger->debug("Checking key '$k' against filter '$t=$fs'"); } if ($t eq 'type') { if ($be->get_field('entrytype') eq lc($fs)) { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } else { return 0; } } elsif ($t eq 'nottype') { if ($be->get_field('entrytype') eq lc($fs)) { return 0; } else { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } } elsif ($t eq 'subtype') { if ($be->field_exists('entrysubtype') and $be->get_field('entrysubtype') eq lc($fs)) { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } else { return 0; } } elsif ($t eq 'notsubtype') { if ($be->field_exists('entrysubtype') and $be->get_field('entrysubtype') eq lc($fs)) { return 0; } else { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } } elsif ($t eq 'keyword') { if ($be->has_keyword($fs)) { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } else { return 0; } } elsif ($t eq 'notkeyword') { if ($be->has_keyword($fs)) { return 0; } else { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } } elsif ($t eq 'field') { if ($be->field_exists($fs)) { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } else { return 0; } } elsif ($t eq 'notfield') { if ($be->field_exists($fs)) { return 0; } else { if ($logger->is_trace()) {# performance tune $logger->trace("Key '$k' passes against filter '$t=$fs'"); } } } return 1; } =head2 generate_sortdataschema Generate sort data schema for Sort::Key from sort spec like this: spec => [ [undef, { presort => {} }], [{ final => 1 }, { sortkey => {} }], [ {'sort_direction' => 'descending'}, { sortname => {} }, { author => {} }, { editor => {} }, { translator => {} }, { sorttitle => {} }, { title => {} }, ], [undef, { sortyear => {} }, { year => {} }], [undef, { sorttitle => {} }, { title => {} }], [undef, { volume => {} }, { "0000" => {} }], ], =cut sub generate_sortdataschema { my ($self, $list) = @_; my $dm = Biber::Config->get_dm; my $ds; my $schema; # Check if sorting templatename for the list contains anything ... if (keys Biber::Config->getblxoption(undef, 'sortingtemplate')->{$list->get_sortingtemplatename}->%*) { $schema = Biber::Config->getblxoption(undef, 'sortingtemplate')->{$list->get_sortingtemplatename}; } else { # ... fall back to global default if named template does not exist $schema = Biber::Config->getblxoption(undef, 'sortingtemplate')->{Biber::Config->getblxoption(undef, 'sortingtemplatename')}; } $list->set_sortingtemplate($schema); # link the sort schema into the list foreach my $sort ($schema->{spec}->@*) { # Assume here that every item in a sorting spec section is the same datatype # See header for data structure my $direction = ''; while (my ($sopt, $val) = each $sort->[0]->%*) { if ($sopt eq 'sort_direction') { if ($val eq 'descending') { $direction = '-'; } } } my $spec = $dm->{sortdataschema}->([keys $sort->[1]->%*]->[0]); push $ds->@*, {spec => "$direction$spec", $spec => 1}; # Speed shortcut for sortkey extraction sub } $list->set_sortdataschema($ds); return; } =head2 generate_sortinfo Generate information for sorting =cut sub generate_sortinfo { my ($self, $dlist) = @_; foreach my $key ($dlist->get_keys->@*) { $self->_generatesortinfo($key, $dlist); } return; } =head2 uniqueness Generate the uniqueness information needed when creating .bbl =cut sub uniqueness { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); # Generate uniqueness information according to this algorithm: # 1. Generate uniquename if uniquename option is set # 2. if (uniquelist has never run before OR step 1 changed any uniquename values) { # goto step 3 # } else { return } # 3. Completely regenerate uniquelist if uniquelist option is set # 4. if (step 3 changed any uniquelist values) { # goto step 1 # } else { return } # uniquelist can never shorten to a list shorter than maxcitenames because: # * Shortening a list can't make it unique # * You can't lengthen it if the list is shorter than maxcitenames because there # is no more information to add that you don't already have. # uniquelist cannot be less than mincitenames as the list is either unambiguous # at mincitenames or it isn't and uniquelist needs more information by adding items # Set a flag for first uniquelist pass. This is a special case as we always want to run # at least one uniquelist pass if requested, regardless of unul_done global flag. my $first_ul_pass = 1; # Generate uniquename information, if requested while ('true') { unless ($dlist->get_unul_done) { if ($logger->is_debug()) {# performance tune $logger->debug("Entering uniquename processing"); } $dlist->set_unul_changed(0); # reset state for global unul changed flag $self->create_uniquename_info($dlist); $self->generate_uniquename($dlist); } else { last; # uniquename/uniquelist disambiguation is finished as nothing changed } # Generate uniquelist information, if requested # Always run uniquelist at least once, if requested if ($first_ul_pass or not $dlist->get_unul_done) { if ($logger->is_debug()) {# performance tune $logger->debug("Entering uniquelist processing"); } $dlist->set_unul_changed(0); # reset state for global unul changed flag $first_ul_pass = 0; # Ignore special case when uniquelist has run once $self->create_uniquelist_info($dlist); $self->generate_uniquelist($dlist); } else { last; # uniquename/uniquelist disambiguation is finished as nothing changed } } return; } =head2 create_uniquename_info Gather the uniquename information as we look through the names What is happening in here is the following: We are registering the number of occurrences of each name, name+init and fullname within a specific context. For example, the context is "global" with uniquename < mininit and "name list" for uniquename=mininit or minfull. The keys we store to count this are the most specific information for the context, so, for uniquename < mininit, this is the full name and for uniquename=mininit or minfull, this is the complete list of full names. These keys have values in a hash which are ignored. They serve only to accumulate repeated occurrences with the context and we don't care about this and so the values are a useful sinkhole for such repetition. For example, if we find in the global context a base name "Smith" in two different entries under the same form "Alan Smith", the data structure will look like: {Smith}->{global}->{Alan Smith} = 2 We don't care about the value as this means that there are 2 "Alan Smith"s in the global context which need disambiguating identically anyway. So, we just count the keys for the base name "Smith" in the global context to see how ambiguous the base name itself is. This would be "1" and so "Alan Smith" would get uniquename=false because it's unambiguous as just "Smith". The same goes for "minimal" list context disambiguation for uniquename=mininit or minfull. For example, if we had the base name "Smith" to disambiguate in two entries with labelname "John Smith and Alan Jones", the data structure would look like: {Smith}->{Smith+Jones}->{John Smith+Alan Jones} = 2 Again, counting the keys of the context for the base name gives us "1" which means we have uniquename=false for "John Smith" in both entries because it's the same list. This also works for repeated names in the same list "John Smith and Bert Smith". Disambiguating "Smith" in this: {Smith}->{Smith+Smith}->{John Smith+Bert Smith} = 2 So both "John Smith" and "Bert Smith" in this entry get uniquename=false (of course, as long as there are no other "X Smith and Y Smith" entries where X != "John" or Y != "Bert"). The values from biblatex.sty: false = 0 init = 1 true = 2 full = 2 allinit = 3 allfull = 4 mininit = 5 minfull = 6 =cut sub create_uniquename_info { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; # Reset uniquename information as we have to generate it # again because uniquelist information might have changed $dlist->reset_uniquenamecount; MAIN: foreach my $citekey ( $section->get_citekeys ) { my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); my $lni = $be->get_labelname_info; next unless defined($lni); # only care about labelname my $nl = $be->get_field($lni); my $nlid = $nl->get_id; my $un = Biber::Config->getblxoption($secnum, 'uniquename', $bee, $citekey); # Per-namelist uniquename if (defined($nl->get_uniquename)) { $un = $nl->get_uniquename; } if ($logger->is_trace()) {# performance tune $logger->trace("Generating uniquename information for '$citekey'"); } # Set the index limit beyond which we don't look for disambiguating information my $ul = undef; # Not set if (defined($dlist->get_uniquelist($nlid))) { # If defined, $ul will always be >1, see comment in set_uniquelist() in Names.pm $ul = $dlist->get_uniquelist($nlid); } my $maxcn = Biber::Config->getblxoption($secnum, 'maxcitenames', $bee, $citekey); my $mincn = Biber::Config->getblxoption($secnum, 'mincitenames', $bee, $citekey); # Note that we don't determine if a name is unique here - # we can't, were still processing entries at this point. # Here we are just recording seen combinations of the basename plus # non-basename parts in both initial and full formats. # # A name scope can be either a complete single name or a list of names # depending on whether uniquename=min* or not # # Anything which has more than one combination for a given basename+non-basenameparts # would be uniquename = 2 unless even the full name doesn't disambiguate # and then it is left at uniquename = 0 my $num_names = $nl->count; my $names = $nl->names; # If name list was truncated in bib with "and others", this overrides maxcitenames my $morenames = $nl->get_morenames ? 1 : 0; my %truncnames; my @basenames; my @allnames; foreach my $n ($names->@*) { my $nid = $n->get_id; # Per-name uniquename if (defined($n->get_uniquename)) { $un = $n->get_uniquename; } next MAIN if $un eq 'false'; # We need to track two types of uniquename disambiguation here: # # 1. Information to disambiguate visible names from visible names # where "visibility" is governed by uniquelist/max/mincitenames. # This is the actual "uniquename" feature information. # 2. Information to disambiguate all names, regardless of visibility # This is needed for uniquelist because it needs to construct # hypothetical ambiguity information for every list position. # We want to record disambiguation information for visible names when: # uniquename = allinit or allfull # Uniquelist is set and a name appears before the uniquelist truncation # Uniquelist is not set and the entry has an explicit "and others" at the end # since this means that every name is less than maxcitenames by definition # Uniquelist is not set and a name list is shorter than the maxcitenames truncation # Uniquelist is not set, a name list is longer than the maxcitenames truncation # and the name appears before the mincitenames truncation if ($un eq 'allinit' or $un eq 'allfull' or ($ul and $n->get_index <= $ul) or $morenames or $num_names <= $maxcn or $n->get_index <= $mincn) { # implicitly, $num_names > $maxcn here $truncnames{$nid} = 1; if ($un eq 'mininit' or $un eq 'minfull') { push @basenames, $dlist->get_basenamestring($nlid, $nid); push @allnames, $dlist->get_namestring($nlid, $nid); } } } # Information for mininit or minfull, here the basename # and non-basename is all names in the namelist, not just the current name my $min_basename; my $min_namestring; if ($un eq 'mininit' or $un eq 'minfull') { $min_basename = join("\x{10FFFD}", @basenames); $min_namestring = join("\x{10FFFD}", @allnames); if ($#basenames + 1 < $num_names or $morenames) { $min_basename .= "\x{10FFFD}et al"; # if truncated, record this $min_namestring .= "\x{10FFFD}et al"; # if truncated, record this } } foreach my $n ($names->@*) { my $nid = $n->get_id; my $basename = $dlist->get_basenamestring($nlid, $nid); my $namestring = $dlist->get_namestring($nlid, $nid); my $namestrings = $dlist->get_namestrings($nlid, $nid); my $namedisamiguationscope; my $nskey; # Disambiguation scope and key depend on the uniquename setting if ($un eq 'init' or $un eq 'full' or $un eq 'allinit' or $un eq 'allfull') { $namedisamiguationscope = 'global'; $nskey = join("\x{10FFFD}", $namestrings->@*); } elsif ($un eq 'mininit' or $un eq 'minfull') { $namedisamiguationscope = $min_basename; $nskey = $min_namestring; $dlist->set_unmininfo($nlid, $nid, $min_basename); } if ($truncnames{$nid}) { # Record uniqueness information entry for all name contexts # showing that they have been seen for this name key in this name scope foreach my $ns ($namestrings->@*) { $dlist->add_uniquenamecount($ns, $namedisamiguationscope, $nskey); } } # As above but here we are collecting (separate) information for all # names, regardless of visibility (needed to track uniquelist) my $eul = Biber::Config->getblxoption($secnum, 'uniquelist', $bee, $citekey); # Per-namelist uniquelist my $nl = $be->get_field($lni); if (defined($lni) and $nl->get_uniquelist) { $eul = $nl->get_uniquelist; } if ($eul ne 'false') { foreach my $ns ($namestrings->@*) { $dlist->add_uniquenamecount_all($ns, $namedisamiguationscope, $nskey); } } } } return; } =head2 generate_uniquename Generate the per-name uniquename values using the information harvested by create_uniquename_info() =cut sub generate_uniquename { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; # Now use the information to set the actual uniquename information MAIN: foreach my $citekey ( $section->get_citekeys ) { my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); my $lni = $be->get_labelname_info; next unless defined($lni); # only care about labelname my $nl = $be->get_field($lni); my $nlid = $nl->get_id; my $un = Biber::Config->getblxoption($secnum, 'uniquename', $bee, $citekey); # Per-namelist uniquename if (defined($nl->get_uniquename)) { $un = $nl->get_uniquename; } if ($logger->is_trace()) {# performance tune $logger->trace("Setting uniquename for '$citekey'"); } # Set the index limit beyond which we don't look for disambiguating information # If defined, $ul will always be >1, see comment in set_uniquelist() in Names.pm my $ul = $dlist->get_uniquelist($nlid); my $maxcn = Biber::Config->getblxoption($secnum, 'maxcitenames', $bee, $citekey); my $mincn = Biber::Config->getblxoption($secnum, 'mincitenames', $bee, $citekey); my $num_names = $nl->count; my $names = $nl->names; # If name list was truncated in bib with "and others", this overrides maxcitenames my $morenames = ($nl->get_morenames) ? 1 : 0; my %truncnames; foreach my $n ($names->@*) { my $nid = $n->get_id; # Per-name uniquename if (defined($n->get_uniquename)) { $un = $n->get_uniquename; } next MAIN if $un eq 'false'; if ($un eq 'allinit' or $un eq 'allfull' or ($ul and $n->get_index <= $ul) or $morenames or $num_names <= $maxcn or $n->get_index <= $mincn) { # implicitly, $num_names > $maxcn here $truncnames{$nid} = 1; } else { # Set anything now not visible due to uniquelist back to 0 $dlist->reset_uniquename($nlid, $nid); } } foreach my $n ($names->@*) { my $nid = $n->get_id; my $basename = $dlist->get_basenamestring($nlid, $nid); my $namestrings = $dlist->get_namestrings($nlid, $nid); my $namedisschema = $dlist->get_namedisschema($nlid, $nid); my $namescope = 'global'; # default if ($un eq 'mininit' or $un eq 'minfull') { $namescope = $dlist->get_unmininfo($nlid, $nid); } if ($truncnames{$nid}) { for (my $i=0; $i<=$namestrings->$#*; $i++) { my $ns = $namestrings->[$i]; my $nss = $namedisschema->[$i]; if ($dlist->get_numofuniquenames($ns, $namescope) == 1) { $dlist->set_uniquename($nlid, $nid, $nss); # We have found the most general disambiguation schema which disambiguates, # skip the rest since the schema array goes from most general to least general last; } } # Nothing disambiguates, set to just base of schema $dlist->set_uniquename($nlid, $nid, $namedisschema->[0]) unless defined($dlist->get_uniquename($nlid, $nid)); } my $eul = Biber::Config->getblxoption($secnum, 'uniquelist', $bee, $citekey); # Per-namelist uniquelist my $names = $be->get_field($be->get_labelname_info); if (defined($names->get_uniquelist)) { $eul = $names->get_uniquelist; } # As above but not just for visible names (needed for uniquelist) if ($eul ne 'false') { for (my $i=0; $i<=$namestrings->$#*; $i++) { my $ns = $namestrings->[$i]; my $nss = $namedisschema->[$i]; if ($dlist->get_numofuniquenames_all($ns, $namescope) == 1) { $dlist->set_uniquename_all($nlid, $nid, $nss); # We have found the most general disambiguation schema which disambiguates, # skip the rest since the schema array goes from most general to least general last; } } # Nothing disambiguates, set to just base of schema $dlist->set_uniquename_all($nlid, $nid, $namedisschema->[0]) unless defined($dlist->get_uniquename_all($nlid, $nid)); } } } return; } =head2 create_uniquelist_info Gather the uniquelist information as we look through the names =cut sub create_uniquelist_info { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; # Reset uniquelist information as we have to generate it again because uniquename # information might have changed $dlist->reset_uniquelistcount; foreach my $citekey ($section->get_citekeys) { my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); my $maxcn = Biber::Config->getblxoption($secnum, 'maxcitenames', $bee, $citekey); my $mincn = Biber::Config->getblxoption($secnum, 'mincitenames', $bee, $citekey); my $lni = $be->get_labelname_info; next unless defined($lni); # only care about labelname my $nl = $be->get_field($lni); my $nlid = $nl->get_id; my $labelyear = $be->get_field('labelyear'); my $ul = Biber::Config->getblxoption($secnum, 'uniquelist', $bee, $citekey); # Per-namelist uniquelist if (defined($nl->get_uniquelist)) { $ul = $nl->get_uniquelist; } next if $ul eq 'false'; if ($logger->is_trace()) {# performance tune $logger->trace("Generating uniquelist information for '$citekey'"); } my $num_names = $nl->count; my $namelist = []; my $ulminyear_namelist = []; foreach my $n ($nl->names->@*) { my $nid = $n->get_id; my $basename = $dlist->get_basenamestring($nlid, $nid); my $namestrings = $dlist->get_namestrings($nlid, $nid); my $namedisschema = $dlist->get_namedisschema($nlid, $nid); my $ulminyearflag = 0; # uniquelist = minyear if ($ul eq 'minyear') { # minyear uniquename, we set based on the max/mincitenames list if ($num_names > $maxcn and $n->get_index <= $mincn) { $ulminyearflag = 1; } } my $unall = $dlist->get_uniquename_all($nlid, $nid); # uniquename is not set so generate uniquelist based on just base name if (not defined($unall) or $unall->[0] eq 'base') { push $namelist->@*, $basename if defined($basename); push $ulminyear_namelist->@*, $basename if $ulminyearflag; } else { for (my $i=0; $i<=$namedisschema->$#*; $i++) { my $nss = $namedisschema->[$i]; if (Compare($nss, $unall)) { push $namelist->@*, $namestrings->[$i] if defined($namestrings->[$i]); push $ulminyear_namelist->@*, $namestrings->[$i] if $ulminyearflag; } } } $dlist->add_uniquelistcount($namelist); } # We need to know the list uniqueness counts for the whole list separately otherwise # we will falsely "disambiguate" identical name lists from each other by setting # uniquelist to the full list because every part of each list will have more than # one count. We therefore need to distinguish counts which are of the final, complete # list of names. If there is more than one count for these, (meaning that there are # two or more identical name lists), we don't expand them at all as there is no point. $dlist->add_uniquelistcount_final($namelist); # uniquelist=minyear needs tracking only of namelists in same labelyear if ($ul eq 'minyear') { $dlist->add_uniquelistcount_final($namelist, $labelyear); } # Add count for uniquelist=minyear unless (Compare($ulminyear_namelist, [])) { $dlist->add_uniquelistcount_minyear($ulminyear_namelist, $labelyear, $namelist); } } return; } =head2 generate_uniquelist Generate the per-namelist uniquelist values using the information harvested by create_uniquelist_info() =cut sub generate_uniquelist { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; MAIN: foreach my $citekey ( $section->get_citekeys ) { my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); my $labelyear = $be->get_field('labelyear'); my $maxcn = Biber::Config->getblxoption($secnum, 'maxcitenames', $bee, $citekey); my $mincn = Biber::Config->getblxoption($secnum, 'mincitenames', $bee, $citekey); my $lni = $be->get_labelname_info; next unless defined($lni); # only care about labelname my $nl = $be->get_field($lni); my $nlid = $nl->get_id; my $ul = Biber::Config->getblxoption($secnum, 'uniquelist', $bee, $citekey); # Per-namelist uniquelist if (defined($nl->get_uniquelist)) { $ul = $nl->get_uniquelist; } next if $ul eq 'false'; if ($logger->is_trace()) {# performance tune $logger->trace("Creating uniquelist for '$citekey'"); } my $namelist = []; my $num_names = $nl->count; foreach my $n ($nl->names->@*) { my $nid = $n->get_id; my $basename = $dlist->get_basenamestring($nlid, $nid); my $namestrings = $dlist->get_namestrings($nlid, $nid); my $namedisschema = $dlist->get_namedisschema($nlid, $nid); my $unall = $dlist->get_uniquename_all($nlid, $nid); # uniquename is not set so generate uniquelist based on just base name if (not defined($unall) or $unall->[0] eq 'base') { push $namelist->@*, $basename if defined($basename); } else { for (my $i=0; $i<=$namedisschema->$#*; $i++) { my $nss = $namedisschema->[$i]; if (Compare($nss, $unall)) { push $namelist->@*, $namestrings->[$i] if defined($namestrings->[$i]); } } } # With uniquelist=minyear, uniquelist should not be set at all if there are # no other entries with the same max/mincitenames visible list and different years # to disambiguate from if ($ul eq 'minyear' and $num_names > $maxcn and $n->get_index <= $mincn and $dlist->get_uniquelistcount_minyear($namelist, $labelyear) == 1) { if ($logger->is_trace()) { # performance tune $logger->trace("Not setting uniquelist=minyear for '$citekey'"); } next MAIN; } # list is unique after this many names so we set uniquelist to this point # Even if uniquelist=minyear, we record normal uniquelist information if # we didn't skip this key in the test above if ($dlist->get_uniquelistcount($namelist) == 1) { last; } } if ($logger->is_trace()) { # performance tune $logger->trace("Setting uniquelist for '$citekey' using " . join(',', $namelist->@*)); } $dlist->set_uniquelist($nl, $namelist, $labelyear, $ul, $maxcn, $mincn); } return; } =head2 generate_contextdata Generate information for data which may changes per datalist =cut sub generate_contextdata { my ($self, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $dmh = Biber::Config->get_dm_helpers; # This loop critically depends on the order of the citekeys which # is why we have to do sorting before this foreach my $key ($dlist->get_keys->@*) { my $be = $section->bibentry($key); my $bee = $be->get_field('entrytype'); my $lni = $be->get_labelname_info; # Sort any set members according to the list sorting order of the keys. # This gets the indices of the set elements in the sorted datalist, sorts # them numerically and then extracts the actual citekeys to make a new # entryset field value which we store in the list metadata until output time. if ($be->get_field('entrytype') eq 'set') { my @es; if (Biber::Config->getblxoption(undef, 'sortsets')) { my $setkeys = $be->get_field('entryset'); my $keys = $dlist->get_keys; my @sorted_setkeys; # Generate array of indices of set members in the main sorted datalist foreach my $elem ($setkeys->@*) { push @sorted_setkeys, first_index {$elem eq $_} $keys->@*; } # Sort the indices numerically (sorting has already been done so this is fine) # then get the actual citekeys using an array slice on the main sorted list @es = $keys->@[sort {$a <=> $b} @sorted_setkeys]; } else { @es = $be->get_field('entryset')->@* if $be->get_field('entryset'); } $dlist->set_entryfield($key, 'entryset', \@es); } # Only generate extra* information if skiplab is not set. # Don't forget that skiplab is implied for set members unless (Biber::Config->getblxoption($secnum, 'skiplab', $bee, $key)) { # extraname if (my $labelnamehash = $dlist->get_entryfield($key, 'labelnamehash')) { if ($dlist->get_seen_labelname($labelnamehash) > 1) { my $v = $dlist->incr_seen_extraname($labelnamehash); $dlist->set_extranamedata_for_key($key, $v); } } # extradate if (Biber::Config->getblxoption(undef, 'labeldateparts', $bee, $key)) { my $nametitledateparts = $dlist->get_entryfield($key, 'nametitledateparts'); if ($dlist->get_seen_nametitledateparts($nametitledateparts) > 1) { if ($logger->is_trace()) {# performance tune $logger->trace("nametitledateparts for '$nametitledateparts': " . $dlist->get_seen_nametitledateparts($nametitledateparts)); } my $v = $dlist->incr_seen_extradate($nametitledateparts); $dlist->set_extradatedata_for_key($key, $v); } } # extratitle if (Biber::Config->getblxoption(undef, 'labeltitle', $bee, $key)) { my $nametitle = $dlist->get_entryfield($key, 'nametitle'); if ($dlist->get_seen_nametitle($nametitle) > 1) { if ($logger->is_trace()) {# performance tune $logger->trace("nametitle for '$nametitle': " . $dlist->get_seen_nametitle($nametitle)); } my $v = $dlist->incr_seen_extratitle($nametitle); $dlist->set_extratitledata_for_key($key, $v); } } # extratitleyear if (Biber::Config->getblxoption(undef, 'labeltitleyear', $bee, $key)) { my $titleyear = $dlist->get_entryfield($key, 'titleyear'); if ($dlist->get_seen_titleyear($titleyear) > 1) { if ($logger->is_trace()) {# performance tune $logger->trace("titleyear for '$titleyear': " . $dlist->get_seen_titleyear($titleyear)); } my $v = $dlist->incr_seen_extratitleyear($titleyear); $dlist->set_extratitleyeardata_for_key($key, $v); } } # labelalpha # This works because labelalpha field is regenerated per-list if (Biber::Config->getblxoption(undef, 'labelalpha', $bee, $key)) { $dlist->set_labelalphadata_for_key($key, $dlist->get_entryfield($key, 'labelalpha')); } # extraalpha if (Biber::Config->getblxoption(undef, 'labelalpha', $bee, $key)) { my $la = $dlist->get_entryfield($key, 'labelalpha'); if ($dlist->get_la_disambiguation($la) > 1) { if ($logger->is_trace()) {# performance tune $logger->trace("labelalpha disambiguation for '$la': " . $dlist->get_la_disambiguation($la)); } my $v = $dlist->incr_seen_extraalpha($la); $dlist->set_extraalphadata_for_key($key, $v); } } } # uniquename foreach my $namefield ($dmh->{namelists}->@*) { if (my $nl = $be->get_field($namefield)) { my $nlid = $nl->get_id; next unless (defined($lni) and $lni eq $namefield); # labelname only foreach my $n ($nl->names->@*) { my $nid = $n->get_id; next unless my $uniquename = $dlist->get_uniquename($nlid, $nid); my $namedisschema = $dlist->get_namedisschema($nlid, $nid); # Construct per-namepart uniquename value my %pnun; for (my $i=0; $i<=$namedisschema->$#*; $i++) { my $nss = $namedisschema->[$i]; if (Compare($uniquename, $nss)) { # Find where uniqueness is established, determine un settings up to this point my @dis = grep {$_->[0] ne 'base' and $_->[1] ne 'full'} $namedisschema->@[1..$i-1]; push @dis, $namedisschema->@[$i]; # normalise 'fullonly' to 'full' now that we have stripped all non-disambiguating elements %pnun = map {$_->[0] => ($_->[1] eq 'fullonly' ? 'full' : $_->[1])} @dis; last; } } foreach my $np ($n->get_nameparts) { my $npun = $UNIQUENAME_VALUES{$pnun{$np} // 'none'}; $npun //= 0; $dlist->set_unparts($nlid, $nid, $np, $npun); } } } } } return; } =head2 generate_singletitle Generate the singletitle field, if requested. The information for generating this is gathered in process_workuniqueness() =cut sub generate_singletitle { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption(undef, 'singletitle', $bee, $citekey)) { my $sn = $dlist->get_entryfield($citekey, 'seenname'); if (defined($sn) and $dlist->get_seenname($sn) < 2 ) { $dlist->set_entryfield($citekey, 'singletitle', 1); } } return; } =head2 generate_uniquetitle Generate the uniquetitle field, if requested. The information for generating this is gathered in process_workuniqueness() =cut sub generate_uniquetitle { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption(undef, 'uniquetitle', $bee, $citekey)) { my $ut = $dlist->get_entryfield($citekey, 'seentitle'); if (defined($ut) and $dlist->get_seentitle($ut) < 2 ) { $dlist->set_entryfield($citekey, 'uniquetitle', 1); } } return; } =head2 generate_uniquebaretitle Generate the uniquebaretitle field, if requested. The information for generating this is gathered in process_workuniqueness() =cut sub generate_uniquebaretitle { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption(undef, 'uniquebaretitle', $bee, $citekey)) { my $ubt = $dlist->get_entryfield($citekey, 'seenbaretitle'); if (defined($ubt) and $dlist->get_seenbaretitle($ubt) < 2 ) { $dlist->set_entryfield($citekey, 'uniquebaretitle', 1); } } return; } =head2 generate_uniquework Generate the uniquework field, if requested. The information for generating this is gathered in process_workuniqueness() =cut sub generate_uniquework { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption(undef, 'uniquework', $bee, $citekey)) { if ($dlist->get_entryfield($citekey, 'seenwork') and $dlist->get_seenwork($dlist->get_entryfield($citekey, 'seenwork')) < 2 ) { if ($logger->is_trace()) { # performance tune $logger->trace("Setting uniquework for '$citekey'"); } $dlist->set_entryfield($citekey, 'uniquework', 1); } else { if ($logger->is_trace()) { # performance tune $logger->trace("Not setting uniquework for '$citekey'"); } } } return; } =head2 generate_uniquepa Generate the uniqueprimaryauthor field, if requested. The information for generating this is gathered in create_uniquename_info() =cut sub generate_uniquepa { my ($self, $citekey, $dlist) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $bibentries = $section->bibentries; my $be = $bibentries->entry($citekey); my $bee = $be->get_field('entrytype'); if (Biber::Config->getblxoption(undef, 'uniqueprimaryauthor', $bee, $citekey)) { if ($dlist->get_entryfield($citekey, 'seenprimaryauthor') and $dlist->get_seenpa($dlist->get_entryfield($citekey, 'seenprimaryauthor')) < 2 ) { if ($logger->is_trace()) { # performance tune $logger->trace("Setting uniqueprimaryauthor for '$citekey'"); } $dlist->set_entryfield($citekey, 'uniqueprimaryauthor', 1); } else { if ($logger->is_trace()) { # performance tune $logger->trace("Not setting uniqueprimaryauthor for '$citekey'"); } } } return; } =head2 sort_list Sort a list using information in entries according to a certain sorting template. Use a flag to skip info messages on first pass =cut sub sort_list { my ($self, $dlist) = @_; my $sortingtemplate = $dlist->get_sortingtemplate; my $lsds = $dlist->get_sortdataschema; my @keys = $dlist->get_keys->@*; my $lstn = $dlist->get_sortingtemplatename; my $ltype = $dlist->get_type; my $lname = $dlist->get_name; my $llocale = locale2bcp47($sortingtemplate->{locale} || Biber::Config->getblxoption(undef, 'sortlocale')); my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune if (Biber::Config->getoption('sortcase')) { $logger->debug("Sorting is by default case-SENSITIVE"); } else { $logger->debug("Sorting is by default case-INSENSITIVE"); } $logger->debug("Keys before sort:\n"); foreach my $k (@keys) { $logger->debug("$k => " . $dlist->get_sortdata_for_key($k)->[0]); } } if ($logger->is_trace()) { # performance shortcut $logger->trace("Sorting datalist '$lname' of type '$ltype' with sortingtemplate '$lstn'. Scheme is\n-------------------\n" . Data::Dump::pp($sortingtemplate) . "\n-------------------\n"); } # Set up locale. Order of priority is: # 1. locale value passed to Unicode::Collate::Locale->new() (Unicode::Collate sorts only) # 2. Biber sortlocale option # 3. Sorting 'locale' option # 4. Global biblatex 'sortlocale' option my $thislocale = Biber::Config->getoption('sortlocale') || $llocale; if ($logger->is_debug()) {# performance tune $logger->debug("Locale for sorting is '$thislocale'"); } if ( Biber::Config->getoption('fastsort') ) { biber_warn("fastsort option no longer required/supported, defaulting to UCA"); } my $collopts = Biber::Config->getoption('collate_options'); # UCA level 2 if case insensitive sorting is requested unless (Biber::Config->getoption('sortcase')) { $collopts->{level} = 2; } # Add upper_before_lower option $collopts->{upper_before_lower} = Biber::Config->getoption('sortupper'); # Create collation object my $Collator = Biber::UCollate->new($thislocale, $collopts->%*); my $UCAversion = $Collator->version(); $logger->info("Sorting list '$lname' of type '$ltype' with template '$lstn' and locale '$thislocale'"); if ($logger->is_debug()) {# performance tune $logger->debug("Sorting with Unicode::Collate (" . stringify_hash($collopts) . ", UCA version: $UCAversion, Locale: " . $Collator->getlocale . ")"); } # Log if U::C::L currently has no tailoring for used locale if ($Collator->getlocale eq 'default') { $logger->info("No sort tailoring available for locale '$thislocale'"); } # For collecting the collation object settings for retrieval in the sort key extractor my @collateobjs; # Instantiate Sort::Key sorter with correct data schema my $sorter = multikeysorter(map {$_->{spec}} $lsds->@*); # Sorting cache to shortcut expensive UCA keygen my $cache; # Construct data needed for sort key extractor foreach my $sortset ($sortingtemplate->{spec}->@*) { my $fc = ''; my @fc; # Re-instantiate collation object if a different locale is required for this sort item. # This can't be done in a ->change() method, has to be a new object. my $cobj; my $sl = locale2bcp47($sortset->[0]{locale}); if (defined($sl) and $sl ne $thislocale) { $cobj = 'Biber::UCollate->new(' . "'$sl'" . ",'" . join("','", $collopts->%*) . "')"; } else { $cobj = '$Collator'; } # If the case or upper option on a field is not the global default # set it locally on the $Collator by constructing a change() method call my $sc = $sortset->[0]{sortcase}; if (defined($sc) and $sc != Biber::Config->getoption('sortcase')) { push @fc, $sc ? 'level => 4' : 'level => 2'; } my $su = $sortset->[0]{sortupper}; if (defined($su) and $su != Biber::Config->getoption('sortupper')) { push @fc, $su ? 'upper_before_lower => 1' : 'upper_before_lower => 0'; } if (@fc) { # This field has custom collation options $fc = '->change(' . join(',', @fc) . ')'; } else { # Reset collation options to global defaults if there are no field options # We have to do this as ->change modifies the Collation object $fc = '->change(level => ' . $collopts->{level} . ' ,upper_before_lower => ' . $collopts->{upper_before_lower} . ')'; } push @collateobjs, $cobj . $fc; } # Sort::Key sort key extractor called on each element of array to be sorted and # returns an array of the sorting keys for each sorting field. We have to construct # the collator strings and then eval() because passing the collation # objects in directly by reference means that the wrong settings are present on some of them # since they point to the same object and the ->change() calls in later references # therefore change earlier sorting field sorts. So, we have to defer until actual use time. my $extract = sub { my @d; my $key = $keys[$_]; # Loop over all sorting fields for (my $i=0; $i<=$#{$dlist->get_sortdata_for_key($key)->[1]}; $i++) { my $sortfield = $dlist->get_sortdata_for_key($key)->[1][$i]; # Resolve real zeros back again if ($lsds->[$i]{int}) { # There are special cases to be careful of here in that "final" elements # in sorting copy themselves as strings to further sort fields and therefore # need coercing to 0 for int tests. Fallback of '0' for int fields should # be handled in the sorting spec otherwise this will be the default for missing # int fields. This means that entries with missing data for an int sort field will # always sort after int fields by default. # normalise all strings to a large int so that they sort after real ints # as a fallback push @d, looks_like_number($sortfield) ? $sortfield : 2000000000; } else { # Don't do '$sortfield' or "$sortfield" because it might contain quotes my $a = $collateobjs[$i] . "->getSortKey(q{$sortfield})"; # Cache index is just the collation object opts and key gen call in string form # since this should be unique for a key/collopts combination push @d, $cache->{$a} ||= eval $a; } } return @d; }; # We actually sort the indices of the keys array, as we need these in the extractor. # Then we extract the real keys with a map. This therefore follows the typical ST sort # semantics (plus an OM cache above due to expensive UCA key extraction). @keys = map {$keys[$_]} &$sorter($extract, 0..$#keys); if ($logger->is_debug()) {# performance tune for large @keys $logger->debug("Keys after sort:\n"); foreach my $k (@keys) { $logger->debug("$k => " . $dlist->get_sortdata_for_key($k)->[0]); } } $dlist->set_keys([ @keys ]); return; } =head2 preprocess_options Preprocessing for options. Used primarily to perform process-intensive operations which can be done once instead of inside dense loops later. =cut sub preprocess_options { # nosort - compile regexps if (my $nosort = Biber::Config->getoption('nosort')) { foreach my $nsopt ($nosort->@*) { my $re = $nsopt->{value}; $nsopt->{value} = qr/$re/; } } # nonamestring - compile regexps if (my $nonamestring = Biber::Config->getoption('nonamestring')) { foreach my $nnopt ($nonamestring->@*) { my $re = $nnopt->{value}; $nnopt->{value} = qr/$re/; } } # nolabel - compile regexps if (my $nolabel = Biber::Config->getoption('nolabel')) { foreach my $nsopt ($nolabel->@*) { my $re = $nsopt->{value}; $nsopt->{value} = qr/$re/; } } # noinit - compile regexps if (my $noinit = Biber::Config->getoption('noinit')) { foreach my $nsopt ($noinit->@*) { my $re = $nsopt->{value}; $nsopt->{value} = qr/$re/; } } return; } =head2 prepare Do the main work. Process and sort all entries before writing the output. =cut sub prepare { my $self = shift; my $out = $self->get_output_obj; # Biber::Output object # Place to put global pre-processing things $self->process_setup; foreach my $section ($self->sections->get_sections->@*) { # shortcut - skip sections that don't have any keys next unless $section->get_citekeys or $section->is_allkeys; my $secnum = $section->number; $logger->info("Processing section $secnum"); $section->reset_caches; # Reset the the section caches Biber::Config->_init; # (re)initialise Config object $self->set_current_section($secnum); # Set the section number we are working on $self->preprocess_options; # Preprocess any options $self->fetch_data; # Fetch cited key and dependent data from sources $self->process_citekey_aliases; # Remove citekey aliases from citekeys $self->instantiate_dynamic; # Instantiate any dynamic entries (sets, related) $self->resolve_alias_refs; # Resolve xref/crossref/xdata aliases to real keys $self->resolve_xdata; # Resolve xdata entries $self->cite_setmembers; # Cite set members $self->preprocess_sets; # Record set information $self->calculate_interentry; # Calculate crossrefs/xrefs etc. $self->process_interentry; # Process crossrefs/xrefs etc. $self->validate_datamodel; # Check against data model $self->postprocess_sets; # Add options to set members etc. $self->process_entries_static; # Generate static entry data not dependent on lists $self->process_lists; # Process the output lists $out->create_output_section; # Generate and push the section output into the # output object ready for writing } $out->create_output_misc; # Generate and push the final misc bits of output # into the output object ready for writing return; } =head2 prepare_tool Do the main work for tool mode =cut sub prepare_tool { my $self = shift; my $out = $self->get_output_obj; # Biber::Output object $out->clear_output_macros; # Mostly for tool mode tests $out->clear_output_comments; # Mostly for tool mode tests # Place to put global pre-processing things $self->process_setup_tool; # tool mode only has a section '99999' my $secnum = 99999; my $section = $self->sections->get_section($secnum); $section->reset_caches; # Reset the the section caches (sorting, label etc.) Biber::Config->_init; # (re)initialise Config object $self->set_current_section($secnum); # Set the section number we are working on $self->preprocess_options; # Preprocess any options $self->fetch_data; # Fetch cited key and dependent data from sources $self->resolve_alias_refs; # Resolve xref/crossref/xdata aliases to real keys $self->preprocess_sets; # Record set information $self->calculate_interentry; # Calculate crossrefs/xrefs etc. $self->process_interentry; # Process crossrefs/xrefs etc. $self->resolve_xdata; # Resolve xdata entries $self->validate_datamodel; # Check against data model $self->process_lists; # process the output lists (sort and filtering) $out->create_output_section; # Generate and push the section output into the # into the output object ready for writing return; } =head2 fetch_data Fetch citekey and dependents data from section datasources Expects to find datasource packages named: Biber::Input:::: and one defined subroutine called: Biber::Input::::::extract_entries which takes args: 1: Biber object 2: Datasource name 3: Reference to an array of cite keys to look for and returns an array of the cite keys it did not find in the datasource =cut sub fetch_data { my $self = shift; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $dm = Biber::Config->get_dm; # Only looking for static keys, dynamic key entries are not in any datasource ... my @citekeys = $section->get_static_citekeys; no strict 'refs'; # symbolic references below ... # Clear all T::B macro definitions between sections if asked as T::B never clears these if (Biber::Config->getoption('clrmacros')) { if ($logger->is_debug()) {# performance tune $logger->debug('Clearing Text::BibTeX macros definitions'); } Text::BibTeX::delete_all_macros(); } # (Re-)define the old BibTeX month macros to what biblatex wants unless user stops this unless (Biber::Config->getoption('nostdmacros')) { foreach my $mon (keys %MONTHS) { Text::BibTeX::delete_macro($mon); Text::BibTeX::add_macro_text($mon, $MONTHS{$mon}); } } # First we look for the directly cited keys in each datasource my @remaining_keys = @citekeys; if ($logger->is_debug()) {# performance tune $logger->debug('Looking for directly cited keys: ' . join(', ', @remaining_keys)); } # Process datasource globs my $ds; foreach my $datasource ($section->get_datasources->@*) { unless ($datasource->{type} eq 'file') { push $ds->@*, $datasource; } foreach my $gds (glob_data_file($datasource->{name}, $datasource->{glob})) { push $ds->@*, { type => $datasource->{type}, name => $gds, datatype => $datasource->{datatype}, encoding => $datasource->{encoding}}; } } $section->set_datasources($ds); # Now actually fetch data with expanded list of data sources foreach my $datasource ($section->get_datasources->@*) { # shortcut if we have found all the keys now last unless (@remaining_keys or $section->is_allkeys); my $type = $datasource->{type}; my $name = $datasource->{name}; my $encoding = $datasource->{encoding}; my $datatype = $datasource->{datatype}; if ($datatype eq 'biblatexml') { my $outfile; if (Biber::Config->getoption('tool')) { my $exts = join('|', values %DS_EXTENSIONS); $outfile = Biber::Config->getoption('dsn') =~ s/\.(?:$exts)$/.rng/r; } else { $outfile = Biber::Config->getoption('bcf') =~ s/bcf$/rng/r; } # Generate schema for datasource unless (Biber::Config->getoption('no_bltxml_schema')) { $dm->generate_bltxml_schema($outfile); } if (Biber::Config->getoption('validate_bltxml')) { validate_biber_xml($name, 'bltx', 'http://biblatex-biber.sourceforge.net/biblatexml', $outfile); } } my $package = 'Biber::Input::' . $type . '::' . $datatype; unless(eval "require $package") { my ($vol, $dir, undef) = File::Spec->splitpath( $INC{"Biber.pm"} ); $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/' # Use Windows style globbing on Windows if ($^O =~ /Win/) { $logger->debug("Enabling Windows-style globbing"); require File::DosGlob; File::DosGlob->import('glob'); } my @vts; foreach my $t (glob("$vol$dir/Biber/Input/*")) { my (undef, undef, $tleaf) = File::Spec->splitpath($t); foreach my $dt (map {s/\.pm$//r} glob("$vol$dir/Biber/Input/$tleaf/*.pm")) { my (undef, undef, $dtleaf) = File::Spec->splitpath($dt); push @vts, "$tleaf/$dtleaf"; } } biber_error("Error loading data source package '$package' for '$datatype' '$type' datasource. Valid type/datatypes are: " . join(',', @vts)); } # Slightly different message for tool mode if (Biber::Config->getoption('tool')) { $logger->info("Looking for $datatype $type '$name'"); } else { $logger->info("Looking for $datatype $type '$name' for section $secnum"); } @remaining_keys = "${package}::extract_entries"->(locate_data_file($name), $encoding, \@remaining_keys); } # error reporting if ($logger->is_debug()) {# performance tune $logger->debug("Directly cited keys not found for section '$secnum': " . join(',', @remaining_keys)); } foreach my $citekey (@remaining_keys) { biber_warn("I didn't find a database entry for '$citekey' (section $secnum)"); $section->del_citekey($citekey); $section->add_undef_citekey($citekey); } if ($logger->is_debug()) {# performance tune $logger->debug('Building dependents for keys: ' . join(',', $section->get_citekeys)); } # dependent key list generation - has to be a sub as it's recursive to catch # nested crossrefs, xdata etc. # We still do this even in tool mode which is implicitly allkeys=1 because it # prunes things like missing crossrefs etc. which otherwise would cause problems # later on get_dependents($self, [$section->get_citekeys]); if ($logger->is_debug()) {# performance tune $logger->debug("Citekeys for section '$secnum' after fetching data: " . join(', ', $section->get_citekeys)); } return; } =head2 get_dependents Get dependents of the entries for a given list of citekeys. Is called recursively until there are no more dependents to look for. =cut sub get_dependents { my ($self, $keys, $keyswithdeps, $missing) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); my $new_deps; $keyswithdeps = $keyswithdeps // []; $missing = $missing // []; no strict 'refs'; # symbolic references below ... foreach my $citekey ($keys->@*) { # aliases need resolving here and are treated as dependents if (my $real = $section->get_citekey_alias($citekey)) { if ($logger->is_debug()) {# performance tune $logger->debug("Alias '$citekey' requires real key '$real'"); } push $new_deps->@*, $real; push $keyswithdeps->@*, $real unless first {$real eq $_} $keyswithdeps->@*; } # Dynamic sets don't exist yet but their members do elsif (my @dmems = $section->get_dynamic_set($citekey)) { # skip looking for dependent if it's already there foreach my $dm (@dmems) { unless ($section->bibentry($dm)) { push $new_deps->@*, $dm; push $keyswithdeps->@*, $citekey unless first {$citekey eq $_} $keyswithdeps->@*; } } if ($logger->is_debug()) {# performance tune $logger->debug("Dynamic set entry '$citekey' has members: " . join(', ', @dmems)); } } else { # This must exist for all but dynamic sets my $be = $section->bibentry($citekey); my $bee = $be->get_field('entrytype'); # xdata if (my $xdata = $be->get_xdata_refs) { foreach my $xdatum ($xdata->@*) { foreach my $xdref ($xdatum->{xdataentries}->@*) { # skip looking for dependent if it's already there (loop suppression) push $new_deps->@*, $xdref unless $section->bibentry($xdref); if ($logger->is_debug()) { # performance tune $logger->debug("$bee entry '$citekey' has xdata '$xdref'"); } push $keyswithdeps->@*, $citekey unless first {$citekey eq $_} $keyswithdeps->@*; } } } # xrefs if (my $refkey = $be->get_field('xref')) { # skip looking for dependent if it's already there (loop suppression) push $new_deps->@*, $refkey unless $section->bibentry($refkey); if ($logger->is_debug()) {# performance tune $logger->debug("$bee entry '$citekey' has xref '$refkey'"); } push $keyswithdeps->@*, $citekey unless first {$citekey eq $_} $keyswithdeps->@*; } # crossrefs if (my $refkey = $be->get_field('crossref')) { # skip looking for dependent if it's already there (loop suppression) push $new_deps->@*, $refkey unless $section->bibentry($refkey); if ($logger->is_debug()) {# performance tune $logger->debug("Entry '$citekey' has crossref '$refkey'"); } push $keyswithdeps->@*, $citekey unless first {$citekey eq $_} $keyswithdeps->@*; } # static sets if ($be->get_field('entrytype') eq 'set') { my $smems = $be->get_field('entryset'); # skip looking for dependent if it's already there (loop suppression) foreach my $sm ($smems->@*) { unless ($section->has_citekey($sm)) { push $new_deps->@*, $sm; push $keyswithdeps->@*, $citekey unless first {$citekey eq $_} $keyswithdeps->@*; } } if ($logger->is_debug()) {# performance tune $logger->debug("Static set entry '$citekey' has members: " . join(', ', $smems->@*)); } } # Related entries if (my $relkeys = $be->get_field('related')) { # skip looking for dependent if it's already there (loop suppression) foreach my $rm ($relkeys->@*) { unless ($section->has_citekey($rm) or $section->is_related($rm)) { # record that $rm is used as a related entry key $section->add_related($rm); push $new_deps->@*, $rm; push $keyswithdeps->@*, $citekey unless first {$citekey eq $_} $keyswithdeps->@*; } } if ($logger->is_debug()) {# performance tune $logger->debug("Entry '$citekey' has related entries: " . join(', ', $relkeys->@*)); } } } } # Remove repeated keys which are dependents of more than one entry $new_deps->@* = uniq $new_deps->@*; if ($new_deps->@*) { # Now look for the dependents of the directly cited keys if ($logger->is_debug()) {# performance tune $logger->debug('Looking for dependent keys: ' . join(', ', $new_deps->@*)); } # No need to go back to the datasource if allkeys, just see if the keys # are in section if ($section->is_allkeys) { foreach my $dk ($new_deps->@*) { push $missing->@*, $dk unless $section->has_citekey($dk); } } else { $missing->@* = $new_deps->@*; foreach my $datasource ($section->get_datasources->@*) { # shortcut if we have found all the keys now last unless $missing->@*; my $type = $datasource->{type}; my $name = $datasource->{name}; my $encoding = $datasource->{encoding}; my $datatype = $datasource->{datatype}; my $package = 'Biber::Input::' . $type . '::' . $datatype; eval "require $package" or biber_error("Error loading data source package '$package': $@"); $missing->@* = "${package}::extract_entries"->(locate_data_file($name), $encoding, $missing); } } if ($logger->is_debug()) {# performance tune $logger->debug("Dependent keys not found for section '$secnum': " . join(', ', $missing->@*)); } foreach my $missing_key ($missing->@*) { # Remove the missing key from the list to recurse with $new_deps->@* = grep { $_ ne $missing_key } $new_deps->@*; } } # recurse if there are more things to find if ($logger->is_trace()) {# performance tune $logger->trace('Recursing in get_dependents with: ' . join(', ', $new_deps->@*)); } get_dependents($self, $new_deps, $keyswithdeps) if $new_deps->@*; # Now remove any missing entries from various places in all entries we have flagged # as having dependendents. If we don't do this, many things fail later like clone creation # for related entries etc. foreach my $keywithdeps ($keyswithdeps->@*) { foreach my $missing_key ($missing->@*) { $self->remove_undef_dependent($keywithdeps, $missing_key); } } return; # bottom of recursion } =head2 remove_undef_dependent Remove undefined dependent keys from an entry using a map of dependent keys to entries =cut sub remove_undef_dependent { my $self = shift; my ($citekey, $missing_key) = @_; my $secnum = $self->get_current_section; my $section = $self->sections->get_section($secnum); if ($logger->is_debug()) {# performance tune $logger->debug("Removing dependency on missing key '$missing_key' from '$citekey' in section '$secnum'"); } # remove from any dynamic keys if (my @dmems = $section->get_dynamic_set($citekey)){ if (first {$missing_key eq $_} @dmems) { $section->set_dynamic_set($citekey, grep {$_ ne $missing_key} @dmems); if ($logger->is_trace()) {# performance tune $logger->trace("Removed dynamic set dependency for missing key '$missing_key' from '$citekey' in section '$secnum'"); } biber_warn("I didn't find a database entry for dynamic set member '$missing_key' - ignoring (section $secnum)"); } } else { my $be = $section->bibentry($citekey); # remove any xrefs if ($be->get_field('xref') and ($be->get_field('xref') eq $missing_key)) { biber_warn("I didn't find a database entry for xref '$missing_key' in entry '$citekey' - ignoring (section $secnum)"); if ($logger->is_trace()) { # performance tune $logger->trace("Removed xref dependency for missing key '$missing_key' from '$citekey' in section '$secnum'"); } if (not Biber::Config->getoption('tool_noremove_missing_dependants')) { $be->del_field('xref'); } } # remove any crossrefs if ($be->get_field('crossref') and ($be->get_field('crossref') eq $missing_key)) { biber_warn("I didn't find a database entry for crossref '$missing_key' in entry '$citekey' - ignoring (section $secnum)"); if ($logger->is_trace()) { # performance tune $logger->trace("Removed crossref dependency for missing key '$missing_key' from '$citekey' in section '$secnum'"); } if (not Biber::Config->getoption('tool_noremove_missing_dependants')) { $be->del_field('crossref'); } } # remove xdata if (my $xdata = $be->get_field('xdata')) { if (first {$missing_key eq $_} $xdata->@*) { biber_warn("I didn't find a database entry for xdata entry '$missing_key' in entry '$citekey' - ignoring (section $secnum)"); } if ($logger->is_trace()) { # performance tune $logger->trace("Removed xdata dependency for missing key '$missing_key' from '$citekey' in section '$secnum'"); } if (not Biber::Config->getoption('tool_noremove_missing_dependants')) { $be->set_datafield('xdata', [ grep {$_ ne $missing_key} $xdata->@* ]); } } # remove static sets if ($be->get_field('entrytype') eq 'set') { my $smems = $be->get_field('entryset'); if (first {$missing_key eq $_} $smems->@*) { $be->set_datafield('entryset', [ grep {$_ ne $missing_key} $smems->@* ]); if ($logger->is_trace()) {# performance tune $logger->trace("Removed static set dependency for missing key '$missing_key' from '$citekey' in section '$secnum'"); } biber_warn("I didn't find a database entry for static set member '$missing_key' in entry '$citekey' - ignoring (section $secnum)"); } } # remove related entries if (my $relkeys = $be->get_field('related')) { if (first {$missing_key eq $_} $relkeys->@*) { $be->set_datafield('related', [ grep {$_ ne $missing_key} $relkeys->@* ]); # If no more related entries, remove the other related fields unless ($be->get_field('related')) { $be->del_field('relatedtype'); $be->del_field('relatedstring'); if ($logger->is_trace()) {# performance tune $logger->trace("Removed related entry dependency for missing key '$missing_key' from '$citekey' in section '$secnum'"); } } biber_warn("I didn't find a database entry for related entry '$missing_key' in entry '$citekey' - ignoring (section $secnum)"); } } } return; } =head2 _parse_sort Convenience sub to parse a .bcf sorting section and return nice sorting object =cut sub _parse_sort { my $root_obj = shift; my $sorting; foreach my $sort (sort {$a->{order} <=> $b->{order}} $root_obj->{sort}->@*) { my $sortingitems; # Generate sorting pass structures foreach my $sortitem (sort {$a->{order} <=> $b->{order}} $sort->{sortitem}->@*) { my $sortitemattributes = {}; if (defined($sortitem->{substring_side})) { # Found sorting substring side attribute $sortitemattributes->{substring_side} = $sortitem->{substring_side}; } if (defined($sortitem->{substring_width})) { # Found sorting substring length attribute $sortitemattributes->{substring_width} = $sortitem->{substring_width}; } if (defined($sortitem->{pad_width})) { # Found sorting pad length attribute $sortitemattributes->{pad_width} = $sortitem->{pad_width}; } if (defined($sortitem->{pad_char})) { # Found sorting pad char attribute $sortitemattributes->{pad_char} = $sortitem->{pad_char}; } if (defined($sortitem->{pad_side})) { # Found sorting pad side attribute $sortitemattributes->{pad_side} = $sortitem->{pad_side}; } if (defined($sortitem->{literal})) { # Found literal attribute $sortitemattributes->{literal} = $sortitem->{literal}; } push $sortingitems->@*, {$sortitem->{content} => $sortitemattributes}; } # Only push a sortitem if defined. # Also, we only push the sort attributes if there are any sortitems otherwise # we end up with a blank sort my $sopts; $sopts->{final} = $sort->{final} if defined($sort->{final}); $sopts->{sort_direction} = $sort->{sort_direction} if defined($sort->{sort_direction}); $sopts->{sortcase} = $sort->{sortcase} if defined($sort->{sortcase}); $sopts->{sortupper} = $sort->{sortupper} if defined($sort->{sortupper}); $sopts->{locale} = $sort->{locale} if defined($sort->{locale}); if (defined($sortingitems)) { unshift $sortingitems->@*, $sopts; push $sorting->@*, $sortingitems; } } return {locale => locale2bcp47($root_obj->{locale} || Biber::Config->getblxoption(undef, 'sortlocale')), spec => $sorting}; } =head2 _filedump and _stringdump Dump the biber object with Data::Dump for debugging =cut sub _filedump { my ($self, $file) = @_; my $fh = IO::File->new($file, '>') or croak "Can't open file $file for writing"; print $fh Data::Dump::pp($self); close $fh; return } sub _stringdump { my $self = shift ; return Data::Dump::pp($self); } 1; __END__ =head1 AUTHORS Philip Kime C<< >> =head1 BUGS Please report any bugs or feature requests on our Github tracker at L. =head1 COPYRIGHT & LICENSE Copyright 2009-2012 François Charette and Philip Kime, all rights reserved. Copyright 2012-2023 Philip Kime, all rights reserved. This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. =cut biber-2.19/lib/Biber/000077500000000000000000000000001440117422400143205ustar00rootroot00000000000000biber-2.19/lib/Biber/Annotation.pm000066400000000000000000000135071440117422400167760ustar00rootroot00000000000000package Biber::Annotation; use v5.24; use strict; use warnings; use Biber::Config; use Biber::Constants; use Data::Dump; use Biber::Utils; use Log::Log4perl qw( :no_extra_logdie_message ); use List::Util qw( first ); use Storable qw(dclone); no autovivification; my $logger = Log::Log4perl::get_logger('main'); # Static class data my $ANN = {}; =encoding utf-8 =head1 NAME Biber::Entry::Annotation - Biber::Annotation objects =head2 set_annotation Record an annotation for a scope and citekey =cut sub set_annotation { shift; # class method so don't care about class name my ($scope, $key, $field, $name, $value, $literal, $count, $part, ) = @_; if ($scope eq 'field') { $ANN->{field}{$key}{$field}{$name}{value} = $value; $ANN->{field}{$key}{$field}{$name}{literal} = $literal; # Record if this annotation is a literal } elsif ($scope eq 'item') { $ANN->{item}{$key}{$field}{$name}{$count}{value} = $value; $ANN->{item}{$key}{$field}{$name}{$count}{literal} = $literal; # Record if this annotation is a literal } elsif ($scope eq 'part') { $ANN->{part}{$key}{$field}{$name}{$count}{$part}{value} = $value; $ANN->{part}{$key}{$field}{$name}{$count}{$part}{literal} = $literal; # Record if this annotation is a literal } # For easy checking later whether or not a field is annotated $ANN->{fields}{$key}{$field} = 1; # Record all annotation names or a field unless (first {fc($_) eq fc($name)} $ANN->{names}{$key}{$field}->@*) { push $ANN->{names}{$key}{$field}->@*, $name; } return; } =head2 copy_annotations Copy all annotations from one entry to another =cut sub copy_annotations { shift; # class method so don't care about class name my ($sourcekey, $targetkey) = @_; $ANN->{field}{$targetkey} = dclone($ANN->{field}{$sourcekey}) if exists($ANN->{field}{$sourcekey}); $ANN->{item}{$targetkey} = dclone($ANN->{item}{$sourcekey}) if exists($ANN->{item}{$sourcekey}); $ANN->{part}{$targetkey} = dclone($ANN->{part}{$sourcekey}) if exists($ANN->{part}{$sourcekey}); $ANN->{names}{$targetkey} = dclone($ANN->{names}{$sourcekey}) if exists($ANN->{names}{$sourcekey}); return; } =head2 get_annotation_names Retrieve all annotation names for a citekey and field =cut sub get_annotation_names { shift; # class method so don't care about class name my ($key, $field) = @_; return $ANN->{names}{$key}{$field}->@*; } =head2 get_annotations Retrieve all annotations for a scope and citekey =cut sub get_annotations { shift; # class method so don't care about class name my ($scope, $key, $field) = @_; return sort keys $ANN->{$scope}{$key}{$field}->%*; } =head2 get_annotation Retrieve an specific annotation for a scope, citekey and name =cut sub get_annotation { shift; # class method so don't care about class name my ($scope, $key, $field, $name, $count, $part) = @_; $name = $name || 'default'; if ($scope eq 'field') { return $ANN->{field}{$key}{$field}{$name}{value}; } elsif ($scope eq 'item') { return $ANN->{item}{$key}{$field}{$name}{$count}{value}; } elsif ($scope eq 'part') { return $ANN->{part}{$key}{$field}{$name}{$count}{$part}{value}; } return undef; } =head2 is_literal_annotation Check if an annotation is a literal annotation =cut sub is_literal_annotation { shift; # class method so don't care about class name my ($scope, $key, $field, $name, $count, $part) = @_; $name = $name || 'default'; if ($scope eq 'field') { return $ANN->{field}{$key}{$field}{$name}{literal}; } elsif ($scope eq 'item') { return $ANN->{item}{$key}{$field}{$name}{$count}{literal}; } elsif ($scope eq 'part') { return $ANN->{part}{$key}{$field}{$name}{$count}{$part}{literal}; } return undef; } =head2 is_annotated_field Returns boolean to say if a field is annotated =cut sub is_annotated_field { shift; # class method so don't care about class name my ($key, $field) = @_; return $ANN->{fields}{$key}{$field}; } =head2 get_field_annotation Retrieve 'field' scope annotation for a field. There will only be one. =cut sub get_field_annotation { shift; # class method so don't care about class name my ($key, $field, $name) = @_; $name = $name || 'default'; return $ANN->{field}{$key}{$field}{$name}{value}; } =head2 get_annotated_fields Retrieve all annotated fields for a particular scope for a key =cut sub get_annotated_fields { shift; # class method so don't care about class name my ($scope, $key) = @_; return sort keys $ANN->{$scope}{$key}->%*; } =head2 get_annotated_items Retrieve the itemcounts for a particular scope, key, field and nam3 =cut sub get_annotated_items { shift; # class method so don't care about class name my ($scope, $key, $field, $name) = @_; $name = $name || 'default'; return sort keys $ANN->{$scope}{$key}{$field}{$name}->%*; } =head2 get_annotated_parts Retrieve the parts for a particular scope, key, field, name and itemcount =cut sub get_annotated_parts { shift; # class method so don't care about class name my ($scope, $key, $field, $name, $count) = @_; $name = $name || 'default'; return sort keys $ANN->{$scope}{$key}{$field}{$name}{$count}->%*; } =head2 dump Dump config information (for debugging) =cut sub dump { shift; # class method so don't care about class name dd($ANN); } 1; __END__ =head1 AUTHORS Philip Kime C<< >> =head1 BUGS Please report any bugs or feature requests on our Github tracker at L. =head1 COPYRIGHT & LICENSE Copyright 2012-2023 Philip Kime, all rights reserved. This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. =cut biber-2.19/lib/Biber/Config.pm000066400000000000000000001160361440117422400160720ustar00rootroot00000000000000package Biber::Config; use v5.24; use Biber::Constants; use Biber::Utils; use IPC::Cmd qw( can_run ); use IPC::Run3; # This works with PAR::Packer and Windows. IPC::Run doesn't use Cwd qw( abs_path ); use Data::Compare; use Data::Dump; use Encode; use File::Slurper; use File::Spec; use Carp; use List::AllUtils qw(first max); use Log::Log4perl qw( :no_extra_logdie_message ); # To keep PAR::Packer happy, explicitly load these use Log::Log4perl::Appender::Screen; use Log::Log4perl::Appender::File; use Log::Log4perl::Layout::SimpleLayout; use Log::Log4perl::Layout::PatternLayout; use Unicode::Normalize; use parent qw(Class::Accessor); __PACKAGE__->follow_best_practice; our $VERSION = '2.19'; our $BETA_VERSION = 0; # Is this a beta version? our $logger = Log::Log4perl::get_logger('main'); our $screen = Log::Log4perl::get_logger('screen'); our $logfile = Log::Log4perl::get_logger('logfile'); =encoding utf-8 =head1 NAME Biber::Config - Configuration items which need to be saved across the lifetime of a Biber object This class contains a static object and static methods to access configuration and state data. There are several classes of data in here which have separate accessors: * Biber options * Biblatex options * State information used by Biber as it processes entries * displaymode date =cut # Static (class) data our $CONFIG; # Uniqueness ignore information from inheritance data $CONFIG->{state}{uniqignore} = {}; $CONFIG->{state}{crossrefkeys} = {}; $CONFIG->{state}{xrefkeys} = {}; # Citekeys which refer to the same entry $CONFIG->{state}{citkey_aliases} = {}; # Record of which entries have inherited from other fields. Used for loop detection. $CONFIG->{state}{crossref} = []; $CONFIG->{state}{xdata} = []; # Record of which entries have inherited what from whom, with the fields inherited. # Used for generating inheritance trees $CONFIG->{state}{graph} = {}; # Track the order of keys as cited. Keys cited in the same \cite*{} get the same order # Used for sorting schemes which use \citeorder $CONFIG->{state}{keyorder} = {}; $CONFIG->{state}{internalkeyorder} = {}; # Location of the control file $CONFIG->{state}{control_file_location} = ''; # Data files per section being used by biber $CONFIG->{state}{datafiles} = []; =head2 _init Reset internal hashes to defaults. =cut sub _init { $CONFIG->{state}{uniqignore} = {}; $CONFIG->{state}{control_file_location} = ''; $CONFIG->{state}{crossrefkeys} = {}; $CONFIG->{state}{xrefkeys} = {}; $CONFIG->{state}{datafiles} = []; $CONFIG->{state}{crossref} = []; $CONFIG->{state}{xdata} = []; return; } =head2 _initopts Initialise default options, optionally with config file as argument =cut sub _initopts { shift; # class method so don't care about class name my $opts = shift; my $userconf; # For testing, need to be able to force ignore of conf file in case user # already has one which interferes with test settings. unless (defined($opts->{noconf})) { # if a config file was given as cmd-line arg, it overrides all other # config file locations unless ( defined($opts->{configfile}) and -f $opts->{configfile} ) { $opts->{configfile} = config_file(); } } # Set hard-coded biber option defaults while (my ($k, $v) = each $CONFIG_DEFAULT_BIBER->%*) { if (exists($v->{content})) { # simple option Biber::Config->setoption($k, $v->{content}); } # mildly complex options elsif (lc($k) eq 'dot_include' or lc($k) eq 'collate_options' or lc($k) eq 'nosort' or lc($k) eq 'nolabel' or lc($k) eq 'nolabelwidthcount' or lc($k) eq 'noinit' ) { Biber::Config->setoption($k, $v->{option}); } } # There is a special default config file for tool mode # Referring to as yet unprocessed cmd-line tool option as it isn't processed until below if ($opts->{tool}) { if (my $bc = $opts->{configtool}) { # Only used in tests to use source-tree biber-tool.conf _config_file_set($bc); } else { (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Biber/Config.pm"} ); $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/' _config_file_set(File::Spec->catpath($vol, "$dir", 'biber-tool.conf')); } } # Normal user config file - overrides tool mode defaults _config_file_set($opts->{configfile}); # Set hard-coded biblatex option defaults # This has to go after _config_file_set() as this is what defines option scope # in tool mode (from the .conf file) foreach (keys %CONFIG_DEFAULT_BIBLATEX) { Biber::Config->setblxoption(0, $_, $CONFIG_DEFAULT_BIBLATEX{$_}); } # Command-line overrides everything else foreach my $copt (keys $opts->%*) { # This is a tricky option as we need to keep non-overriden defaults # If we don't we can get errors when contructing the sorting call to eval() later if (lc($copt) eq 'collate_options') { my $collopts = Biber::Config->getoption('collate_options'); my $copt_h = eval "{ $opts->{$copt} }" or croak('Bad command-line collation options'); # Override defaults with any cmdline settings foreach my $co (keys $copt_h->%*) { $collopts->{$co} = $copt_h->{$co}; } Biber::Config->setconfigfileoption('collate_options', $collopts); } else { Biber::Config->setcmdlineoption($copt, $opts->{$copt}); } } # Record the $ARGV[0] name for future use if (Biber::Config->getoption('tool')) { # Set datasource file name. In a conditional as @ARGV might not be set in tests if (my $dsn = $ARGV[0]) { # ARGV is ok even in a module Biber::Config->setoption('dsn', $dsn); } } else { # Set control file name. In a conditional as @ARGV might not be set in tests if (defined($ARGV[0])) { # ARGV is ok even in a module my $bcf = $ARGV[0]; $bcf .= '.bcf' unless $bcf =~ m/\.bcf$/; Biber::Config->setoption('bcf', $bcf); } } # Set log file name my $biberlog; if (my $log = Biber::Config->getoption('logfile')) { # user specified logfile name # Sanitise user-specified log name $log =~ s/\.blg\z//xms; $biberlog = $log . '.blg'; } elsif (not @ARGV) { # default if no .bcf file specified - mainly in tests Biber::Config->setoption('nolog', 1); } else { # set log to \jobname.blg my $bcf = $ARGV[0]; # ARGV is ok even in a module # Sanitise control file name $bcf =~ s/\.bcf\z//xms; $biberlog = $bcf . '.blg'; } # prepend output directory for log, if specified if (my $outdir = Biber::Config->getoption('output_directory')) { my (undef, undef, $biberlogfile) = File::Spec->splitpath($biberlog); $biberlog = File::Spec->catfile($outdir, $biberlogfile); } # Parse output-field-replace into something easier to use if (my $ofrs = Biber::Config->getoption('output_field_replace')) { foreach my $ofr (split(/\s*,\s*/, $ofrs)) { my ($f, $fr) = $ofr =~ m/^([^:]+):([^:]+)$/; $CONFIG_OUTPUT_FIELDREPLACE{$f} = $fr; } } # cache meta markers since they are referenced in the oft-called _get_handler $CONFIG_META_MARKERS{annotation} = quotemeta(Biber::Config->getoption('annotation_marker')); $CONFIG_META_MARKERS{namedannotation} = quotemeta(Biber::Config->getoption('named_annotation_marker')); # Setting up Log::Log4perl my $LOGLEVEL; if (Biber::Config->getoption('trace')) { $LOGLEVEL = 'TRACE' } elsif (Biber::Config->getoption('debug')) { $LOGLEVEL = 'DEBUG' } elsif (Biber::Config->getoption('quiet') == 1) { $LOGLEVEL = 'ERROR' } elsif (Biber::Config->getoption('quiet') > 1) { $LOGLEVEL = 'FATAL' } else { $LOGLEVEL = 'INFO' } my $LOGLEVEL_F; my $LOG_MAIN; if (Biber::Config->getoption('nolog')) { $LOG_MAIN = 'Screen'; $LOGLEVEL_F = 'OFF' } else { $LOG_MAIN = 'Logfile, Screen'; $LOGLEVEL_F = $LOGLEVEL } my $LOGLEVEL_S; if (Biber::Config->getoption('onlylog')) { $LOGLEVEL_S = 'OFF' } else { # Max screen loglevel is INFO if (Biber::Config->getoption('quiet') == 1) { $LOGLEVEL_S = 'ERROR'; } elsif (Biber::Config->getoption('quiet') > 1) { $LOGLEVEL_S = 'FATAL' } else { $LOGLEVEL_S = 'INFO'; } } # configuration "file" for Log::Log4perl my $l4pconf = qq| log4perl.category.main = $LOGLEVEL, $LOG_MAIN log4perl.category.screen = $LOGLEVEL_S, Screen log4perl.appender.Screen = Log::Log4perl::Appender::Screen log4perl.appender.Screen.utf8 = 1 log4perl.appender.Screen.Threshold = $LOGLEVEL_S log4perl.appender.Screen.stderr = 0 log4perl.appender.Screen.layout = Log::Log4perl::Layout::SimpleLayout |; # Only want a logfile appender if --nolog isn't set if ($LOGLEVEL_F ne 'OFF') { $l4pconf .= qq| log4perl.category.logfile = $LOGLEVEL_F, Logfile log4perl.appender.Logfile = Log::Log4perl::Appender::File log4perl.appender.Logfile.utf8 = 1 log4perl.appender.Logfile.Threshold = $LOGLEVEL_F log4perl.appender.Logfile.filename = $biberlog log4perl.appender.Logfile.mode = clobber log4perl.appender.Logfile.layout = Log::Log4perl::Layout::PatternLayout log4perl.appender.Logfile.layout.ConversionPattern = [%r] %F{1}:%L> %p - %m%n |; } Log::Log4perl->init(\$l4pconf); my $vn = $VERSION; $vn .= ' (beta)' if $BETA_VERSION; my $tool = Biber::Config->getoption('tool') ? ' running in TOOL mode' : ''; $logger->info("This is Biber $vn$tool") unless Biber::Config->getoption('nolog'); $logger->info("Config file is '" . $opts->{configfile} . "'") if $opts->{configfile}; $logger->info("Logfile is '$biberlog'") unless Biber::Config->getoption('nolog'); if (Biber::Config->getoption('debug')) { $screen->info("DEBUG mode: all messages are logged to '$biberlog'") } return; } # read a config file and set options from it sub _config_file_set { my $conf = shift; my $userconf; # Can't use logcroak here because logging isn't initialised yet if (defined($conf)) { require XML::LibXML::Simple; my $buf = NFD(Biber::Utils::slurp_switchr($conf)->$*);# Unicode NFD boundary $userconf = XML::LibXML::Simple::XMLin($buf, 'ForceContent' => 1, 'ForceArray' => [ qr/\Aoption\z/, qr/\Amaps\z/, qr/\Amap\z/, qr/\Amap_step\z/, qr/\Aper_type\z/, qr/\Aper_nottype\z/, qr/\Aper_datasource\z/, qr/\Atype_pair\z/, qr/\Ainherit\z/, qr/\Afieldor\z/, qr/\Afieldxor\z/, qr/\Afield\z/, qr/\Aalias\z/, qr/\Akeypart\z/, qr/\Apart\z/, qr/\Amember\z/, qr/\Anoinit\z/, qr/\Anolabel\z/, qr/\Aalsoset\z/, qr/\Aconstraints\z/, qr/\Aconstraint\z/, qr/\Aentrytype\z/, qr/\Aentryfields\z/, qr/\Adatetype\z/, qr/\Acondition\z/, qr/\A(?:or)?filter\z/, qr/\Asortexclusion\z/, qr/\Aexclusion\z/, qr/\Asortingtemplate\z/, qr/\Aconstant\z/, qr/\Asort\z/, qr/\Alabelalpha(?:name)?template\z/, qr/\Asortitem\z/, qr/\Auniquenametemplate\z/, qr/\Apresort\z/, qr/\Aoptionscope\z/, qr/\Asortingnamekeytemplate\z/, ], 'NsStrip' => 1, 'KeyAttr' => []) or croak("Failed to read biber config file '$conf'\n $@"); } # Option scope has to be set first foreach my $bcfscopeopts ($userconf->{optionscope}->@*) { my $scope = $bcfscopeopts->{type}; foreach my $bcfscopeopt ($bcfscopeopts->{option}->@*) { my $opt = $bcfscopeopt->{content}; $CONFIG_BIBLATEX_OPTIONS{$scope}{$opt}{OUTPUT} = $bcfscopeopt->{backendout} || 0; if (my $bin = Biber::Utils::process_backendin($bcfscopeopt->{backendin})) { $CONFIG_BIBLATEX_OPTIONS{$scope}{$opt}{INPUT} = $bin; } $CONFIG_OPTSCOPE_BIBLATEX{$opt}{$scope} = 1; $CONFIG_SCOPEOPT_BIBLATEX{$scope}{$opt} = 1; } } # Now we have the per-namelist options, make the accessors for them in the Names package foreach my $nso (keys $CONFIG_SCOPEOPT_BIBLATEX{NAMELIST}->%*) { Biber::Entry::Names->follow_best_practice; Biber::Entry::Names->mk_accessors($nso); } # Now we have the per-name options, make the accessors for them in the Name package foreach my $no (keys $CONFIG_SCOPEOPT_BIBLATEX{NAME}->%*) { Biber::Entry::Name->follow_best_practice; Biber::Entry::Name->mk_accessors($no); } delete $userconf->{optionscope}; # DATAFIELD SETS # Since we have to use the datamodel to resolve some members, just record the settings # here for processing after the datamodel is parsed foreach my $s ($userconf->{datafieldset}->@*) { my $name = $s->{name}; foreach my $m ($s->{member}->@*) { if (my $field = $m->{field}[0]) {# 'field' has forcearray for other things push $DATAFIELD_SETS{$name}->@*, $field; } else { push $DATAFIELD_SETS{$name}->@*, {fieldtype => $m->{fieldtype}, datatype => $m->{datatype}}; } } } delete $userconf->{datafieldset}; # Set options from config file while (my ($k, $v) = each $userconf->%*) { # Has to be an array ref and so must come before # the later options tests which assume hash refs if (lc($k) eq 'labelalphatemplate') { foreach my $t ($v->@*) { my $latype = $t->{type}; if ($latype eq 'global') { Biber::Config->setblxoption(0, 'labelalphatemplate', $t); } else { Biber::Config->setblxoption(0, 'labelalphatemplate', $t, 'ENTRYTYPE', $latype); } } } elsif (lc($k) eq 'labelalphanametemplate') { foreach my $t ($v->@*) { my $lants; my $lant; foreach my $np (sort {$a->{order} <=> $b->{order}} $t->{namepart}->@*) { push $lant->@*, {namepart => $np->{content}, use => $np->{use}, pre => $np->{pre}, substring_compound => $np->{substring_compound}, substring_side => $np->{substring_side}, substring_width => $np->{substring_width} }; } $lants->{$t->{name}} = $lant; Biber::Config->setblxoption(0, 'labelalphanametemplate', $lants); } } elsif (lc($k) eq 'uniquenametemplate') { my $unts; foreach my $unt ($v->@*) { my $untval = []; foreach my $np (sort {$a->{order} <=> $b->{order}} $unt->{namepart}->@*) { push $untval->@*, {namepart => $np->{content}, use => $np->{use}, disambiguation => $np->{disambiguation}, base => $np->{base}}; } $unts->{$unt->{name}} = $untval; } Biber::Config->setblxoption(0, 'uniquenametemplate', $unts); } elsif (lc($k) eq 'sortingnamekeytemplate') { my $snss; foreach my $sns ($v->@*) { my $snkps; foreach my $snkp (sort {$a->{order} <=> $b->{order}} $sns->{keypart}->@*) { my $snps; foreach my $snp (sort {$a->{order} <=> $b->{order}} $snkp->{part}->@*) { my $np; if ($snp->{type} eq 'namepart') { $np = { type => 'namepart', value => $snp->{content} }; if (exists($snp->{use})) { $np->{use} = $snp->{use}; } if (exists($snp->{inits})) { $np->{inits} = $snp->{inits}; } } elsif ($snp->{type} eq 'literal') { $np = { type => 'literal', value => $snp->{content} }; } push $snps->@*, $np; } push $snkps->@*, $snps; } $snss->{$sns->{name}}{visibility} = $sns->{visibility}; $snss->{$sns->{name}}{template} = $snkps; } Biber::Config->setblxoption(0, 'sortingnamekeytemplate', $snss); } elsif (lc($k) eq 'transliteration') { foreach my $tr ($v->@*) { if ($tr->{entrytype}[0] eq '*') { # already array forced for another option Biber::Config->setblxoption(0, 'translit', $tr->{translit}); } else { # per_entrytype Biber::Config->setblxoption(0, 'translit', $tr->{translit}, 'ENTRYTYPE', $tr->{entrytype}[0]); } } } # mildly complex options - nosort/collate_options elsif (lc($k) eq 'nosort' or lc($k) eq 'noinit' or lc($k) eq 'nolabel' ) { Biber::Config->setconfigfileoption($k, $v->{option}); } # rather complex options elsif (lc($k) eq 'collate_options') { my $collopts = Biber::Config->getoption('collate_options'); # Override defaults with any user settings foreach my $co ($v->{option}->@*) { $collopts->{$co->{name}} = $co->{value}; } Biber::Config->setconfigfileoption($k, $collopts); } elsif (lc($k) eq 'sourcemap') { my $sms; foreach my $sm ($v->{maps}->@*) { if (defined($sm->{level}) and $sm->{level} eq 'driver') { carp("You can't set driver level sourcemaps via biber - use \\DeclareDriverSourcemap in biblatex. Ignoring map."); } elsif (defined($sm->{level}) and $sm->{level} eq 'style') { carp("You can't set style level sourcemaps via biber - use \\DeclareStyleSourcemap in biblatex. Ignoring map."); } else { push $sms->@*, $sm; } } Biber::Config->setconfigfileoption($k, $sms); } elsif (lc($k) eq 'inheritance') {# This is a biblatex option Biber::Config->setblxoption(0, $k, $v); } elsif (lc($k) eq 'sortexclusion') {# This is a biblatex option foreach my $sex ($v->@*) { my $excludes; foreach my $ex ($sex->{exclusion}->@*) { $excludes->{$ex->{content}} = 1; } Biber::Config->setblxoption(0, 'sortexclusion', $excludes, 'ENTRYTYPE', $sex->{type}); } } elsif (lc($k) eq 'sortinclusion') {# This is a biblatex option foreach my $sin ($v->@*) { my $includes; foreach my $in ($sin->{inclusion}->@*) { $includes->{$in->{content}} = 1; } Biber::Config->setblxoption(0, 'sortinclusion', $includes, 'ENTRYTYPE', $sin->{type}); } } elsif (lc($k) eq 'presort') {# This is a biblatex option # presort defaults foreach my $presort ($v->@*) { # Global presort default unless (exists($presort->{type})) { Biber::Config->setblxoption(0, 'presort', $presort->{content}); } # Per-type default else { Biber::Config->setblxoption(0, 'presort', $presort->{content}, 'ENTRYTYPE', $presort->{type}); } } } elsif (lc($k) eq 'sortingtemplate') {# This is a biblatex option my $sorttemplates; foreach my $ss ($v->@*) { $sorttemplates->{$ss->{name}} = Biber::_parse_sort($ss); } Biber::Config->setblxoption(0, 'sortingtemplate', $sorttemplates); } elsif (lc($k) eq 'datamodel') {# This is a biblatex option Biber::Config->addtoblxoption(0, 'datamodel', $v); } elsif (exists($v->{content})) { # simple option Biber::Config->setconfigfileoption($k, $v->{content}); } } } =head2 config_file Returns the full path of the B configuration file. It returns the first file found among: =over 4 =item * C or C<.biber.conf> in the current directory =item * C<$HOME/.biber.conf> =item * C<$ENV{XDG_CONFIG_HOME}/biber/biber.conf> =item * C<$HOME/.config/biber/biber.conf> =item * C<$HOME/Library/biber/biber.conf> (Mac OSX only) =item * C<$ENV{APPDATA}/biber.conf> (Windows only) =item * the output of C (if available on the system). =back If no file is found, it returns C. =cut sub config_file { my $biberconf; if ( -f $BIBER_CONF_NAME ) { $biberconf = abs_path($BIBER_CONF_NAME); } elsif ( -f ".$BIBER_CONF_NAME" ) { $biberconf = abs_path(".$BIBER_CONF_NAME"); } elsif ( -f File::Spec->catfile($ENV{HOME}, ".$BIBER_CONF_NAME" ) ) { $biberconf = File::Spec->catfile($ENV{HOME}, ".$BIBER_CONF_NAME" ); } elsif ( defined $ENV{XDG_CONFIG_HOME} and -f File::Spec->catfile($ENV{XDG_CONFIG_HOME}, "biber", $BIBER_CONF_NAME) ) { $biberconf = File::Spec->catfile($ENV{XDG_CONFIG_HOME}, "biber", $BIBER_CONF_NAME); } # See https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html elsif ( -f File::Spec->catfile($ENV{HOME}, ".config", "biber", $BIBER_CONF_NAME) ) { $biberconf = File::Spec->catfile($ENV{HOME}, ".config", "biber", $BIBER_CONF_NAME); } elsif ( $^O =~ /(?:Mac|darwin)/ and -f File::Spec->catfile($ENV{HOME}, "Library", "biber", $BIBER_CONF_NAME) ) { $biberconf = File::Spec->catfile($ENV{HOME}, "Library", "biber", $BIBER_CONF_NAME); } elsif ( $^O =~ /Win/ and defined $ENV{APPDATA} and -f File::Spec->catfile($ENV{APPDATA}, "biber", $BIBER_CONF_NAME) ) { $biberconf = File::Spec->catfile($ENV{APPDATA}, "biber", $BIBER_CONF_NAME); } elsif ( can_run('kpsewhich') ) { my $err; run3 [ 'kpsewhich', $BIBER_CONF_NAME ], \undef, \$biberconf, \$err, { return_if_system_error => 1}; if ($? == -1) { biber_error("Error running kpsewhich to look for config file: $err"); } chomp $biberconf; $biberconf =~ s/\cM\z//xms; # kpsewhich in cygwin sometimes returns ^M at the end $biberconf = undef unless $biberconf; # sanitise just in case it's an empty string } else { $biberconf = undef; } return $biberconf; } ############################## # Biber options static methods ############################## =head2 add_uniq_ignore Track uniqueness ignore settings found in inheritance data =cut sub add_uniq_ignore { shift; # class method so don't care about class name my ($key, $field, $uniqs) = @_; return unless $uniqs; foreach my $u (split(/\s*,\s*/, $uniqs)) { push $CONFIG->{state}{uniqignore}{$key}{$u}->@*, $field; } return; } =head2 get_uniq_ignore Retrieve uniqueness ignore settings found in inheritance data =cut sub get_uniq_ignore { no autovivification; shift; # class method so don't care about class name my $key = shift; return $CONFIG->{state}{uniqignore}{$key}; } =head2 postprocess_biber_opts Place to postprocess biber options when they have been gathered from all the possible places that set them =cut sub postprocess_biber_opts { shift; # class method so don't care about class name # Turn sortcase and sortupper into booleans if they are not already # They are not booleans on the command-line/config file so that they # mirror biblatex option syntax for users, for example foreach my $opt ('sortcase', 'sortupper') { if (exists($CONFIG->{options}{biber}{$opt})) { if ($CONFIG->{options}{biber}{$opt} eq 'true') { $CONFIG->{options}{biber}{$opt} = 1; } elsif ($CONFIG->{options}{biber}{$opt} eq 'false') { $CONFIG->{options}{biber}{$opt} = 0; } unless ($CONFIG->{options}{biber}{$opt} eq '1' or $CONFIG->{options}{biber}{$opt} eq '0') { Biber::Utils::biber_error("Invalid value for option '$opt'"); } } } } =head2 set_dm Sets the data model information object =cut sub set_dm { shift; my $obj = shift; $CONFIG->{dm} = $obj; return; } =head2 get_dm Gets the data model information object =cut sub get_dm { shift; return $CONFIG->{dm}; } =head2 get_dm_helpers Sets the datamodel helper lists =cut sub get_dm_helpers { shift; return $CONFIG->{dm}{helpers}; } =head2 set_ctrlfile_path Stores the path to the control file =cut sub set_ctrlfile_path { shift; $CONFIG->{control_file_location} = shift; return; } =head2 get_ctrlfile_path Retrieved the path to the control file =cut sub get_ctrlfile_path { shift; return $CONFIG->{control_file_location}; } =head2 setoption Store a Biber config option =cut sub setoption { shift; # class method so don't care about class name my ($opt, $val) = @_; $CONFIG->{options}{biber}{$opt} = $val; return; } =head2 getoption Get a Biber option =cut sub getoption { shift; # class method so don't care about class name my $opt = shift; return $CONFIG->{options}{biber}{$opt}; } =head2 setcmdlineoption Store a Biber command-line option =cut sub setcmdlineoption { shift; # class method so don't care about class name my ($opt, $val) = @_; # Command line options are also options ... $CONFIG->{options}{biber}{$opt} = $CONFIG->{cmdlineoptions}{$opt} = $val; return; } =head2 setconfigfileoption Store a Biber config-file option =cut sub setconfigfileoption { shift; # class method so don't care about class name my ($opt, $val) = @_; # Config file options are also options ... $CONFIG->{options}{biber}{$opt} = $CONFIG->{configfileoptions}{$opt} = $val; # Config file options can also be global biblatex options if ($CONFIG_OPTSCOPE_BIBLATEX{$opt}) { $CONFIG->{options}{biblatex}{GLOBAL}{$opt} = $val; } return; } =head2 iscmdlineoption Check if an option is explicitly set by user on the command line =cut sub iscmdlineoption { shift; # class method so don't care about class name my $opt = shift; return 1 if defined($CONFIG->{cmdlineoptions}{$opt}); return 0; } =head2 isconfigfileoption Check if an option is explicitly set by user in their config file =cut sub isconfigfileoption { shift; # class method so don't care about class name my $opt = shift; return 1 if defined($CONFIG->{configfileoptions}{$opt}); return 0; } =head2 isexplicitoption Check if an option is explicitly set by user on the command line or in the config file =cut sub isexplicitoption { my $self = shift; my $opt = shift; return 1 if ($self->iscmdlineoption($opt) || $self->isconfigfileoption($opt)); return 0; } ################################# # BibLaTeX options static methods ################################# =head2 addtoblxoption Add to an array global biblatex option =cut sub addtoblxoption { shift; # class method so don't care about class name my ($secnum, $opt, $val) = @_; if ($CONFIG_OPTSCOPE_BIBLATEX{$opt}{GLOBAL}) { push $CONFIG->{options}{biblatex}{GLOBAL}{$opt}->@*, $val; } return; } =head2 setblxoption Set a biblatex option on the appropriate scope =cut sub setblxoption { shift; # class method so don't care about class name my ($secnum, $opt, $val, $scope, $scopeval) = @_; # Map booleans to 1 and 0 for consistent testing $val = Biber::Utils::map_boolean($opt, $val, 'tonum'); if (not defined($scope)) { # global is the default if ($CONFIG_OPTSCOPE_BIBLATEX{$opt}{GLOBAL}) { $CONFIG->{options}{biblatex}{GLOBAL}{$opt} = $val; } } elsif ($scope eq 'ENTRY') { if ($CONFIG_OPTSCOPE_BIBLATEX{$opt}{$scope}) { $CONFIG->{options}{biblatex}{$scope}{$scopeval}{$secnum}{$opt} = $val; } } else { if ($CONFIG_OPTSCOPE_BIBLATEX{$opt}{$scope}) { $CONFIG->{options}{biblatex}{$scope}{$scopeval}{$opt} = $val; } } return; } =head2 getblxoption Get a biblatex option from the global, per-type or per entry scope getblxoption('secnum', 'option', ['entrytype'], ['citekey']) Returns the value of option. In order of decreasing preference, returns: 1. Biblatex option defined for entry 2. Biblatex option defined for entry type 3. Biblatex option defined globally section number needs to be present only for per-entry options as these might differ between sections =cut sub getblxoption { no autovivification; shift; # class method so don't care about class name my ($secnum, $opt, $entrytype, $citekey) = @_; # Set impossible defaults $secnum //= "\x{10FFFD}"; $opt //= "\x{10FFFD}"; $entrytype //= "\x{10FFFD}"; $citekey //= "\x{10FFFD}"; if ( defined($citekey) and $CONFIG_OPTSCOPE_BIBLATEX{$opt}{ENTRY} and defined $CONFIG->{options}{biblatex}{ENTRY}{$citekey}{$secnum}{$opt}) { return $CONFIG->{options}{biblatex}{ENTRY}{$citekey}{$secnum}{$opt}; } elsif (defined($entrytype) and $CONFIG_OPTSCOPE_BIBLATEX{$opt}{ENTRYTYPE} and defined $CONFIG->{options}{biblatex}{ENTRYTYPE}{lc($entrytype)}{$opt}) { return $CONFIG->{options}{biblatex}{ENTRYTYPE}{lc($entrytype)}{$opt}; } elsif ($CONFIG_OPTSCOPE_BIBLATEX{$opt}{GLOBAL}) { return $CONFIG->{options}{biblatex}{GLOBAL}{$opt}; } } =head2 getblxentryoptions Get all per-entry options for an entry =cut sub getblxentryoptions { no autovivification; shift; # class method so don't care about class name my ($secnum, $key) = @_; return keys $CONFIG->{options}{biblatex}{ENTRY}{$key}{$secnum}->%*; } ############################## # Inheritance state methods ############################## =head2 set_graph Record node and arc connection types for .dot output =cut sub set_graph { shift; # class method so don't care about class name my $type = shift; if ($type eq 'set') { my ($source_key, $target_key) = @_; if ($logger->is_debug()) {# performance tune $logger->debug("Saving DOT graph information type 'set' with SOURCEKEY=$source_key, TARGETKEY=$target_key"); } $CONFIG->{state}{graph}{$type}{settomem}{$source_key}{$target_key} = 1; $CONFIG->{state}{graph}{$type}{memtoset}{$target_key} = $source_key; } elsif ($type eq 'xref') { my ($source_key, $target_key) = @_; if ($logger->is_debug()) {# performance tune $logger->debug("Saving DOT graph information type 'xref' with SOURCEKEY=$source_key, TARGETKEY=$target_key"); } $CONFIG->{state}{graph}{$type}{$source_key} = $target_key; } elsif ($type eq 'related') { my ($clone_key, $related_key, $target_key) = @_; if ($logger->is_debug()) {# performance tune $logger->debug("Saving DOT graph information type 'related' with CLONEKEY=$clone_key, RELATEDKEY=$related_key, TARGETKEY=$target_key"); } $CONFIG->{state}{graph}{$type}{reltoclone}{$related_key}{$clone_key} = 1; $CONFIG->{state}{graph}{$type}{clonetotarget}{$clone_key}{$target_key} = 1; } else { my ($source_key, $target_key, $source_field, $target_field) = @_; if ($logger->is_debug()) {# performance tune $logger->debug("Saving DOT graph information type '$type' with SOURCEKEY=$source_key, TARGETKEY=$target_key, SOURCEFIELD=$source_field, TARGETFIELD=$target_field"); } # source can go to more than one target (and does in default rules) so need array here push $CONFIG->{state}{graph}{$type}{$source_key}{$source_field}{$target_key}->@*, $target_field; } return; } =head2 get_graph Return an inheritance graph data structure for an inheritance type =cut sub get_graph { shift; # class method so don't care about class name my $type = shift; return $CONFIG->{state}{graph}{$type}; } =head2 set_inheritance Record that $target inherited information from $source Can be used for crossrefs and xdata. This just records that an entry inherited from another entry, for loop detection. =cut sub set_inheritance { shift; # class method so don't care about class name my ($type, $source, $target) = @_; push $CONFIG->{state}{$type}->@*, {s => $source, t => $target}; return; } =head2 get_inheritance Check if $target directly inherited information from $source Can be used for crossrefs and xdata =cut sub get_inheritance { shift; # class method so don't care about class name my ($type, $source, $target) = @_; return first {$_->{s} eq $source and $_->{t} eq $target} $CONFIG->{state}{$type}->@*; } =head2 is_inheritance_path Checks for an inheritance path from entry $e1 to $e2 Can be used for crossrefs and xdata [ {s => 'A', t => 'B'}, {s => 'A', t => 'E'}, {s => 'B', t => 'C'}, {s => 'C', t => 'D'} ]; =cut sub is_inheritance_path { my ($self, $type, $e1, $e2) = @_; foreach my $dps (grep {$_->{s} eq $e1} $CONFIG->{state}{$type}->@*) { return 1 if $dps->{t} eq $e2; return 1 if is_inheritance_path($self, $type, $dps->{t}, $e2); } return 0; } =head1 keyorder =head2 set_keyorder Set key order information =cut sub set_keyorder { shift; # class method so don't care about class name my ($section, $key, $keyorder) = @_; $CONFIG->{state}{keyorder}{$section}{$key} = $keyorder; return; } =head2 set_internal_keyorder Set key order information for keys with the same order =cut sub set_internal_keyorder { shift; # class method so don't care about class name my ($section, $key, $intkeyorder) = @_; $CONFIG->{state}{internalkeyorder}{$section}{$key} = $intkeyorder; return; } =head2 get_keyorder Get key order information =cut sub get_keyorder { shift; # class method so don't care about class name my ($section, $key) = @_; return $CONFIG->{state}{keyorder}{$section}{$key}; } =head2 get_internal_keyorder Get key order information for keys with the same order =cut sub get_internal_keyorder { shift; # class method so don't care about class name my ($section, $key) = @_; return $CONFIG->{state}{internalkeyorder}{$section}{$key}; } =head2 get_keyorder_max Get maximum key order number for a section =cut sub get_keyorder_max { shift; # class method so don't care about class name my $section = shift; return (max values $CONFIG->{state}{keyorder}{$section}->%*) || 0; } =head2 reset_keyorder Reset keyorder - for use in tests where we switch to allkeys =cut sub reset_keyorder { shift; # class method so don't care about class name my $section = shift; delete $CONFIG->{state}{keyorder}{$section}; return; } =head1 crossrefkeys =head2 get_crossrefkeys Return ref to array of keys which are crossref targets =cut sub get_crossrefkeys { shift; # class method so don't care about class name return [ keys $CONFIG->{state}{crossrefkeys}->%* ]; } =head1 xrefkeys =head2 get_xrefkeys Return ref to array of keys which are xref targets =cut sub get_xrefkeys { shift; # class method so don't care about class name return [ keys $CONFIG->{state}{xrefkeys}->%* ]; } =head2 get_crossrefkey Return an integer representing the number of times a crossref target key has been ref'ed =cut sub get_crossrefkey { shift; # class method so don't care about class name my $k = shift; return $CONFIG->{state}{crossrefkeys}{$k}; } =head2 get_xrefkey Return an integer representing the number of times a xref target key has been ref'ed =cut sub get_xrefkey { shift; # class method so don't care about class name my $k = shift; return $CONFIG->{state}{xrefkeys}{$k}; } =head2 del_crossrefkey Remove a crossref target key from the crossrefkeys state =cut sub del_crossrefkey { shift; # class method so don't care about class name my $k = shift; if (exists($CONFIG->{state}{crossrefkeys}{$k})) { delete $CONFIG->{state}{crossrefkeys}{$k}; } return; } =head2 del_xrefkey Remove a xref target key from the xrefkeys state =cut sub del_xrefkey { shift; # class method so don't care about class name my $k = shift; if (exists($CONFIG->{state}{xrefkeys}{$k})) { delete $CONFIG->{state}{xrefkeys}{$k}; } return; } =head2 incr_crossrefkey Increment the crossreferences count for a target crossref key =cut sub incr_crossrefkey { shift; # class method so don't care about class name my $k = shift; $CONFIG->{state}{crossrefkeys}{$k}++; return; } =head2 incr_xrefkey Increment the xreferences count for a target xref key =cut sub incr_xrefkey { shift; # class method so don't care about class name my $k = shift; $CONFIG->{state}{xrefkeys}{$k}++; return; } =head2 dump Dump config information (for debugging) =cut sub dump { shift; # class method so don't care about class name dd($CONFIG); } 1; __END__ =head1 AUTHORS Philip Kime C<< >> =head1 BUGS Please report any bugs or feature requests on our Github tracker at L. =head1 COPYRIGHT & LICENSE Copyright 2012-2023 Philip Kime, all rights reserved. This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. =cut biber-2.19/lib/Biber/Constants.pm000066400000000000000000000752341440117422400166450ustar00rootroot00000000000000package Biber::Constants; use v5.24; use strict; use warnings; use Encode; use Encode::Alias; use parent qw(Exporter); use Biber::Date::Format; use Text::CSV; use Scalar::Util qw (blessed looks_like_number); use Unicode::UCD qw(num); our @EXPORT = qw{ $CONFIG_DEFAULT_BIBER $CONFIG_CSV_PARSER $BIBER_CONF_NAME $BCF_VERSION $BBL_VERSION $BIBER_SORT_FINAL $BIBER_SUPPRESS_FINAL $BIBER_SORT_NULL $LABEL_FINAL %CONFIG_DEFAULT_BIBLATEX %CONFIG_OPTSCOPE_BIBLATEX %CONFIG_SCOPEOPT_BIBLATEX %CONFIG_OPTTYPE_BIBLATEX %CONFIG_BIBLATEX_OPTIONS %CONFIG_META_MARKERS %CONFIG_DATE_PARSERS %CONFIG_OUTPUT_FIELDREPLACE %DATAFIELD_SETS %DM_DATATYPES %LOCALE_MAP %LOCALE_MAP_R %REMOTE_MAP %DS_EXTENSIONS %UNIQUENAME_CONTEXTS %UNIQUENAME_VALUES %MONTHS %RSTRINGS %USEDSTRINGS %YEARDIVISIONS }; # Version of biblatex control file which this release expects. Matched against version # passed in control file. Used when checking the .bcf our $BCF_VERSION = '3.10'; # Format version of the .bbl. Used when writing the .bbl our $BBL_VERSION = '3.2'; # Global flags needed for sorting our $BIBER_SORT_FINAL; our $BIBER_SORT_NULL; # the name of the Biber configuration file, which should be # either returned by kpsewhich or located at "$HOME/.$BIBER_CONF_NAME" our $BIBER_CONF_NAME = 'biber.conf'; ## Biber CONFIGURATION DEFAULTS # Locale - if nothing, set a default my $locale; unless ($locale) { if ( $^O =~ /Win/) { $locale = 'English_United States.1252'; } else { $locale = 'en_US.UTF-8'; } } # ISO8601-2 4.8 year divisions our %YEARDIVISIONS = ( 21 => 'spring', 22 => 'summer', 23 => 'autumn', 24 => 'winter', 25 => 'springN', 26 => 'summerN', 27 => 'autumnN', 28 => 'winterN', 29 => 'springS', 30 => 'summerS', 31 => 'autumnS', 32 => 'winterS', 33 => 'Q1', 34 => 'Q2', 35 => 'Q3', 36 => 'Q4', 37 => 'QD1', 38 => 'QD2', 39 => 'QD3', 40 => 'S1', 41 => 'S2' ); # Reverse record of macros so we can reverse these for tool mode output our %RSTRINGS = (); # Record of macros which are actually used in output in tool mode, so that we don't # output unused strings. our %USEDSTRINGS = (); our %MONTHS = ('jan' => '1', 'feb' => '2', 'mar' => '3', 'apr' => '4', 'may' => '5', 'jun' => '6', 'jul' => '7', 'aug' => '8', 'sep' => '9', 'oct' => '10', 'nov' => '11', 'dec' => '12'); # datafieldsets our %DATAFIELD_SETS = (); # datatypes for data model validation our %DM_DATATYPES = ( integer => sub { my $v = shift; return 1 if looks_like_number(num($v =~ s/^-//r)); return 0; }, name => sub { my $v = shift; return 1 if (blessed($v) and $v->isa('Biber::Entry::Names')); return 0; }, range => sub { my $v = shift; return 1 if ref($v) eq 'ARRAY'; return 0; }, list => sub { my $v = shift; return 1 if ref($v) eq 'ARRAY'; return 0; }, datepart => sub { my $v = shift; my $f = shift; if ($f =~ /timezone$/) { # ISO 8601 #