Generallatex:bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
mrmag
Posts: 14
Joined: Mon Jul 21, 2008 1:55 pm

latex:bibliography

Post by mrmag »

Hi latex-community,

I've met a problem in the following example:

Code: Select all

\documentclass[14pt, 
a4paper, 
oneside
]{extarticle}

\bibliographystyle{unsrt} %doesn't work

\begin{document}

\cite{MONACI.02} bla bla \cite{MONACI.01}

\begin{thebibliography}{9}
\bibitem{MONACI.01}MONACI.01
\bibitem{MONACI.02}MONACI.02
\end{thebibliography}

\end{document}
The option unsrt doesn't work properly. According to the documentation the item MONACI.02 should be numbered as 1. But latex generate 2. How can I automatically sort the references in order to the cites?

Thank you in advance!

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Re: latex:bibliography

Post by Stefan Kottwitz »

Hi mrmag,

use the unsrt bibliography style together with BibTeX.

Stefan
LaTeX.org admin
mrmag
Posts: 14
Joined: Mon Jul 21, 2008 1:55 pm

Re: latex:bibliography

Post by mrmag »

Thanks for the answer. But is there some other ways, but within the thebibliography environment?
Post Reply