I am using the package bibtopic, which allows to separate the bibliography into distinct sections. However I am encountering some difficulties : I can't manage to sort references in their order of appearance, even using a style like "unsrt". Here is a small example :
Code: Select all
\documentclass[a4paper]{article}
\usepackage{bibtopic}
\begin{document}
Blabla~\cite{ref1} and blabla~\cite{ref2}.
\bibliographystyle{unsrt}
\begin{btSect}[unsrt]{biblio}
\section*{Bibliography}
\btPrintCited
\end{btSect}
\end{document}
But if they are defined in the order ref2 then ref1 in biblio.bib, then I obtain the (wrong) following result :Blabla [1] and blabla [2].
As you can see in the example, I tried to force the use of unsrt.bst, as indicated in package manual, without success.Blabla [2] and blabla [1].
Does anybody have an idea ? Thanks.