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
35
36
|
%
% This file presents the 'numeric-verb' style
%
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=numeric-verb,subentry]{biblatex}
\usepackage{hyperref}
\bibliography{biblatex-examples}
% Some generic settings.
\newcommand{\cmd}[1]{\texttt{\textbackslash #1}}
\setlength{\parindent}{0pt}
\begin{document}
\section*{The \texttt{numeric-verb} style}
This style is similar to \texttt{numeric} except that a list of
multiple citations is printed in a slightly more verbose format.
\subsection*{Multiple citations}
\cite{hammond,massa,augustine,cotton,set,murray,bertram,stdmodel}
\cite{set:yoon,stdmodel:salam,set:herrmann}
\subsection*{Multiple citations with \cmd{supercite}}
This is just filler text.\supercite{hammond,massa,augustine,cotton,set,murray,bertram,stdmodel}
This is just filler text.\supercite{set:yoon,stdmodel:salam,set:herrmann}
\clearpage
\printbibliography
\end{document}
|