Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

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.

share|improve this question
4  
Did you try adding sorting=none to biblatex package options? – guillem Aug 29 '12 at 10:17
Yes, it does not work. – Apoorva Aug 29 '12 at 13:17
But I don't want the citation to appear. This is for a resume. What can I use instead of \nocite then. – Apoorva Aug 29 '12 at 14:36
1  
@Apporva What do you get? Using the sorting=none option (after style option) it works for me, I get B02 before A01. – guillem Aug 30 '12 at 5:54
This works with sorting=none. Thank you. I was not putting the argument correctly. – Apoorva Aug 30 '12 at 7:11

closed as too localized by lockstep, Joseph Wright Aug 30 '12 at 20:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.