summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex
Initial commit
Diffstat (limited to 'macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex')
-rw-r--r--macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex231
1 files changed, 231 insertions, 0 deletions
diff --git a/macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex b/macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex
new file mode 100644
index 0000000000..011d44dba7
--- /dev/null
+++ b/macros/latex/contrib/biblatex-contrib/biblatex-sbl/biblatex-sbl-ibid.tex
@@ -0,0 +1,231 @@
+\documentclass[a4paper]{article}
+
+\usepackage{microtype}
+\usepackage{fontspec}
+\usepackage{xparse}
+\usepackage{xcolor}
+\usepackage{parskip}[=v1]
+\usepackage{titlesec}
+\usepackage{imakeidx}
+\makeindex[title=Author Index,intoc,options=-q]
+\usepackage{hyperref}
+\usepackage[style=sbl,indexing=cite]{biblatex}
+\addbibresource{biblatex-sbl.bib}
+
+\setmonofont{DejaVu Sans Mono}[Scale=MatchLowercase]
+\setromanfont{Linux Libertine O}
+\setsansfont{Linux Biolinum O}[
+ BoldItalicFont={* Bold},
+ BoldItalicFeatures={FakeSlant=0.2}
+]
+
+\titleformat{\paragraph}
+{\normalfont\sffamily\normalsize\bfseries}{\theparagraph}{1em}{}
+\titleformat{\subparagraph}
+{\normalfont\sffamily\small\scshape}{\thesubparagraph}{1em}{}
+\titlespacing*{\paragraph}{0pt}{2ex plus 1ex minus 0.2ex}{0.5ex}
+\titlespacing*{\subparagraph}{0pt}{1ex plus 0.2ex}{0em}
+
+\titleclass{\subsubparagraph}{straight}[\subparagraph]
+\titleformat{\subsubparagraph}{\normalfont\ttfamily\small}{}{1em}{}
+\titlespacing*{\subsubparagraph}{0pt}{0pt}{0pt}
+
+\setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
+
+\setlength{\parskip}{1ex plus 0.5ex minus 0.25ex}
+
+\definecolor{biblatex-colour}{rgb}{0.25,0.25,0.65}
+\definecolor{reference-colour}{rgb}{0,0.6,0.15}
+
+\ExplSyntaxOn
+\NewDocumentCommand \samplemacro { m }
+ {
+ \subsubparagraph*{#1}
+ }
+\NewDocumentCommand \sblrefsamplecite { s m m m o o m }
+ {
+ \IfNoValueTF { #5 }
+ {
+ \IfNoValueT { #6 }
+ {
+ \IfBooleanF { #1 }
+ {
+ \samplemacro{\textbackslash #2\{#7\}}
+ }
+ \color{biblatex-colour}
+ \hspace*{\bibindent}#4\csuse{#3}{#7}
+ }
+ }
+ {
+ \IfNoValueTF { #6 }
+ {
+ \IfBooleanF { #1 }
+ {
+ \samplemacro{\textbackslash #2[#5]\{#7\}}
+ }
+ \color{biblatex-colour}
+ \hspace*{\bibindent}#4\csuse{#3}[#5]{#7}
+ }
+ {
+ \IfBooleanF { #1 }
+ {
+ \samplemacro{\textbackslash #2[#5][#6]\{#7\}}
+ }
+ \color{biblatex-colour}
+ \hspace*{\bibindent}#4\csuse{#3}[#5][#6]{#7}
+ }
+ }
+ }
+\NewDocumentCommand \samplecite { s m o o m }
+ {
+ \rmfamily
+ \IfBooleanTF { #1 }
+ {
+ \sblrefsamplecite*{autocite}{cite}{#2.~}[#3][#4]{#5}.\par
+ }
+ {
+ \sblrefsamplecite{autocite}{cite}{#2.~}[#3][#4]{#5}.\par
+ }
+ \color{black}
+ }
+\NewDocumentCommand \sampleparencite { s o o m }
+ {
+ \rmfamily
+ \IfBooleanTF { #1 }
+ {
+ \sblrefsamplecite*{parencite}{parencite}{}[#2][#3]{#4}\par
+ }
+ {
+ \sblrefsamplecite{parencite}{parencite}{}[#2][#3]{#4}\par
+ }
+ \color{black}
+ }
+\NewDocumentCommand \samplebib { s m }
+ {
+ \IfBooleanF { #1 }
+ {
+ \samplemacro{\textbackslash printbibliography}
+ }
+ \color{biblatex-colour}
+ \rmfamily\hangindent\bibindent\bibentrycite{#2}.\par
+ \color{black}
+ }
+\NewDocumentCommand \samplebiblist { s m }
+ {
+ \IfBooleanF { #1 }
+ {
+ \samplemacro{\textbackslash printbiblist\{abbreviations\}}
+ }
+ \color{biblatex-colour}
+ \biblistcite{#2}
+ \color{black}
+ }
+\NewDocumentCommand \refbiblist { m m }
+ {
+ \color{reference-colour}
+ \strut\rmfamily\hangindent 6em\rlap{#1}\hskip 6em #2\par
+ \color{black}
+ }
+\ExplSyntaxOff
+
+\newenvironment{biboutput}{%
+ \subparagraph{Biblatex Output}
+}{\color{black}}
+
+\newenvironment{refimp}{%
+ \subparagraph{Reference Implementation}
+ \color{reference-colour}
+ \rm
+}{\par\color{black}}
+
+\title{Biblatex-SBL \emph{ibidem} and \emph{idem} Test File}
+\author{David Purton}
+\date{}
+
+\begin{document}
+
+\maketitle
+
+This file tests the behaviour of the various options related to using
+\emph{ibidem} and \emph{idem} in Biblatex-SBL.
+
+\section*{Default \emph{ibidem} tracking}
+
+By default ibid.\@ is not used across page breaks and \emph{ibidem} is taken
+to mean ‘same author + same title’. See \texttt{biblatex-sbl.pdf} for a
+description of the options \texttt{ibidtracker} can take.
+
+\begin{biboutput}
+ \samplemacro{\textbackslash usepackage[style=sbl]\{biblatex\}}
+ \samplecite{1}[127]{talbert:1992}
+ \samplecite{2}[22]{talbert:1992}
+ \samplecite{3}[22]{talbert:1992}
+ \samplecite{4}[237]{robinson+koester:1971}
+ \samplecite{5}[22]{talbert:1992}
+ \samplemacro{\textbackslash clearpage}
+ \clearpage
+ \samplecite{6}[22]{talbert:1992}
+\end{biboutput}
+
+\section*{Not tracking \emph{ibidem} across pages}
+
+\boolfalse{pagetracker}
+
+Set the \texttt{pagetracker} option to \texttt{false} to allow that the first
+citation on a page to be ibid.
+
+\boolfalse{pagetracker}
+
+\begin{biboutput}
+ \samplemacro{\textbackslash usepackage[style=sbl,pagetracker=false]\{biblatex\}}
+ \samplecite{7}[53]{scott+etal:1993}
+ \samplecite{8}[42]{scott+etal:1993}
+ \samplemacro{\textbackslash clearpage}
+ \clearpage
+ \samplecite{9}[42]{scott+etal:1993}
+\end{biboutput}
+
+\section*{\emph{Ibidem} meaning ‘same author + same title + same page’}
+
+Turn on the \texttt{ibidpage} option to indicate that \emph{ibidem} should
+mean ‘same author + same title + same page’.
+
+\makeatletter
+\let\blx@imc@ifloccit\blx@ifloccit@global
+\let\blx@loccittracker\blx@loccittracker@global
+\let\blx@loccitreset\blx@loccitreset@global
+\makeatother
+
+\begin{biboutput}
+ \samplemacro{\textbackslash usepackage[style=sbl,ibidpage]\{biblatex\}}
+ \samplecite{10}[28]{egger:1996}
+ \samplecite{11}[28]{egger:1996}
+ \samplecite{12}[291]{egger:1996}
+\end{biboutput}
+
+\section*{Default \emph{idem} tracking}
+
+By default \emph{idem} is used. \emph{Idem} tracking is controlled using the
+\texttt{idemtracker} option. See \texttt{biblatex-sbl.pdf} for a description
+of the options \texttt{idemtracker} can take.
+
+\begin{biboutput}
+ \samplemacro{\textbackslash usepackage[style=sbl]\{biblatex\}}
+ \makeatletter\blx@opt@idemtracker@constrict\makeatother
+ \samplemacro{\textbackslash autocites[35]\{vanseters:1997\}\{vanseters:1995\}}
+ \color{biblatex-colour}
+ \hspace*{\bibindent}13.~\cites[35]{vanseters:1997}{vanseters:1995}.
+ \color{black}
+ \samplemacro{\textbackslash
+ autocites[35]\{vanseters:1997\}[222]\{vanseters:1995\}}
+ \makeatletter\blx@idemreset\makeatother
+ \color{biblatex-colour}
+ \hspace*{\bibindent}14.~\cites[35]{vanseters:1997}[222]{vanseters:1995}.
+ \color{black}
+\end{biboutput}
+
+\printbibliography
+
+\printindex
+
+\end{document}