blob: 1561614b507be92d226fee0c1f5d6056a6cb7bc3 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
%
% This file presents the 'alphabetic' style
%
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=alphabetic,backend=biber]{biblatex}
\usepackage{hyperref}
\addbibresource{biblatex-examples.bib}
% Some generic settings.
\newcommand{\cmd}[1]{\texttt{\textbackslash #1}}
\setlength{\parindent}{0pt}
\begin{document}
\section*{The \texttt{alphabetic} style}
This style prints alphabetic citations similar to the
\texttt{alpha.bst} style of legacy BibTeX. The alphabetic labels
resemble a compact author-year style to some extent, but the way
they are employed is similar to a numeric citation scheme.
\subsection*{\cmd{cite} examples}
\cite{companion}
\cite[59]{companion}
\cite[see][]{companion}
\cite[see][59--63]{companion}
\subsection*{\cmd{parencite} examples}
% With this style, the \parencite command is similar to \cite at
% first glance, but the placement of the prenote argument is
% different.
This is just filler text \parencite{companion}.
This is just filler text \parencite[59]{companion}.
This is just filler text \parencite[see][]{companion}.
This is just filler text \parencite[see][59--63]{companion}.
\subsection*{\cmd{textcite} examples}
\textcite{companion} show that this is just filler text.
\textcite[59]{companion} show that this is just filler text.
\textcite[see][]{companion} show that this is just filler text.
\textcite[see][59--63]{companion} show that this is just filler text.
\subsection*{\cmd{autocite} examples}
% By default, the \autocite command works like \parencite.
This is just filler text \autocite{companion}.
\subsection*{Multiple citations}
% By default, a list of multiple citations is not sorted. You can
% enable sorting by setting the 'sortcites' package option.
\cite{companion,augustine,bertram,cotton,hammond,massa,murray}
\clearpage
% The list of references
\nocite{*}
\printbibliography
\end{document}
|