I'm using
Code: Select all
\bibliographystyle{unsrt}
Code: Select all
\bibliographystyle{unsrt}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\begin{filecontents*}{xmpl.bib}
@BOOK{knuth84,
author={Donald Ervin Knuth},
title={The \TeX book},
year={1984},
publisher={Addison-Wesley}
}
@BOOK{lamport94,
author={Leslie Lamport},
title={\LaTeX\ - A Document Preparation System},
note={User's Guide and Reference Manual},
year={1994},
publisher={Addison-Wesley},
edition={Second}
}
\end{filecontents*}
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{lmodern}
\begin{document}
\LaTeX\ was done by L.\ Lamport~\cite{lamport94}. \TeX\ has been programmed by Donald E.\ Knuth~\cite{knuth84}.
\bibliographystyle{unsrt}
\bibliography{xmpl}
\end{document}
Code: Select all
\usepackage[citestyle=numeric,style=numeric,backend=bibtex,sorting=none]{biblatex}
\nocite{*}
...
\cite{..}
\cite{..}
...
\backmatter
\printbibliography[heading=bibintoc]
Code: Select all
\nocite{*}
Code: Select all
\nocite{*}
Code: Select all
\backmatter
\nocite{*}
\printbibliography[heading=bibintoc]
NEW: TikZ book now 40% off at Amazon.com for a short time.