Document ClassesBibtex Styles in Latex

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
creuvette
Posts: 5
Joined: Wed May 30, 2007 11:42 am

Bibtex Styles in Latex

Post by creuvette »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
countbela666
Posts: 64
Joined: Thu Apr 26, 2007 2:44 pm

Bibtex Styles in Latex

Post by countbela666 »

Hi,
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...
creuvette
Posts: 5
Joined: Wed May 30, 2007 11:42 am

Re: Bibtex Styles in Latex

Post by creuvette »

Salut Marcel

Thanks! Finally, I used dinat for German. But it was a usefull information anyway.

Creuvette
Post Reply