Hey All!
I do not find the right style for my bibtex-file. It has to be author-year-title-place-publisher. Has anybody an idea if there's a package already existing?
Or how can I program a style by mysself?
Thanks
Creuvette
Document Classes ⇒ Bibtex Styles in Latex
NEW: TikZ book now 40% off at Amazon.com for a short time.
- countbela666
- Posts: 64
- Joined: Thu Apr 26, 2007 2:44 pm
Bibtex Styles in Latex
Hi,
What about the jureco style (requires jurabib package):
Have a look at the FAQ: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=custbib.
Regards
Marcel
creuvette wrote: I do not find the right style for my bibtex-file. It has to be author-year-title-place-publisher. Has anybody an idea if there's a package already existing?
What about the jureco style (requires jurabib package):
Code: Select all
\begin{filecontents}{lit.bib}
@BOOK{test,
author = {Donald Ervin Knuth},
title = {The TeXbook},
year = {1984},
publisher = {Addison-Wesley},
address = {London}
}
\end{filecontents}
\listfiles
\documentclass{article}
\usepackage{jurabib}
\begin{document}
cf. \cite{test}
\bibliographystyle{jureco}
\bibliography{lit}
\end{document}
creuvette wrote: Or how can I program a style by mysself?
Have a look at the FAQ: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=custbib.
Regards
Marcel
Listen to me children of the night, beyond the doors of darkness you will find
a thousand worlds for you to see here, take my hand and follow me...
a thousand worlds for you to see here, take my hand and follow me...
Re: Bibtex Styles in Latex
Salut Marcel
Thanks! Finally, I used dinat for German. But it was a usefull information anyway.
Creuvette
Thanks! Finally, I used dinat for German. But it was a usefull information anyway.
Creuvette