Wolfgang Engelmann wrote:
How would the Bibtex entry for the following URL be and what kind of entry type should I use (I am using Jabref for producing bib-files)

Author: Engelmann, W.
Year: 2009
Title: Bio-Calendar  - The year in the life of plants and animals
    http://tobias-lib.ub.uni-tuebingen.de/volltexte/2009/3762

The standard BibTeX styles don't really have a facility for online documents. The best way, I guess, is to use something like Misc and add the URL in the note field, thus:
   \url{http://tobias-lib.ub.uni-tuebingen.de/volltexte/2009/3762}
Then do:
    \usepackage{url}
in the preamble, to get LaTeX to break the URL in sensible places.

The alternative is to add your own type to whatever BibTeX style you like to use. Something like what's below, added to something like plainnat.bst, ought to work. It defines a new "eitem" entry type, which expects author, title, year and url.

Richard

=====

%Formats a url
FUNCTION {format.url}
{
 url empty$
   { "" }
   { new.block "\url{" url * "}" * }
 if$
}

%EITEM: NEW ENTRY TYPE
FUNCTION {eitem}
{
 output.bibitem
 make.author
 " " * format.citation * "year" output.check
 new.block
 format.title "title" output.check
 format.url output
 new.block
 note output
 fin.entry
}


Reply via email to