General ⇒ HELP with bibliography
HELP with bibliography
I'm a beginner in latex and hope that my question is simple and someone here can help me.
I need to organize the reference list in alphabetic order and without enumeration, like:
Johnes D (2002) Title of the article, Journal, 1(1):123-125.
With citation in the text using authername and year in parentheses.
Maybe this is very simple, but I could not find such style for bibtex and I also do not know how to get rid from the numbers using \thebibliography.
PS I use documentclass{article}
Thanks in advance!!!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
HELP with bibliography
have a look at the natbib package, it provides commands for author–year citations. You can create custom bibliography styles with the custom-bib program.
Re: HELP with bibliography
HELP with bibliography
HELP with bibliography
phi wrote:Sorry, I edited my post just after you answered. Using the custom-bib (also called makebst) program, you can build virtually any bibliography style file that suits your needs.
Thanks for help

Re: HELP with bibliography

HELP with bibliography
HELP with bibliography
Code: Select all
\bibliographystyle{apa}
Use commands defined in natbib, like \citet or \citep, to cite references throughout your document.