I want to list my references in the order they are cited. The code I am using is as follows:
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\section*{Education}
\begin{refsegment}
\nocite{B02}
\nocite{A01}
\printbibliography[title={Pubs}, segment=1]
\end{refsegment}
\begin{refsegment}
\nocite{A01,C03}
\printbibliography[,title={Working Papers},
segment=2]
\end{refsegment}
\end{document}
Now for both the sections I want the references to be listed in the order they are cited i.e in the order I have written \nocite{}. Please suggest how I can do this.
sorting=nonetobiblatexpackage options? – guillem Aug 29 '12 at 10:17sorting=noneoption (afterstyleoption) it works for me, I get B02 before A01. – guillem Aug 30 '12 at 5:54