|
NAMEhxmkbib - create bibliography from a templateSYNOPSIShxmkbib [ -s separator ] [ -a auxfile ] [ -n maxauthors ] [ -r moreauthors ] bibfile [ templatefile ]DESCRIPTIONThe hxmkbib commands reads a list of bibliographic keys (labels) from auxfile, finds the corresponding entries in bibfile and creates a bibliography, using templatefile as a model. The auxfile may, e.g., have been created by hxcite(1). It consists of labels, one per line. The bibfile is a refer(1) style database. hxmkbib looks for entries with a %L field equal to a key in the auxfile.The templatefile consists of three parts:
By default bibliographic entries are copied to the output in the order of the keys in auxfile, except that keys that occur more than once are only used once. If the preamble contains occurrences of %x (where x is neither "%" nor "{") then these together determine the sort order. E.g., if the preamble contains %A%D then the entries will be sorted first on field A (author) and then on field D (date). Here is an example of template file that creates a bibliography in HTML format:
<html> <title>Bibliography</title> <!--%A%D sorted on author, then date --> <dl> %{L: <dt id="%L">%{A:%A%}%{!A:%{E:%E%}%{!E:%{Q:%Q%}%{!Q:-%}%}%}</dt> <dd>%{B:"%T" in: %{E:%E (eds) %}<cite>%B.</cite>%{V: %V.%} %}%{J:"%T" in: %{E:%E (eds) %}<cite>%J.</cite>%{V: %V.%}%{N: %N.%}%{P: pp. %P.%} %}%{!B:%{!J:<cite>%T.</cite> %}%}%{I:%I. %}%{D:%D. %}%{C:%C. %}%{R:%R. %}%{S:%S. %}%{O:%O %}%{U:<a href="%U">%U</a> %}</dd> %} </dl> </html> This template starts with four lines of preamble, including the sort string %A%D on line 3. The sort string itself will not be output, but the rest of the comment will. From the line %{L: to the line %} is the template. E.g., the line that starts with <dt id=... contains a complex conditional text that prints the authors (%A) if there are any, otherwise the editors (%E) if there are any, otherwise the institution that is the author (%Q), if any, and a dash otherwise. Note how the parts are nested, Most of the text is inside %{!A:...%}, meaning that that part will only be effective if there is no author field (%A). The final two lines are the postamble and will simply be copied unchanged. A bibliographic entry that looks like this in bibfile:
%L Java %A Gosling, James %A Joy, Bill %A Steele, Guy %T The Java language specification %D 1998 %I Addison-Wesley %U http://java.sun.com/docs/books/jls/index.html will be printed by the template above as:
<dt id="Java">Gosling, James; Joy, Bill; Steele, Guy</dt> <dd><cite>The Java language specification.</cite> Addison-Wesley. 1998. <a href="http://java.sun.com/docs/books/jls/index.html">http://java.sun.com/docs/books/jls/index.html</a> </dd> OPTIONSThe following options are supported:
OPERANDSThe following operands are supported:
DIAGNOSTICSThe following exit values are returned:
SEE ALSOasc2xml(1), hxcite(1), hxnormalize(1), hxnum(1), hxprune(1), hxtoc(1), hxunent(1), xml2asc(1), UTF-8 (RFC 2279)BUGSSorting is primitive: the program doesn't parse dates or names and simply sorts "Jan 2000" under the letter "J" and "Albert Camus" under the letter "A". For the moment the only work-around is to put names in the bibfile as "Camus, Albert".The program simply lists all authors or editors. There is no way to generate an "et. al." after the third one. The work-around is to put the "et. al." in the bibfile. Putting commas between the first authors and the word "and" before the final one is also not possible. The program doesn't try to interpret names of authors or editors and they cannot be reformatted. It is impossible to write a name that is specified as "Sartre, Jean-Paul" in the bibfile as "J. Sartre" or as "Jean-Paul Sartre" in the output. There is no way to suppress a period after a field if the field already ends with a period. E.g., the template "%{A:A.%}" may generate "A. Person Jr.." if the author is "A. Person Jr." The only option is to either not put periods in the bibfile or not put periods in the template. Entries in the bibfile can only be used if they have a %L (label) field. The program cannot find entries by searching for keywords, like refer(1). hxmkbib will replace any ampersands (&) and less-than (<) and greater-than (>) signs that occur in the bibfile by their XML entities & < > on the assumption that the template is HTML/XML. This may not be appropriate for other formats.
Visit the GSP FreeBSD Man Page Interface. |