blob: 473962e483a83fe30a9e25f93c565b3f97b4e071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
%
% This file presents the `nature' style
%
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[english,UKenglish]{babel}
\usepackage[babel]{csquotes}
\usepackage[
style=nature,
hyperref
]{biblatex}
\usepackage[
colorlinks,
linkcolor=black,
urlcolor=black,
citecolor=black
]{hyperref}
\bibliography{biblatex-nature}
\begin{document}
\section*{The \texttt{nature} style}
This style prints numeric citations with bibliography
formatting following the rules of the journal \emph{Nature}.
With settings for citations as given, the citations will be
superscript and punctuation will not be moved before citations,
for example \autocite{Kabbe1973} or \autocite{Arduengo1991}.
\nocite{*}
\printbibliography
\end{document}
|