Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bibtex8(1) [debian man page]

BIBTEX8(1)							   User Commands							BIBTEX8(1)

NAME
bibtex8 - 8-bit Big BibTeX version 0.99c SYNOPSIS
bibtex8 [options] aux-file DESCRIPTION
8-bit BibTeX is an enhanced, portable C version of BibTeX 0.99. It has been enhanced in these areas: - conversion to "big" (32-bit) capacity - capacity selectable at run time - flexible support for non-English languages using 8-bit character sets - well matched to LateX2e and its "inputenc" package Oren Patashnik, the creator of BibTeX, is working on a new BibTeX 1.0 that will be a modern implementation supporting large capacities and non-English languages (see TUGboat, pages 269--274, volume 15, number 3, September 1994). He is content for this version to be released, but hopes that people will eventually migrate to BibTeX 1.0 when it is released. Its release date is uncertain at the moment. OPTIONS
-? --help display this help text -7 --traditional operate in the original 7-bit mode -8 --8bit force 8-bit mode, no CS file used -c --csfile FILE read FILE as the BibTeX character set and sort definition file -d --debug TYPE report debugging information. TYPE is one or more of all, csf, io, mem, misc, search. -s --statistics report internal statistics -t --trace report execution tracing -v --version report BibTeX version -B --big set large BibTeX capacity -H --huge set huge BibTeX capacity -W --wolfgang set really huge BibTeX capacity for Wolfgang -M --min_crossrefs ## set min_crossrefs to ## --mcites ## allow ## cites in the .aux files --mentints ## allow ## integer entries in the .bib databases --mentstrs ## allow ## string entries in the .bib databases --mfields ## allow ## fields in the .bib databases --mpool ## set the string pool to ## bytes --mstrings ## allow ## unique strings --mwizfuns ## allow ## wizard functions AUTHORS
bibtex8 was written by Niel Kempson <kempson@snowyowl.co.uk> and Alejandro Aguilar-Sierra <asierra@servidor.unam.mx>. This manpage was written by Norbert Preining for Debian/GNU Linux and may be used, modified and/or distributed freely by anyone. bibtex8 3.71 April 2006 BIBTEX8(1)

Check Out this Related Man Page

Text::BibTeX::BibSort(3pm)				User Contributed Perl Documentation				Text::BibTeX::BibSort(3pm)

NAME
Text::BibTeX::BibSort - generate sort keys for bibliographic entries SYNOPSIS
# Assuming $entry comes from a database of the 'Bib' structure # (i.e., that it's blessed into the BibEntry class, which inherits # the sort_key method from BibSort): $sort_key = $entry->sort_key; DESCRIPTION
"Text::BibTeX::BibSort" is a base class of "Text::BibTeX::BibEntry" for generating sort keys from bibliography entries. It could in principle (and, someday, might) offer a wide range of highly customizable sort-key generators. Currently, though, it provides only a single method ("sort_key") for public use, and that method only pays attention to one structure option, "sortby". METHODS
sort_key () Generates a sort key for a single bibliographic entry. Assumes this entry conforms to the "Bib" database structure. The nature of this sort key is controlled by the "sortby" option, which can be either "name" or "year". (The "namestyle" also has a role, in determining how author/editor names are formatted for inclusion in the sort key.) For by-name sorting (which is how BibTeX's standard styles work), the sort key consists of one of the "author", "editor", "organization", or "key" fields (depending on the entry type and which fields are actually present), followed by the year and the title. All fields are drastically simplified to produce the sort key: non-English letters are mercilessly anglicized, non-alphabetic characters are stripped, and everything is forced to lowercase. (The first two steps are done by the "purify_string" routine; see "Generic string-processing functions" in Text::BibTeX for a brief description, and the descripton of the C function "bt_purify_string()" in bt_misc for all the gory details.) SEE ALSO
Text::BibTeX::Structure, Text::BibTeX::Bib, Text::BibTeX::BibFormat AUTHOR
Greg Ward <gward@python.net> COPYRIGHT
Copyright (c) 1997-2000 by Gregory P. Ward. All rights reserved. This file is part of the Text::BibTeX library. This library is free software; you may redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-02 Text::BibTeX::BibSort(3pm)
Man Page