summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/biblatex-ms/doc/examples/11-references-by-section-ms.tex
blob: 5fb8436ac5629e52b13cf2826e8eea572c33bf48 (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
%
% This file is similar to the 'per section' example except that
% all references are printed at the end of the document. The
% citation labels are still local to the 'refsection' environments.
%
% With Biber, this file is processed as follows:
%
%   latex  file
%   biber  file
%   latex  file
%
% With BibTeX, this file is processed as follows:
%
%   latex  file
%   bibtex file1-blx
%   bibtex file2-blx
%   bibtex file3-blx
%   latex  file
%
% Note that the file name suffix may generally be omitted. It's
% 'latex file' and 'bibtex file' rather than 'latex file.tex' and
% 'bibtex file.aux'. Depending on the TeX distribution, omitting the
% 'aux' file prefix when invoking BibTeX may even by mandatory.
%
\documentclass[a4paper,oneside]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=authoryear,backend=biber]{biblatex-ms}
\usepackage{hyperref}
\usepackage{nameref}
\addbibresource{biblatex-examples.bib}
\defbibheading{subbibliography}{%
  \section*{%
    Chapter \therefsection:
    \nameref{refsection:\therefsection}}}
\begin{document}

\chapter{Title of first chapter}
\begin{refsection}
This is just filler text \parencite{westfahl:space}.
This is just filler text \parencite{nietzsche:ksa}.
\end{refsection}

\chapter{Title of second chapter}
\begin{refsection}
This is just filler text \parencite{nietzsche:historie}.
This is just filler text \parencite{westfahl:frontier}.
\end{refsection}

\chapter{Title of third chapter}
\begin{refsection}
This is just filler text \parencite{aristotle:anima}.
This is just filler text \parencite{averroes/bland}.
\end{refsection}

\printbibheading
\bibbysection[heading=subbibliography]
%
% \bibbysection is a shorthand for:
%
% \printbibliography[section=1]
% \printbibliography[section=2]
% \printbibliography[section=3]
% ...

\end{document}