summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/biblatex-ms/doc/examples/32-style-numeric-verb-ms.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/biblatex-ms/doc/examples/32-style-numeric-verb-ms.tex')
-rw-r--r--macros/latex/contrib/biblatex-ms/doc/examples/32-style-numeric-verb-ms.tex51
1 files changed, 51 insertions, 0 deletions
diff --git a/macros/latex/contrib/biblatex-ms/doc/examples/32-style-numeric-verb-ms.tex b/macros/latex/contrib/biblatex-ms/doc/examples/32-style-numeric-verb-ms.tex
new file mode 100644
index 0000000000..5dd117110f
--- /dev/null
+++ b/macros/latex/contrib/biblatex-ms/doc/examples/32-style-numeric-verb-ms.tex
@@ -0,0 +1,51 @@
+%
+% This file presents the 'numeric-verb' style
+%
+\documentclass[a4paper]{article}
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[american]{babel}
+\usepackage{csquotes}
+\usepackage[style=numeric-verb,subentry,backend=biber]{biblatex-ms}
+\usepackage{hyperref}
+\addbibresource{biblatex-examples.bib}
+% 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.
+
+\subsubsection*{The \texttt{subentry} option}
+
+The option \texttt{subentry} affects the handling of citations
+referring to members of a reference set. If this option is enabled,
+such citations get an extra letter which identifies the member
+(it is also printed in the bibliography):
+\cite{glashow,yoon,salam,aksin,companion}.
+
+This option is disabled by default, but it has been enabled
+in this example. If disabled, citations referring to a set member
+will point to the entire set, i.e., the above citations would
+come out as
+\cite{stdmodel,set,stdmodel,set,companion}.
+
+\subsection*{Multiple citations}
+
+\cite{hammond,massa,augustine,cotton,set,murray,bertram,stdmodel}
+
+\cite{yoon,salam}
+
+\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{yoon,salam}
+
+\clearpage
+\printbibliography
+
+\end{document}