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
|
%
% Prefixes also work with alphabetic the styles.
%
\documentclass[a4paper,oneside]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=alphabetic,backend=biber]{biblatex}
\usepackage{hyperref}
\usepackage{nameref}
\addbibresource{biblatex-examples.bib}
% A catch-all filter for all items which are not assigned to a
% dedicated sub-bibliography:
\defbibfilter{other}{
not type=article
and
not type=book
and
not type=collection
}
\begin{document}
\section*{Prefixed alphabetic citations}
% Some citations:
\cite{angenendt, kastenholz, augustine, companion, jaffe, ctan}
\nocite{*}
% Let's print the overall heading of the bibliography first:
\printbibheading
% And now the sub-bibliographies: we use three of them (based on the
% entry type). Each sub-bibliography assigns a different prefix.
\newrefcontext[labelprefix={A-}]
\printbibliography[heading=subbibliography,title={Articles},type=article]
\newrefcontext[labelprefix={B-}]
\printbibliography[heading=subbibliography,title={Books},type=book]
\newrefcontext[labelprefix={C-}]
\printbibliography[heading=subbibliography,title={Collections},type=collection]
% The catch-all sub-bibliography for all remaining types:
\newrefcontext[labelprefix={O-}]
\printbibliography[heading=subbibliography,title={Other Sources},filter=other]
\end{document}
|