General ⇒ Order bibliography by date
Order bibliography by date
I'm looking for a style which will order my bibliography by date. I'm writing my thesis, and at the beginning I have a list of papers I've written. I'm using \bibliography{blah} to list them, but I would prefer a way to list them in date order. If this is not possible, then is there a style which lists them in the order they appear in the .bib file?
thanks
Andrew
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
Order bibliography by date
Code: Select all
(initial stuff)
\nocite{paper2003}\nocite{paper2005}\nocite{book2007}
(more stuff)
In my book \cite{paper2003},... (remaining \cite commands)
(more stuff)
\bibliographystyle{unsrt}
\bibliography{mybibfile}
(final stuff)
Order bibliography by date
It has worked like a treat.
I was able to shorten it by combining the nocite commands to this:
Code: Select all
\nocite{brampton2007cui,brampton2008cew,macquire2008acf}
\bibliographystyle{unsrt}
\bibliography{related}
Oh, and while testing this I found out that if I didn't cite any of them, used \nocite{*), and the unsrt style, then it will be sorted in the order within the bib file.
Thanks