General ⇒ different styles for citation and bibliography
different styles for citation and bibliography
encountered a problem using natbib: I like the citation style but would like to use another bibliography style for the list of references.
so I tried
\citestyle{plainnat}
\begin{document}
\bibliographystyle{plain}
but the resulting citations are only fragments. So how can I properly use the commands.
Another question: is there an overview over available bibliography styles that can be used. I would like to avoid specifying my own style file.
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
different styles for citation and bibliography
With natbib you can change the citation style and als the bibliography style. I included the natbib package pdf with this post and for different bibliography styles look at http://www.stat.psu.edu/~surajit/present/bib.htm. Also searching the web for these topics results in loads of results...
Cheers
- Attachments
-
- Natbib.pdf
- (164.31 KiB) Downloaded 918 times
Re: different styles for citation and bibliography
So I changed the code such that the \bibliographystyle command is at the end just before \bibliography{bibs}.
Before \begin{document} I included \usepackage{natbib}
So then I try to change the bibliography style. For e.g. apalike it seems to work and the natbib citation style is maintained. However, for acm or ieeetr etc. the citations are screwed up, instead of e.g. "Romer (1986)" just "(9)".
So the citations seem to be affected by the \bibliographystyle-command at the end.
The natbib.pdf refers to the \citestyle{} command, however, including this after \usepackage{natbib} doesn't change the change in citation described above.
What goes wrong?