Hi,
you can use
biblatex and its
nature style. A little example:
Code: Select all
\documentclass{article}
\usepackage[style=nature,autocite=superscript]{biblatex}% biblatex using nature style
% your bibliographical database
\bibliography{biblio}
\begin{document}
Some text\autocite{goossens93}
% to list all the entries of the .bib database
\nocite{*}
% the command that actually prints the bibliography
\printbibliography
\end{document}
The database
biblio.bib:
Code: Select all
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion A",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@article{greenwade93,
author = "George D. Greenwade",
title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year = "1993",
journal = "TUGBoat",
volume = "14",
number = "3",
pages = "342--351"
}
@book{knuth79,
author = "Donald E. Knuth",
title = "Tex and Metafont, New Directions in Typesetting",
year = {1979{(}1950{)}},
publisher = "American Mathematical Society and Digital Press",
address = "Stanford"
}
@book{lamport94,
author = "Leslie Lamport",
title = "Latex: A Document Preparation System",
year = "1994",
edition = "Second",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@misc{patashnik88,
author = "Oren Patashnik",
title = "{B}ib{T}e{X}ing. Documentation for General {B}ib{T}e{X} users",
year = "1988",
howpublished = "Electronic document accompanying BibTeX
distribution"
}
@techreport{rahtz89,
author = "Sebastian Rahtz",
title = "A Survey of {T}ex and graphics",
year = "1989",
institution = "Department of Electronics and Computer Science",
address = "University of Southampton, UK",
number = "CSTR 89-7"
}
The compilation procedure:
run (pdf)latex, then bibtex, and then (pdf)latex once more.
1,1,2,3,5,8,13,21,34,55,89,144,233,...