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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
%
% This file presents the 'authortitle-icomp' style
%
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=authortitle-icomp,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{authortitle-icomp} style}
This style combines the features of \texttt{authortitle-ibid} and
\texttt{authortitle-comp}. It will implicitly enable the
\texttt{sortcites} package option at load time. This style is
intended for citations given in footnotes.
\subsection*{Additional package options}
\subsubsection*{The \texttt{ibidpage} option}
The scholarly abbreviation \emph{ibidem} is sometimes taken to mean
both `same author~+ same title' and `same author~+ same title~+ same
page' in traditional citation schemes. By default, this is not the
case with this style because it may lead to ambiguous citations.
With \texttt{ibidpage=true} a page range postnote will be suppresse
in an \emph{ibidem} citation if the last citation was to the same
page range. With \texttt{ibidpage=false} the postnote is not omitted.
Citations to different page ranges than the previous always produce
the page ranges with either setting.
The default setting is \texttt{ibidpage=false}.
Consider the following example citations
\begin{verbatim}
\cite[12]{cicero}
\cite[12]{cicero}
\cite[12]{worman}
\cite[13]{worman}
\end{verbatim}
%
If \texttt{ibidpage} is set to \texttt{true}, the citations
come out as
\begin{quote}
Cicero, \emph{De natura deorum,} p.~12
ibid.
Worman, \emph{The Cast of Character,} p.~12
ibid., p.~13
\end{quote}
%
The result for \texttt{ibidpage=false} is
\begin{quote}
Cicero, \emph{De natura deorum,} p.~12
ibid., p.~12
Worman, \emph{The Cast of Character,} p.~12
ibid., p.~13
\end{quote}
\subsubsection*{The \texttt{dashed} option}
By default, this style replaces recurrent authors/editors in the
bibliography by a dash so that items by the same author or editor
are visually grouped. This feature is controlled by the package
option \texttt{dashed}. Setting \texttt{dashed=false} in the
preamble will disable this feature. The default setting is
\texttt{dashed=true}.
\subsection*{Hints}
If you want terms such as \emph{ibidem} to be printed in italics,
redefine \cmd{mkibid} as follows:
\begin{verbatim}
\renewcommand*{\mkibid}{\emph}
\end{verbatim}
\subsection*{\cmd{footcite} examples}
This is just filler text.\footcite{aristotle:rhetoric,averroes/bland,aristotle:physics,aristotle:poetics}
This is just filler text.\footcite{aristotle:rhetoric}
This is just filler text.\footcite{aristotle:rhetoric}
\clearpage
\printbibliography
\end{document}
|