Document Classesmoderncv bib entries order

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
vrossett82
Posts: 2
Joined: Thu Jan 28, 2010 4:53 pm

moderncv bib entries order

Post by vrossett82 »

Hi all,

I am using the moderncv class to write my CV. The problem is that the list of publications is not in my desired order. I don't get which order is Latex using. How can I override the default order of the bibliography entries? The code for the publication section looks like this
\nocite{*}
\bibliographystyle{plain}
\bibliography{cv_bib}

Thanks a lot in advance for your help!!

Valentina

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

moderncv bib entries order

Post by kaiserkarl13 »

By default, plain.bst sorts in alphabetical order I think. Try

Code: Select all

\bibliographystyle{unsrt}
instead. You can further customize the appearance by changing the style to another file, or make your own with makebst.
Post Reply