[Tex/LaTex] referencing like nature journal

bibliographies

Journals such as Nature use a specific format of citations.

currently they can only follow a few genes simultaneously7

  1. Locke, J. C. W. & Elowitz, M. B. Using movies to analyse gene circuit dynamics in single cells. Nature Rev. Microbiol. 7, 383–392
    (2009).

In the text, there is a small number similar to a footnote for citation. However the list of references are not shown as a footnote, instead this list will be at the end of the document (like a regular bibliography).

How can we create such a style in LaTeX? It seems it should be a common format, but I can't find it anywhere.

Best Answer

\documentclass{article}
\usepackage[style=nature]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
I know a great book\autocite{companion}
\printbibliography
\end{document}

mgoriBiblatexNature

Related Question