blob: dadccbd89a72927b02c71e9eae21fbf61e69f227 (
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
|
%
% This file presents the `science' style
%
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[english,UKenglish]{babel}
\usepackage[babel]{csquotes}
\usepackage[
style=science,
hyperref
]{biblatex}
\usepackage[
colorlinks,
linkcolor=black,
urlcolor=black,
citecolor=black
]{hyperref}
\bibliography{biblatex-science}
\begin{document}
\section*{The \texttt{science} style}
This style prints numeric citations with bibliography
formatting following the rules of the journal \emph{Science}.
Citations will occur in-line, for example \autocite{Kabbe1973}
or \autocite{Arduengo1991}.
\nocite{*}
\printbibliography
\end{document}
|