diff options
author | Karl Berry <karl@freefriends.org> | 2010-02-15 01:10:02 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-02-15 01:10:02 +0000 |
commit | b77b8199329b20ca0d1db70060cef4e81704e74d (patch) | |
tree | a4d9ff9e9db47d18d182e88154272db9fb00fd06 /Master/texmf-dist/doc/latex/biblatex/examples | |
parent | d943f64a02a10d7684bfc86f484132152e174ce1 (diff) |
new (long-awaited) package biblatex 0.9 (14feb10)
git-svn-id: svn://tug.org/texlive/trunk@17026 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex/examples')
71 files changed, 4159 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/01-introduction.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/01-introduction.pdf Binary files differnew file mode 100644 index 00000000000..2cc2f496c93 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/01-introduction.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/01-introduction.tex b/Master/texmf-dist/doc/latex/biblatex/examples/01-introduction.tex new file mode 100644 index 00000000000..5122a388165 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/01-introduction.tex @@ -0,0 +1,173 @@ +% +% This file briefly presents the main citation commands. It also +% illustrates the typical structure of a document based on biblatex. +% Note that the \bibliography command is used in the document +% preamble and that there is no \bibliographystyle command at all. +% The bibliography is printed by way of \printbibliography. +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +% +% We load the babel package and specify the main language of the +% document. If babel is detected, biblatex will automatically adjust +% to the default language of the document. +\usepackage[american]{babel} +% +% We load the csquotes package, which is required for +% language-specific quotation marks. See the csquotes manual for +% further information about this package. +\usepackage{csquotes} +% +% We are using the `authoryear' style in this example. +% The default is the `numerical' style. +\usepackage[style=authoryear]{biblatex} +% +% Note that the \bibliography command is used in the document +% preamble. Our database file is "examples.bib". +\bibliography{biblatex-examples} +% +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{Standard citation commands} + +\subsection*{The \cmd{cite} command} + +% The \cite command prints a bare citation without parentheses. + +\cite{companion} + +\cite[59]{companion} + +\cite[See][]{companion} + +\cite[See][59--63]{companion} + +\subsection*{The \cmd{parencite} command} + +% The \parencite command, which is intended for in-text citations, +% encloses the citation in parentheses. Note that the `numeric' and +% `alphabetic' styles use square brackets instead. + +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*{The \cmd{footcite} command} + +% The \footcite command is similar to \parencite, except that the +% citation is given in a footnote. + +This is just filler text.\footcite{companion} + +This is just filler text.\footcite[59]{companion} + +This is just filler text.\footcite[See][]{companion} + +This is just filler text.\footcite[See][59--63]{companion} + +\subsection*{The \cmd{textcite} command} + +% The \textcite command is intended for citations integrated in the +% flow of text, replacing the subject of the sentence. + +\textcite{companion} show that this is just filler text. + +\textcite[59]{companion} show that this is just filler text. + +% With \textcite, the first optional argument is of limited use +% only, since you could simply place the prenote in front of the +% citation. It is still supported for the sake of consistency. + +\textcite[See][]{companion} for more filler text. + +\textcite[See][59--63]{companion} for more filler text. + +\section*{Style-independent commands} + +\subsection*{The \cmd{autocite} command} + +% The point of the \autocite command is that it automatically adapts +% to the predominant citation format (inline or footnote) normally +% used with the selected citation style. It should be used at the +% end of the sentence and usually works like \parencite or +% \footcite, depending on the citation style and the setting of the +% `autocite' package option. With the author-year style used in this +% example, it works like \parencite: + +This is just filler text \autocite{companion}. + +\section*{Text commands} + +% There are a few predefined commands for bibliographic data which +% is frequently used in the flow of text. Note that biblatex also +% grants access to all lists and fields at a lower level, see below. + +\citeauthor{companion} show that this is just filler text. + +% Note that \citetitle will use the `shorttitle' field, if +% available. + +See the \citetitle{companion} for more filler text. + +% \citetitle*, on the other hand, always prints the `title' +% field. + +See also: \citetitle*{companion}. + +\citetitle*{companion} by \citeauthor{companion} was +published in \citeyear{companion}. + +\section*{Special commands} + +% The \nocite command adds an entry to the bibliography without +% printing any citation. If the argument is an asterisk (i.e., +% '\nocite{*}'), all entries found in the bib file are added to the +% bibliography. + +No citation here.\nocite{knuth:ct} + +% The \fullcite command prints a verbose citation similar to the +% full bibliography entry. + +\fullcite{companion} + +% \footfullcite is similar to \fullcite, except that the citation is +% put in a footnote. + +This is just filler text.\footfullcite{companion} + +\section*{Low-level commands} + +% The commands in this section grant low-level access to all +% bibliographic data. See the biblatex manual for details about the +% different data types (name lists, literal lists, fields). + +% The \citename command prints a name list. For example, the +% \citeauthor command shown above is similar to the following +% low-level command: + +\citename{companion}{author} + +% The \citelist command is similar to \citename but prints literal +% lists. + +\citelist{companion}{publisher} + +% The \citefield command prints fields. For example, the +% \citetitle* command shown above is similar to the following +% low-level command (except for the formatting): + +\citefield{companion}{title} + +% The list of references is printed by way of \printbibliography. + +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/02-annotations.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/02-annotations.pdf Binary files differnew file mode 100644 index 00000000000..8c324cda899 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/02-annotations.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/02-annotations.tex b/Master/texmf-dist/doc/latex/biblatex/examples/02-annotations.tex new file mode 100644 index 00000000000..485257212a6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/02-annotations.tex @@ -0,0 +1,17 @@ +% +% The example entries in examples.bib feature `annotation' fields +% with some remarks about the respective entry. The sole purpose of +% this file is to print an annotated bibliography which includes +% these fields. +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=reading,abstract=false]{biblatex} +\bibliography{biblatex-examples} +\usepackage{hyperref} +\begin{document} +\nocite{*} +\printbibliography +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/10-references-per-section.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/10-references-per-section.pdf Binary files differnew file mode 100644 index 00000000000..7db51fff285 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/10-references-per-section.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/10-references-per-section.tex b/Master/texmf-dist/doc/latex/biblatex/examples/10-references-per-section.tex new file mode 100644 index 00000000000..27f84b3f245 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/10-references-per-section.tex @@ -0,0 +1,60 @@ +% +% This file demonstrates a setup typically used in a collection of +% articles by different authors, such as a conference proceedings +% volume for example. Each article is presented as a separate +% chapter with its own bibliography. The citation labels are local +% to the `refsection' environments. +% +% Note that 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[american]{babel} +\usepackage{csquotes} +\usepackage[style=numeric]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\defbibheading{bibliography}{% + \section*{\refname}% + \markboth{\MakeUppercase{\refname}}{\MakeUppercase{\refname}}} +\begin{document} + +\chapter{Title of first chapter} +\begin{refsection} +This is just filler text \parencite{massa}. +This is just filler text \parencite{augustine}. +This is just filler text \parencite{cotton}. +This is just filler text \parencite{hammond}. +\printbibliography +\end{refsection} + +\chapter{Title of second chapter} +\begin{refsection} +This is just filler text \parencite{hammond}. +This is just filler text \parencite{massa}. +This is just filler text \parencite{cotton}. +This is just filler text \parencite{murray}. +\printbibliography +\end{refsection} + +\chapter{Title of third chapter} +\begin{refsection} +This is just filler text \parencite{murray}. +This is just filler text \parencite{augustine}. +This is just filler text \parencite{cotton}. +This is just filler text \parencite{bertram}. +\printbibliography +\end{refsection} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/11-references-by-section.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/11-references-by-section.pdf Binary files differnew file mode 100644 index 00000000000..6efd0c0e113 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/11-references-by-section.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/11-references-by-section.tex b/Master/texmf-dist/doc/latex/biblatex/examples/11-references-by-section.tex new file mode 100644 index 00000000000..9d81d7472ef --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/11-references-by-section.tex @@ -0,0 +1,61 @@ +% +% 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. +% +% Note that 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[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear]{biblatex} +\usepackage{hyperref} +\usepackage{nameref} +\bibliography{biblatex-examples} +\defbibheading{bibliography}{% + \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} + +\chapter*{References} +\bibbysection +% +% \bibbysection is a shorthand for: +% +% \printbibliography[section=1] +% \printbibliography[section=2] +% \printbibliography[section=3] +% ... + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/12-references-by-segment.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/12-references-by-segment.pdf Binary files differnew file mode 100644 index 00000000000..2b0223dfa31 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/12-references-by-segment.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/12-references-by-segment.tex b/Master/texmf-dist/doc/latex/biblatex/examples/12-references-by-segment.tex new file mode 100644 index 00000000000..e4ef8511f51 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/12-references-by-segment.tex @@ -0,0 +1,48 @@ +% +% This file differs from the `by section' example in that the +% citation labels are assigned globally. They are not local to the +% `refsegment' environments. +% +\documentclass[a4paper,oneside]{book} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear]{biblatex} +\usepackage{hyperref} +\usepackage{nameref} +\bibliography{biblatex-examples} +\defbibheading{bibliography}{% + \section*{% + Chapter \therefsegment: + \nameref{refsegment:\therefsegment}}} +\begin{document} + +\chapter{Title of first chapter} +\begin{refsegment} +This is just filler text \parencite{westfahl:space}. +This is just filler text \parencite{nietzsche:ksa}. +\end{refsegment} + +\chapter{Title of second chapter} +\begin{refsegment} +This is just filler text \parencite{nietzsche:historie}. +This is just filler text \parencite{westfahl:frontier}. +\end{refsegment} + +\chapter{Title of third chapter} +\begin{refsegment} +This is just filler text \parencite{aristotle:anima}. +This is just filler text \parencite{averroes/bland}. +\end{refsegment} + +\chapter*{References} +\bibbysegment +% +% \bibbysegment is a shorthand for: +% +% \printbibliography[segment=1] +% \printbibliography[segment=2] +% \printbibliography[segment=3] +% ... + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/13-references-by-keyword.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/13-references-by-keyword.pdf Binary files differnew file mode 100644 index 00000000000..4e66068bd5e --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/13-references-by-keyword.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/13-references-by-keyword.tex b/Master/texmf-dist/doc/latex/biblatex/examples/13-references-by-keyword.tex new file mode 100644 index 00000000000..aa2b126c9f6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/13-references-by-keyword.tex @@ -0,0 +1,45 @@ +% +% It is common requirement to subdivide a bibliography by certain +% criteria. This example demonstrates how to use keyword filters to +% subdivide the list of references into primary and secondary +% sources. +% +% The keyword filter depends on the `keywords' fields in the bib +% file. The entries cited in this example look like this: +% +% @Type{key, +% keywords = {primary}, +% ... +% } +% +% @Type{key, +% keywords = {secondary}, +% ... +% } +% +\documentclass[a4paper,oneside]{book} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\defbibheading{primary}{\section*{Primary Sources}} +\defbibheading{secondary}{\section*{Secondary Sources}} +\begin{document} + +\chapter{References by keyword} + +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{nussbaum} +This is just filler text.\footcite{averroes/bland} +This is just filler text.\footcite{hyman} +This is just filler text.\footcite{aristotle:physics} +This is just filler text.\footcite{moraux} +This is just filler text.\footcite{pines} + +\chapter*{Bibliography} +\printbibliography[heading=primary,keyword=primary] +\printbibliography[heading=secondary,keyword=secondary] + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/14-references-by-category.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/14-references-by-category.pdf Binary files differnew file mode 100644 index 00000000000..aa4885580dc --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/14-references-by-category.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/14-references-by-category.tex b/Master/texmf-dist/doc/latex/biblatex/examples/14-references-by-category.tex new file mode 100644 index 00000000000..c2ffbf9c96e --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/14-references-by-category.tex @@ -0,0 +1,45 @@ +% +% This example will yield the same output as the `keywords' example +% but the approach is different. Instead of adding the filter +% criteria to the bib file, we assign keys to categories in the +% document preamble and use `category' filters to create a +% subdivided bibliography. +% +\documentclass[a4paper,oneside]{book} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\DeclareBibliographyCategory{primary} +\DeclareBibliographyCategory{secondary} +\addtocategory{primary}{aristotle:anima,aristotle:physics,averroes/bland} +\addtocategory{secondary}{hyman,moraux,nussbaum,pines} +\defbibheading{primary}{\section*{Primary Sources}} +\defbibheading{secondary}{\section*{Secondary Sources}} +\begin{document} + +\chapter{References by category} + +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{nussbaum} +This is just filler text.\footcite{averroes/bland} +This is just filler text.\footcite{hyman} +This is just filler text.\footcite{aristotle:physics} +This is just filler text.\footcite{moraux} +This is just filler text.\footcite{pines} + +\chapter*{Bibliography} +\bibbycategory +% +% \bibbycategory processes the categories in the order in which they +% were declared. Note that the category name also serves as a heading +% identifier, i.e. you need to define a matching heading for every +% category. In this document, \bibbycategory is a shorthand for: +% +% \printbibliography[heading=primary,category=primary] +% \printbibliography[heading=secondary,category=secondary] +% ... + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/15-references-by-type.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/15-references-by-type.pdf Binary files differnew file mode 100644 index 00000000000..8e6e3dbc49f --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/15-references-by-type.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/15-references-by-type.tex b/Master/texmf-dist/doc/latex/biblatex/examples/15-references-by-type.tex new file mode 100644 index 00000000000..641765d61f0 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/15-references-by-type.tex @@ -0,0 +1,27 @@ +% +% This example demonstrates how to subdivide a bibliography by type, +% using `type' filters. +% +\documentclass[a4paper,oneside]{book} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\defbibheading{printed}{\section*{Printed Sources}} +\defbibheading{online}{\section*{Online Sources}} +\begin{document} + +\chapter{References by type} + +This is just filler text \parencite{knuth:ct:a}. +This is just filler text \parencite{ctan}. +This is just filler text \parencite{companion}. +This is just filler text \parencite{markey}. + +\chapter*{Bibliography} +\printbibliography[heading=printed,nottype=online] +\printbibliography[heading=online,type=online] + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/20-indexing-basic.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/20-indexing-basic.pdf Binary files differnew file mode 100644 index 00000000000..a42b408c438 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/20-indexing-basic.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/20-indexing-basic.tex b/Master/texmf-dist/doc/latex/biblatex/examples/20-indexing-basic.tex new file mode 100644 index 00000000000..e71809385a4 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/20-indexing-basic.tex @@ -0,0 +1,74 @@ +% +% This file demonstrates indexing with the `makeidx' package. +% This file is processed as follows: +% +% latex file +% bibtex file +% latex file +% makeindex file +% latex file +% +% Note that the file name suffix may be omitted. It's `latex file' +% and not `latex file.tex'. +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +% +% We set the `indexing' package option (`indexing' is similar to +% `indexing=true') to enable indexing in both citations and the +% bibliography. It is rather unusual to add bibliography entries to +% the index so you will normally use `indexing=cite' instead. The +% only reason we're indexing the bibliography in this example is to +% get a larger index. For a change, let's also use the `authortitle' +% style in this example. +\usepackage[indexing,style=authortitle]{biblatex} +\bibliography{biblatex-examples} +% +% The `makeidx' package provides indexing facilities on a fairly +% basic level. It is highly advisable to use the `index' package +% instead, even if you do not need the additional facilities +% provided by this package, such as multiple indexes. The reason is +% that the \index command defined by this package is more robust +% than the basic command provided by `makeidx'. +\usepackage{makeidx} +% We need to enable indexing globally by way of \makeindex. +% Otherwise, no index is created at all, regardless of the +% `indexing' option of biblatex. +\makeindex +% +% Note that biblatex uses makeindex's `actual' operator to pass the +% `indexsorttitle' field to makeindex. The default character used +% is '@'. If the makeindex style uses a different character, i.e., +% if the .ist file contains a line like this +% +% actual '=' +% +% you need to redefine \actualoperator accordingly: +% +% \renewcommand*{\actualoperator}{=} +% +\begin{document} + +\section*{Indexing with the \texttt{makeidx} package} + +% We add the contents of the entire bib file to the bibliography. +% Note that \nocite does not add anything to the index on its own. +\nocite{*} + +% We cite a few items. These citations will be added to the index. +\cite{piccato,gaonkar,malinowski,coleridge,gerhardt,cicero} + +% We also add an explicit index entry. +\index{Example entry} + +\clearpage + +% We print the printbibliography... +\printbibliography +% ...and the index +\raggedright +\printindex + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/21-indexing-advanced.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/21-indexing-advanced.pdf Binary files differnew file mode 100644 index 00000000000..fde6f177312 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/21-indexing-advanced.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/21-indexing-advanced.tex b/Master/texmf-dist/doc/latex/biblatex/examples/21-indexing-advanced.tex new file mode 100644 index 00000000000..e0ad13a4b99 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/21-indexing-advanced.tex @@ -0,0 +1,142 @@ +% +% This file demonstrates indexing with the `index' package. +% This file is processed as follows: +% +% latex file +% bibtex file +% latex file +% makeindex -o file.ind -t file.ilg file.idx (= makeindex file) +% makeindex -o file.nnd -t file.nlg file.ndx +% makeindex -o file.tnd -t file.tlg file.tdx +% latex file +% +% Note that the file name suffix may be omitted. It's `latex file' +% and not `latex file.tex'. Also note that `-t <file>' is optional. +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +% +% We set the `indexing' package option and use the `authortitle' +% style in this example. +\usepackage[indexing,style=authortitle,babel=hyphen]{biblatex} +\bibliography{biblatex-examples} +% +% The `index' package provides advanced indexing facilities with +% support for multiple indexes. +\usepackage{index} +% +% We want three indexes: a general index, an index of names, and an +% index of titles. They are defined by way of \newindex, see the +% documentation of the `index' package for details. +\newindex{default}{idx}{ind}{General Index} +\newindex{names}{ndx}{nnd}{Index of Names} +\newindex{titles}{tdx}{tnd}{Index of Titles} +% +% We need to redefine some index formatting directives such that +% biblatex adds names and titles to separate indexes. All names +% should go to the name index, hence we simply redefine the default +% index formatting directive for names. The default definition, +% which is found in biblatex.def, looks like this: +% +% \DeclareIndexNameFormat{default}{% +% \usebibmacro{index:name}{\index}{#1}{#3}{#5}{#7}% +% } +% +% As you can see, the data is simply passed on to a `bibmacro' which +% takes care of the formatting of the name. The definition of the +% bibmacro, which is also found in biblatex.def, is not relevant in +% our example because all we want to do is change or rather extend +% the \index command, which happens to be the first argument of the +% 'index:name' bibmacro. +% +\DeclareIndexNameFormat{default}{% + \usebibmacro{index:name}{\index[names]}{#1}{#3}{#5}{#7}% +} +% +% Titles are handled in a similar way. The formatting directive we +% need to modify is `indextitle'. It's default definition looks like +% this: +% +% \DeclareIndexFieldFormat{indextitle}{% +% \usebibmacro{index:title}{\index}{#1}% +% } +% +% We modify it such that the \index command writes to the index of +% titles: +% +\DeclareIndexFieldFormat{indextitle}{% + \usebibmacro{index:title}{\index[titles]}{#1}% +} +% +% That's it as far as splitting the index is concerned. Let's have a +% look at some other facilities you may want to customize. By +% default, biblatex will index the author or editor and the title of +% all references. This behavior may be modified as desired. The +% indexing facilities are not hard-coded. All standard styles which +% ship with this package call two `bibmacros' which handle the +% indexing. These macros are called `citeindex' and `bibindex', both +% of which are defined in biblatex.def. The former handles indexing +% in citations, the latter in the bibliography. Their default +% definitions are as follows: +% +% \newbibmacro*{citeindex}{% +% \ifciteindex +% {\indexnames{labelname}% +% \indexfield{indextitle}} +% {}} +% +% \newbibmacro*{bibindex}{% +% \ifbibindex +% {\indexnames{labelname}% +% \indexfield{indextitle}} +% {}} +% +% The `labelname' field is a copy of the `author' field, if there is +% an author, or a copy of the `editor' field otherwise. `indextitle' +% is the `indextitle' field, if defined in the bib file, or a copy +% of the `title' field otherwise. +% +% The mechanism works like this: the \indexnames and \indexfield +% fields tell biblatex which data to add to the index, the indexing +% directives tell it how to index the data. +% +% The default settings should be fine in most cases. As an example, +% we will modify them here such that author, editors, translators, +% and commentators in the bibliography are indexed: +% +\renewbibmacro*{bibindex}{% + \ifbibindex + {\indexnames{author}% + \indexnames{editor}% + \indexnames{translator}% + \indexnames{commentator}% + \indexfield{indextitle}} + {}} +% +\begin{document} + +\section*{Indexing with the \texttt{index} package} + +% We add the contents of the entire bib file to the bibliography. +% Note that \nocite does not add anything to the index on its own. +\nocite{*} + +% We cite a few items. These citations will be added to the index. +\cite{piccato,gaonkar,malinowski,coleridge,gerhardt,cicero} + +% We also add an explicit index entry. +\index{Example entry} + +\clearpage + +% We print the printbibliography... +\printbibliography +% ...and the indexes +\raggedright +\printindex % the general index +\printindex[names] % the name index +\printindex[titles] % the title index + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/30-style-numeric.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/30-style-numeric.pdf Binary files differnew file mode 100644 index 00000000000..96688eb65b1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/30-style-numeric.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/30-style-numeric.tex b/Master/texmf-dist/doc/latex/biblatex/examples/30-style-numeric.tex new file mode 100644 index 00000000000..952b45c0d5d --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/30-style-numeric.tex @@ -0,0 +1,102 @@ +% +% This file presents the `numeric' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=numeric,subentry]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{numeric} style} + +This style prints numeric citations in square brackets. It is +similar to the standard bibliographic facilities provided by LaTeX +and to the \texttt{plain.bst} style of legacy BibTeX. + +\subsection*{\cmd{cite} examples} + +\cite{companion} + +\cite[59]{companion} + +\cite[See][]{companion} + +\cite[See][59--63]{companion} + +\subsection*{\cmd{parencite} examples} + +% With the numeric 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} + +% The \textcite command is intended for citations integrated in the +% flow of text, replacing the subject of the sentence. + +\textcite{companion} show that this is just filler text. + +\textcite[59]{companion} show that this is just filler text. + +\textcite[See][]{companion} for more filler text. + +\textcite[See][59--63]{companion} for more filler text. + +\subsection*{\cmd{supercite} examples} + +This is just filler text.\supercite{companion} + +\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} + +\subsection*{Reference sets} + +% Reference sets are cited like any other item: + +\cite{set,hammond,stdmodel,massa,murray} + +% Note that this style provides a package option called `subentry' +% which affects the handling of citations referring to members of +% a reference set. If this option is enabled, such citations get an +% extra letter which identifies the member (it is also printed in +% the bibliography): + +\cite{stdmodel:glashow,set:yoon,stdmodel:salam,set:aksin} + +% Note that this options is disabled by default but has been enabled +% in this example. If disabled, citations referring to a set member +% will point to the set, i.e., the above citations would be similar +% to this one: + +\cite{set,stdmodel} + +% The list of references + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/31-style-numeric-comp.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/31-style-numeric-comp.pdf Binary files differnew file mode 100644 index 00000000000..3dc877af397 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/31-style-numeric-comp.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/31-style-numeric-comp.tex b/Master/texmf-dist/doc/latex/biblatex/examples/31-style-numeric-comp.tex new file mode 100644 index 00000000000..2cc840d8640 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/31-style-numeric-comp.tex @@ -0,0 +1,51 @@ +% +% This file presents the 'numeric-comp' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=numeric-comp,subentry]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{numeric-comp} style} + +This style is similar to \texttt{numeric} except that a list of +multiple citations is sorted and any sequence of more than two +consecutive numbers is formatted as a range. This style will +implicitly enable the \texttt{sortcites} package option at load +time. + +\subsection*{Multiple citations} + +\cite{bertram,augustine} + +\cite{murray,bertram,augustine,companion,cotton} + +\cite{augustine,bertram,cotton,hammond,set,massa,murray} + +\cite{bertram,companion,cotton,augustine,massa,set,hammond,murray,stdmodel} + +\cite{set:yoon,stdmodel:weinberg,set:herrmann} + +\subsection*{Multiple citations with \cmd{supercite}} + +This is just filler text.\supercite{bertram,augustine} + +This is just filler text.\supercite{murray,bertram,augustine,companion,cotton} + +This is just filler text.\supercite{augustine,bertram,cotton,hammond,set,massa,murray} + +This is just filler text.\supercite{bertram,companion,cotton,augustine,massa,set,hammond,murray,stdmodel} + +This is just filler text.\supercite{set:yoon,stdmodel:weinberg,set:herrmann} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/32-style-numeric-verb.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/32-style-numeric-verb.pdf Binary files differnew file mode 100644 index 00000000000..61e369a7cda --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/32-style-numeric-verb.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/32-style-numeric-verb.tex b/Master/texmf-dist/doc/latex/biblatex/examples/32-style-numeric-verb.tex new file mode 100644 index 00000000000..40cd978f5e8 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/32-style-numeric-verb.tex @@ -0,0 +1,36 @@ +% +% This file presents the 'numeric-verb' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=numeric-verb,subentry]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{numeric-verb} style} + +This style is similar to \texttt{numeric} except that a list of +multiple citations is printed in a slightly more verbose format. + +\subsection*{Multiple citations} + +\cite{hammond,massa,augustine,cotton,set,murray,bertram,stdmodel} + +\cite{set:yoon,stdmodel:salam,set:herrmann} + +\subsection*{Multiple citations with \cmd{supercite}} + +This is just filler text.\supercite{hammond,massa,augustine,cotton,set,murray,bertram,stdmodel} + +This is just filler text.\supercite{set:yoon,stdmodel:salam,set:herrmann} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/40-style-alphabetic.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/40-style-alphabetic.pdf Binary files differnew file mode 100644 index 00000000000..e87754e2a92 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/40-style-alphabetic.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/40-style-alphabetic.tex b/Master/texmf-dist/doc/latex/biblatex/examples/40-style-alphabetic.tex new file mode 100644 index 00000000000..796731a8ac3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/40-style-alphabetic.tex @@ -0,0 +1,76 @@ +% +% This file presents the `alphabetic' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=alphabetic]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% 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} for more filler text. + +\textcite[See][59--63]{companion} for more 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 + +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/41-style-alphabetic-verb.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/41-style-alphabetic-verb.pdf Binary files differnew file mode 100644 index 00000000000..b758244fdb2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/41-style-alphabetic-verb.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/41-style-alphabetic-verb.tex b/Master/texmf-dist/doc/latex/biblatex/examples/41-style-alphabetic-verb.tex new file mode 100644 index 00000000000..5b6996144fa --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/41-style-alphabetic-verb.tex @@ -0,0 +1,28 @@ +% +% This file presents the 'alphabetic-verb' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=alphabetic-verb]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{alphabetic-verb} style} + +This style is similar to \texttt{alphabetic} except that a list of +multiple citations is printed in a slightly more verbose format. + +\subsection*{Multiple citations} + +\cite{hammond,massa,augustine,cotton,murray,bertram} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/50-style-authoryear.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/50-style-authoryear.pdf Binary files differnew file mode 100644 index 00000000000..eb51341c9a7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/50-style-authoryear.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/50-style-authoryear.tex b/Master/texmf-dist/doc/latex/biblatex/examples/50-style-authoryear.tex new file mode 100644 index 00000000000..398324ad439 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/50-style-authoryear.tex @@ -0,0 +1,121 @@ +% +% This file presents the `authoryear' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\setlength{\parindent}{0pt} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authoryear} style} + +This style implements the author-year citation scheme. + +\subsection*{Additional package options} + +\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*{\cmd{cite} examples} + +\cite{companion} + +\cite[59]{companion} + +\cite[See][]{companion} + +\cite[See][59--63]{companion} + +\subsection*{\cmd{parencite} examples} + +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{parencite*} examples} + +\citeauthor{companion} show that this is just filler +text \parencite*{companion}. + +\subsection*{\cmd{footcite} examples} + +% Even though the author-year scheme is usually employed in +% conjuntion with in-text citations, it works just fine in +% footnotes, too. + +This is just filler text.\footcite{companion} + +This is just filler text.\footcite[59]{companion} + +This is just filler text.\footcite[See][]{companion} + +This is just filler text.\footcite[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} for more filler text. + +\textcite[See][59--63]{companion} for more filler text. + +\subsection*{\cmd{autocite} examples} + +% By default, the \autocite command works like \parencite. +% The starred version works like \parencite*. + +This is just filler text \autocite{companion}. + +\citeauthor{companion} show that 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{knuth:ct:c,aristotle:physics,knuth:ct:b,aristotle:poetics,aristotle:rhetoric,knuth:ct:d} + +\subsection*{Shorthand examples} + +% If an entry in the bib file includes a `shorthand' field, the +% shorthand replaces the regular author-title citation. + +\cite{kant:kpv,kant:ku} + +\clearpage + +% The list of shorthands. + +\printshorthands + +% The list of references. Note that the year is printed after the +% author or editor and that recurring author and editor names are +% replaced by a dash unless the entry is the first one on the +% current page or double page spread (depending on the setting of +% the `pagetracker' package option). This style will implicitly set +% `pagetracker=spread' at load time. + +\nocite{*} +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/51-style-authoryear-ibid.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/51-style-authoryear-ibid.pdf Binary files differnew file mode 100644 index 00000000000..eed8fce77e3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/51-style-authoryear-ibid.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/51-style-authoryear-ibid.tex b/Master/texmf-dist/doc/latex/biblatex/examples/51-style-authoryear-ibid.tex new file mode 100644 index 00000000000..27194cab9a8 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/51-style-authoryear-ibid.tex @@ -0,0 +1,71 @@ +% +% This file presents the `authoryear-ibid' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear-ibid]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authoryear-ibid} style} + +This citation style is a variant of the \texttt{authoryear} style. +Immediately repeated citations are replaced by the abbreviation +`ibidem' unless the citation is the first one on the current page or +double page spread (depending on the setting of the +\texttt{pagetracker} package option). 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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\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{companion} +% Immediately repeated citations are replaced by the +% abbreviation `ibidem'... +This is just filler text.\footcite{companion} +\clearpage +% ... unless the citation is the first one on the current page +% or double page spread (depending on the setting of the +% `pagetracker' package option). +This is just filler text.\footcite[55]{companion} +This is just filler text.\footcite[55]{companion} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/52-style-authoryear-comp.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/52-style-authoryear-comp.pdf Binary files differnew file mode 100644 index 00000000000..03b297a453f --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/52-style-authoryear-comp.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/52-style-authoryear-comp.tex b/Master/texmf-dist/doc/latex/biblatex/examples/52-style-authoryear-comp.tex new file mode 100644 index 00000000000..020f96eb1c3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/52-style-authoryear-comp.tex @@ -0,0 +1,43 @@ +% +% This file presents the 'authoryear-comp' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear-comp]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authoryear-comp} style} + +This style is a compact version of the \texttt{authoryear} style +which prints the author only once if subsequent references passed to +a single citation command share the same author. If they share the +same year as well, the year is also printed only once. This style +will implicitly enable the \texttt{sortcites} package option at load +time. + +\subsection*{Additional package options} + +\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*{Multiple citations} + +\cite{knuth:ct:c,aristotle:physics,knuth:ct:b,aristotle:poetics,aristotle:rhetoric,knuth:ct:d} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/53-style-authoryear-icomp.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/53-style-authoryear-icomp.pdf Binary files differnew file mode 100644 index 00000000000..e18152bb0f1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/53-style-authoryear-icomp.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/53-style-authoryear-icomp.tex b/Master/texmf-dist/doc/latex/biblatex/examples/53-style-authoryear-icomp.tex new file mode 100644 index 00000000000..add935eb6c0 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/53-style-authoryear-icomp.tex @@ -0,0 +1,66 @@ +% +% This file presents the 'authoryear-icomp' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authoryear-icomp]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authoryear-icomp} style} + +This style combines the features of \texttt{authoryear-ibid} and +\texttt{authoryear-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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\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:physics,aristotle:poetics,aristotle:rhetoric,} +This is just filler text.\footcite{companion} +This is just filler text.\footcite{companion} +\clearpage +This is just filler text.\footcite{knuth:ct:c,knuth:ct:b,knuth:ct:d} +This is just filler text.\footcite[55]{companion} +This is just filler text.\footcite[55]{companion} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/60-style-authortitle.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/60-style-authortitle.pdf Binary files differnew file mode 100644 index 00000000000..658c1633120 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/60-style-authortitle.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/60-style-authortitle.tex b/Master/texmf-dist/doc/latex/biblatex/examples/60-style-authortitle.tex new file mode 100644 index 00000000000..6d318441702 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/60-style-authortitle.tex @@ -0,0 +1,124 @@ +% +% This file presents the `authortitle' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authortitle} style} + +This style prints author-title citations. If an entry in the +database file includes a \texttt{shorttitle} field, the short +title is used instead of the \texttt{title} field. + +\subsection*{Additional package options} + +\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*{\cmd{cite} examples} + +\cite{aristotle:rhetoric} + +\cite[59]{aristotle:rhetoric} + +\cite[See][]{aristotle:rhetoric} + +\cite[See][59--63]{aristotle:rhetoric} + +\subsection*{\cmd{parencite} examples} + +This is just filler text \parencite{aristotle:rhetoric}. + +This is just filler text \parencite[59]{aristotle:rhetoric}. + +This is just filler text \parencite[See][]{aristotle:rhetoric}. + +This is just filler text \parencite[See][59--63]{aristotle:rhetoric}. + +\subsection*{\cmd{parencite*} examples} + +\citeauthor{aristotle:rhetoric} shows that this is just filler +text \parencite*{aristotle:rhetoric}. + +\citeauthor{aristotle:rhetoric} shows that this is just filler +text \parencite*[59]{aristotle:rhetoric}. + +\citeauthor{aristotle:rhetoric} shows that this is just filler +text \parencite*[See][]{aristotle:rhetoric}. + +\citeauthor{aristotle:rhetoric} shows that this is just filler +text \parencite*[See][59--63]{aristotle:rhetoric}. + +\subsection*{\cmd{footcite} examples} + +This is just filler text.\footcite{aristotle:rhetoric} + +This is just filler text.\footcite[59]{aristotle:rhetoric} + +This is just filler text.\footcite[See][]{aristotle:rhetoric} + +This is just filler text.\footcite[See][59--63]{aristotle:rhetoric} + +\subsection*{\cmd{textcite} examples} + +\textcite{aristotle:rhetoric} shows that this is just filler text. + +\textcite[59]{aristotle:rhetoric} shows that this is just filler text. + +\textcite[See][]{aristotle:rhetoric} for more filler text. + +\textcite[See][59--63]{aristotle:rhetoric} for more filler text. + +\subsection*{\cmd{autocite} examples} + +% By default, the \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. + +\subsection*{Multiple citations} + +% By default, a list of multiple citations is not sorted. You can +% enable sorting by setting the `sortcites' package option. + +\cite{aristotle:rhetoric,aristotle:physics,aristotle:poetics} + +\subsection*{Shorthand examples} + +% If an entry in the bib file includes a `shorthand' field, the +% shorthand replaces the regular author-title citation. + +\cite{kant:kpv,kant:ku} + +\clearpage + +% The list of shorthands. + +\printshorthands + +% The list of references. Note that the year is printed after the +% author or editor and that recurring author and editor names are +% replaced by a dash unless the entry is the first one on the +% current page or double page spread (depending on the setting of +% the `pagetracker' package option). This style will implicitly set +% `pagetracker=true' at load time. + +\nocite{*} +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/61-style-authortitle-ibid.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/61-style-authortitle-ibid.pdf Binary files differnew file mode 100644 index 00000000000..718fc1f137e --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/61-style-authortitle-ibid.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/61-style-authortitle-ibid.tex b/Master/texmf-dist/doc/latex/biblatex/examples/61-style-authortitle-ibid.tex new file mode 100644 index 00000000000..f544c93afa2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/61-style-authortitle-ibid.tex @@ -0,0 +1,71 @@ +% +% This file presents the `authortitle-ibid' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle-ibid]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authortitle-ibid} style} + +This citation style is a variant of the \texttt{authortitle} style. +Immediately repeated citations are replaced by the abbreviation +`ibidem' unless the citation is the first one on the current page or +double page spread (depending on the setting of the +\texttt{pagetracker} package option). 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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\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} +% Immediately repeated citations are replaced by the +% abbreviation `ibidem'... +This is just filler text.\footcite{aristotle:rhetoric} +\clearpage +% ... unless the citation is the first one on the current page +% or double page spread (depending on the setting of the +% `pagetracker' package option). +This is just filler text.\footcite[55]{aristotle:rhetoric} +This is just filler text.\footcite[55]{aristotle:rhetoric} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/62-style-authortitle-comp.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/62-style-authortitle-comp.pdf Binary files differnew file mode 100644 index 00000000000..06feade74f4 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/62-style-authortitle-comp.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/62-style-authortitle-comp.tex b/Master/texmf-dist/doc/latex/biblatex/examples/62-style-authortitle-comp.tex new file mode 100644 index 00000000000..ebe89a27e90 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/62-style-authortitle-comp.tex @@ -0,0 +1,42 @@ +% +% This file presents the 'authortitle-comp' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle-comp]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authortitle-comp} style} + +This style is a compact version of the \texttt{authortitle} style +which prints the author only once if subsequent references passed to +a single citation command share the same author. This style will +implicitly enable the \texttt{sortcites} package option at load +time. + +\subsection*{Additional package options} + +\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*{Multiple citations} + +\cite{aristotle:rhetoric,averroes/bland,aristotle:physics,aristotle:poetics} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/63-style-authortitle-icomp.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/63-style-authortitle-icomp.pdf Binary files differnew file mode 100644 index 00000000000..17dccaba006 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/63-style-authortitle-icomp.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/63-style-authortitle-icomp.tex b/Master/texmf-dist/doc/latex/biblatex/examples/63-style-authortitle-icomp.tex new file mode 100644 index 00000000000..6078a9d589a --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/63-style-authortitle-icomp.tex @@ -0,0 +1,62 @@ +% +% This file presents the `authortitle-icomp' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle-icomp]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% 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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\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} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/64-style-authortitle-terse.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/64-style-authortitle-terse.pdf Binary files differnew file mode 100644 index 00000000000..102d728335b --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/64-style-authortitle-terse.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/64-style-authortitle-terse.tex b/Master/texmf-dist/doc/latex/biblatex/examples/64-style-authortitle-terse.tex new file mode 100644 index 00000000000..cf21d5c963a --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/64-style-authortitle-terse.tex @@ -0,0 +1,88 @@ +% +% This file presents the `authortitle-terse' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle-terse]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authortitle-terse} style} + +This style implements a terse author-title citation scheme suitable +for both in-text citations and citations given in footnotes. It +differs form the regular \texttt{authortitle} style in that the +title is only printed if the bibliography contains more than one +work by the respective author or editor. + +\subsection*{Additional package options} + +\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*{\cmd{cite} examples} + +\cite{averroes/bland} + +\cite{aristotle:physics} + +\cite{aristotle:rhetoric} + +\subsection*{\cmd{parencite} examples} + +This is just filler text \parencite{averroes/bland}. + +This is just filler text \parencite{aristotle:rhetoric}. + +\subsection*{\cmd{parencite*} examples} + +\citeauthor{aristotle:rhetoric} shows that this is just filler +text \parencite*{aristotle:rhetoric}. + +\subsection*{\cmd{footcite} examples} + +This is just filler text.\footcite{aristotle:rhetoric} + +\subsection*{\cmd{textcite} examples} + +\textcite{aristotle:rhetoric} shows that this is just filler text. + +\textcite[59]{aristotle:rhetoric} shows that this is just filler text. + +\textcite[See][]{aristotle:rhetoric} for more filler text. + +\textcite[See][59--63]{aristotle:rhetoric} for more filler text. + +\subsection*{\cmd{autocite} examples} + +% By default, the \autocite command works like \parencite. +% The starred version works like \parencite*. + +This is just filler text \autocite{aristotle:rhetoric}. + +\citeauthor{aristotle:rhetoric} shows that this is just filler +text \autocite*{aristotle:rhetoric}. + +\subsection*{Multiple citations} + +% By default, a list of multiple citations is not sorted. You can +% enable sorting by setting the `sortcites' package option. + +\cite{aristotle:rhetoric,averroes/bland,aristotle:physics,aristotle:poetics} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/65-style-authortitle-tcomp.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/65-style-authortitle-tcomp.pdf Binary files differnew file mode 100644 index 00000000000..f0b75f41139 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/65-style-authortitle-tcomp.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/65-style-authortitle-tcomp.tex b/Master/texmf-dist/doc/latex/biblatex/examples/65-style-authortitle-tcomp.tex new file mode 100644 index 00000000000..27f676bbd8a --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/65-style-authortitle-tcomp.tex @@ -0,0 +1,48 @@ +% +% This file presents the `authortitle-tcomp' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=authortitle-tcomp]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings. +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{authortitle-tcomp} style} + +This style essentially combines \texttt{authortitle-terse} and +\texttt{authortitle-comp}. It will implicitly enable the +\texttt{sortcites} package option at load time. + +\subsection*{Additional package options} + +\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*{\cmd{cite} examples} + +\cite{averroes/bland} + +\cite{aristotle:physics} + +\cite{aristotle:rhetoric} + +\subsection*{Multiple citations} + +\cite{aristotle:rhetoric,averroes/bland,aristotle:physics,aristotle:poetics} + +\clearpage +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/70-style-verbose.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/70-style-verbose.pdf Binary files differnew file mode 100644 index 00000000000..87b1aed8b0e --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/70-style-verbose.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/70-style-verbose.tex b/Master/texmf-dist/doc/latex/biblatex/examples/70-style-verbose.tex new file mode 100644 index 00000000000..e6b82460688 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/70-style-verbose.tex @@ -0,0 +1,74 @@ +% +% This file presents the `verbose' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\begin{document} + +\section*{The \texttt{verbose} style} + +This citation style prints a verbose citation similar to the full +bibliography entry when an item is cited for the first time. All +subsequent citations will then use a shorter author-title format. +This style is intended for citations given in footnotes. + +\subsection*{Additional package options} + +\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*{\cmd{footcite} examples} + +% The initial citation of an entry includes all the data. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +% Subsequent citations use a more compact format. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} + +\clearpage + +% If the `shorthand' field is defined, the shorthand is introduced +% on the first citation. +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +% All subsequent citations will then use the shorthand. +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{averroes/bland}. +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:physics}. +This is just filler text \autocite{aristotle:physics}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/71-style-verbose-ibid.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/71-style-verbose-ibid.pdf Binary files differnew file mode 100644 index 00000000000..99414a5be27 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/71-style-verbose-ibid.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/71-style-verbose-ibid.tex b/Master/texmf-dist/doc/latex/biblatex/examples/71-style-verbose-ibid.tex new file mode 100644 index 00000000000..d716f60ee2a --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/71-style-verbose-ibid.tex @@ -0,0 +1,104 @@ +% +% This file presents the `verbose-ibid' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose-ibid]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\begin{document} + +\section*{The \texttt{verbose-ibid} style} + +This citation style is a slightly more compact variant of the +\texttt{verbose} style. Immediately repeated citations are replaced +by the abbreviation `ibidem' unless the citation is the first one on +the current page or double page spread (depending on the setting of +the \texttt{pagetracker} package option). This style is also +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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\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} + +% The initial citation of an entry includes all the data. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +% Subsequent citations use a more compact format. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +% Immediately repeated citations are replaced by the +% abbreviation `ibidem'... +This is just filler text.\footcite{aristotle:physics} +\clearpage +% ... unless the citation is the first one on the current page +% or double page spread (depending on the setting of the +% `pagetracker' package option). +This is just filler text.\footcite{aristotle:physics} +This is just filler text.\footcite{aristotle:physics} + +\clearpage + +% If the `shorthand' field is defined, the shorthand is introduced +% on the first citation. +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +% All subsequent citations will then use the shorthand. +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{averroes/bland}. +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:physics}. +This is just filler text \autocite{aristotle:physics}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/72-style-verbose-note.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/72-style-verbose-note.pdf Binary files differnew file mode 100644 index 00000000000..f185fc5976f --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/72-style-verbose-note.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/72-style-verbose-note.tex b/Master/texmf-dist/doc/latex/biblatex/examples/72-style-verbose-note.tex new file mode 100644 index 00000000000..6e9797fd6c9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/72-style-verbose-note.tex @@ -0,0 +1,90 @@ +% +% This file presents the `verbose-note' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose-note]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\begin{document} + +\section*{The \texttt{verbose-note} style} + +This citation style is similar to \texttt{verbose} in that it prints +a verbose citation similar to the full bibliography entry when an +item is cited for the first time. All subsequent citations are +pointers to the footnote containing the verbose citation. This style +is exclusively intended for citations given in footnotes. + +\subsection*{Additional package options} + +\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}. + +\subsubsection*{The \texttt{pageref} option} + +By default, this style does not add a page reference to the footnote +pointers, i.e., they are rendered as `see note~3'. If you want such +references to be rendered as `see note~3, page~5' instead, set the +package option \texttt{pageref=true} or simply \texttt{pageref} in +the preamble. This will add the page number to the footnote pointer +whenever the footnote the pointer refers to is located on a +different page or page spread (depending on the setting of the +\texttt{pagetracker} option). The default setting is +\texttt{pageref=false}. + +\subsection*{\cmd{footcite} examples} + +% The initial citation of an entry includes all the data. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +This is just filler text \footcite{averroes/bland}. +% Subsequent citations are pointers to the initial citation. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +% If there is only one work by an author in the bibliography, the +% title is omitted from the pointer. +This is just filler text \footcite{averroes/bland}. + +\clearpage + +% If the `shorthand' field is defined, the shorthand is introduced +% on the first citation. +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +% All subsequent citations will then use the shorthand. +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:physics}. +This is just filler text \autocite{averroes/bland}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/73-style-verbose-inote.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/73-style-verbose-inote.pdf Binary files differnew file mode 100644 index 00000000000..882357be53b --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/73-style-verbose-inote.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/73-style-verbose-inote.tex b/Master/texmf-dist/doc/latex/biblatex/examples/73-style-verbose-inote.tex new file mode 100644 index 00000000000..3f4cc7123cd --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/73-style-verbose-inote.tex @@ -0,0 +1,127 @@ +% +% This file presents the 'verbose-inote' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose-inote]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\begin{document} + +\section*{The \texttt{verbose-inote} style} + +This citation style is a slightly more compact variant of the +\texttt{verbose-note} style. Immediately repeated citations are +replaced by the abbreviation `ibidem' unless the citation is the +first one on the current page or double page spread. This style is +exclusively 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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\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}. + +\subsubsection*{The \texttt{pageref} option} + +By default, this style does not add a page reference to the footnote +pointers, i.e., they are rendered as `see note~3'. If you want such +references to be rendered as `see note~3, page~5' instead, set the +package option \texttt{pageref=true} or simply \texttt{pageref} in +the preamble. This will add the page number to the footnote pointer +whenever the footnote the pointer refers to is located on a +different page or page spread (depending on the setting of the +\texttt{pagetracker} option). The default setting is +\texttt{pageref=false}. + +\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} + +% The initial citation of an entry includes all the data. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +This is just filler text \footcite{averroes/bland}. +% Subsequent citations are pointers to the initial citation. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +% If there is only one work by an author in the bibliography, the +% title is omitted from the pointer. +This is just filler text \footcite{averroes/bland}. + +\clearpage + +% Immediately repeated citations are replaced by the +% abbreviation `ibidem'... +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{aristotle:physics} +This is just filler text.\footcite{aristotle:physics} +\clearpage +% ... unless the citation is the first one on the current page +% or double page spread (depending on the setting of the +% `pagetracker' package option). +This is just filler text.\footcite{aristotle:physics} +This is just filler text.\footcite{aristotle:physics} + +\clearpage + +% If the `shorthand' field is defined, the shorthand is introduced +% on the first citation. +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +% All subsequent citations will then use the shorthand instead of +% a reference to a previous footnote. +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{averroes/bland}. +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:physics}. +This is just filler text \autocite{aristotle:physics}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/74-style-verbose-trad1.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/74-style-verbose-trad1.pdf Binary files differnew file mode 100644 index 00000000000..2b12aa53074 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/74-style-verbose-trad1.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/74-style-verbose-trad1.tex b/Master/texmf-dist/doc/latex/biblatex/examples/74-style-verbose-trad1.tex new file mode 100644 index 00000000000..e682e58e7bb --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/74-style-verbose-trad1.tex @@ -0,0 +1,290 @@ +% +% This file presents the `verbose-trad1' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[german,american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose-trad1]{biblatex} +\usepackage{tabularx} +\usepackage{booktabs} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand*{\cmd}[1]{\texttt{\textbackslash #1}} +\newcolumntype{H}{>{\bfseries}l} +\newcolumntype{C}{>{\ttfamily}c} +\newcolumntype{V}{>{\ttfamily}l} +\newenvironment*{inlinetable} + {\trivlist\footnotesize\item} + {\endtrivlist} +\newcommand*{\code}[1]{% + \detokenize\expandafter{\string#1}} +\newenvironment*{pseudofootnotes} + {\list\labelenumi{% + \def\makelabel##1{\hss\llap{##1}}% + \def\labelenumi{\theenumi}% + \usecounter{enumi}% + \setlength{\leftmargin}{0pt}% + \setlength{\labelsep}{0.75em}% + \setlength{\itemsep}{0pt}% + \setlength{\parsep}{0pt}}% + \citereset + \footnotesize + \def\footcite##1{\item\Cite{##1}.}% + \def\footnote##1{\item##1}} + {\endlist} +\newenvironment*{pseudofootnotes*} + {\pseudofootnotes + \def\footnote##1{\item##1\mancite}} + {\endpseudofootnotes} +\begin{document} + +\section*{The \texttt{verbose-trad1} style} + +This is a traditional citation style which uses scholarly +abbreviations like \emph{ibidem}, \emph{idem}, \emph{opere citato}, +and \emph{loco citato} in a special way to replace recurrent +authors, titles, and page ranges across separate citation commands. +This style is best explained by example. + +\subsection*{Outline} + +Let's assume a \texttt{bib} file with the following entries: + +\begin{inlinetable} +\begin{tabularx}{\linewidth}{@{}CX@{}} +\toprule +\multicolumn{1}{@{}H}{Entry Key} & +\multicolumn{1}{H}{Entry Data} \\ +\cmidrule(r){1-1}\cmidrule(l){2-2} +a1 & Author A, Title 1 \\ +a2 & Author A, Title 2 \\ +a3 & Author A, Title 3 \\ +b1 & Author B, Title 1 \\ +\bottomrule +\end{tabularx} +\end{inlinetable} +% +Here's an example of how this citation scheme works: + +\begin{inlinetable} +\begin{tabularx}{\linewidth}{@{}VlX@{}} +\toprule +\multicolumn{1}{@{}H}{Command} & +\multicolumn{1}{H}{Conditions} & +\multicolumn{1}{H}{Citation} \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite{a1}} & Initial reference & Verbose citation \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite{b1}} & Initial reference & Verbose citation \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[26]{a1}} & Author changed & Author, \emph{op.~cit.}, page \\ + & + Title is last title by \emph{this} author \\ + & + Page is new/different from last page cited \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[59]{b1}} & Author changed & Author, \emph{op.~cit.}, page \\ + & + Title is last title by \emph{this} author \\ + & + Page is new/different from last page cited \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[26]{a1}} & Author changed & Author, \emph{loc.~cit.} \\ + & + Title is last title by \emph{this} author \\ + & + Page is last page cited from \emph{this} work \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[59]{b1}} & Author changed & Author, \emph{loc.~cit.} \\ + & + Title is last title by \emph{this} author \\ + & + Page is last page cited from \emph{this} work \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite{a2}} & Initial reference & Verbose citation \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite{b1}} & Author changed & Author, \emph{op.~cit.} \\ + & + Title is last title by \emph{this} author \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite{a1}} & Author changed & Author, Title \\ + & + Title different from last title by \emph{this} author \\ + & + Title has been cited before \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[55]{a2}} & Same author & \emph{idem}, Title, page \\ + & + Title different from last title by \emph{this} author \\ + & + Title has been cited before \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[25]{a2}} & Same author and title & \emph{ibidem}, page \\ + & + Page is different from last page cited \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3} +\code{\cite[25]{a2}} & Same author and title and page + & \emph{ibidem}, page \\ +\code{\cite[25]{a2}} & (with option \texttt{ibidpage=true}) + & \emph{ibidem} \\ +\bottomrule +\end{tabularx} +\end{inlinetable} + +\clearpage + +\subsection*{Additional package options} + +\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}. + +\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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\subsubsection*{The \texttt{strict} option} + +A case related to the definition of \emph{ibidem} is the scope of +the \emph{ibidem} and \emph{idem} replacements. By default, this +style will only use such abbreviations if the respective citations +are given in the same footnote or in consecutive footnotes. The +point of this restriction is also to avoid potentially ambiguous +citations. Here's an example: + +\begin{verbatim} +...\footcite{aristotle:anima} +...\footcite{aristotle:anima} +...\footnote{Averroes touches upon this issue in his \emph{Epistle + on the Possibility of Conjunction}.} +...\footcite{aristotle:anima} +\end{verbatim} +% +This could be rendered as follows: + +\begin{pseudofootnotes} +\footcite{aristotle:anima} +\footcite{aristotle:anima} +\footnote{Averroes touches upon this issue in his \emph{Epistle on +the Possibility of Conjunction}.} +\footcite{aristotle:anima} +\end{pseudofootnotes} +% +What does the \emph{ibidem} in the last footnote refer to? The last +formal citation, as given in the first and the second footnote +(Aristotle), or the informal reference in the third one (Averroes)? +Too avoid such citations, this style will only use \emph{ibidem} and +\emph{idem} replacements if the respective citations are given in +the same footnote or in consecutive footnotes: + +\begin{pseudofootnotes*} +\footcite{aristotle:anima} +\footcite{aristotle:anima} +\footnote{Averroes touches upon this issue in his \emph{Epistle on +the Possibility of Conjunction}.} +\footcite{aristotle:anima} +\end{pseudofootnotes*} +% +Depending on your writing and citing habits, however, you may prefer +the less strict \emph{ibidem} and \emph{idem} handling. You can +force that by setting the package option \texttt{strict=false} in +the preamble. It is still possible to mark a manually inserted +discursive citation with \cmd{mancite} when required: + +\begin{verbatim} +...\footcite{aristotle:anima} +...\footnote{\mancite Averroes touches upon this issue in his + \emph{Epistle on the Possibility of Conjunction}.} +...\footcite{aristotle:anima} +\end{verbatim} +% +This will suppress the \emph{ibidem} in the last footnote. + +\subsection*{Hints and caveats} + +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} +% +German users should note that the scholarly abbreviations typically +used in German do not make a clear distinction between +\emph{op.~cit.} and \emph{loc.~cit.} Both are rendered as +\emph{a.a.O.}, possibly causing some citations to be misleading. It +may be preferable to use the \texttt{verbose-trad2} style in German +documents. If you really want to use \texttt{verbose-trad1}, use the +Latin keywords. This is accomplished by putting the following in the +preamble or the configuration file: + +\begin{verbatim} +\DefineBibliographyStrings{german}{% + idem = {idem}, + idemsm = {idem}, + idemsf = {eadem}, + idemsn = {idem}, + idempm = {eidem}, + idempf = {eaedem}, + idempn = {eadem}, + idempp = {eidem}, + ibidem = {ibid\adddot}, + opcit = {op\adddotspace cit\adddot}, + loccit = {loc\adddotspace cit\adddot}, +} +\end{verbatim} +% +Now let's go over the previous examples again, using real +bibliography entries this time. + +\clearpage + +\subsection*{\cmd{footcite} examples} + +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{averroes/bland} +This is just filler text.\footcite[26]{aristotle:anima} +This is just filler text.\footcite[59--61]{averroes/bland} +This is just filler text.\footcite[26]{aristotle:anima} +This is just filler text.\footcite[59--61]{averroes/bland} +This is just filler text.\footcite{aristotle:physics} +This is just filler text.\footcite{averroes/bland} +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite[55]{aristotle:physics} +This is just filler text.\footcite[25]{aristotle:physics} +% ibidpage=true would suppress the following page number: +This is just filler text.\footcite[25]{aristotle:physics} + +\clearpage + +% If the `shorthand' field is defined, the shorthand is introduced +% on the first citation. All subsequent citations will then use the +% shorthand. + +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{averroes/bland}. +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:physics}. +This is just filler text \autocite{aristotle:physics}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/75-style-verbose-trad2.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/75-style-verbose-trad2.pdf Binary files differnew file mode 100644 index 00000000000..a92ba2af2e9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/75-style-verbose-trad2.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/75-style-verbose-trad2.tex b/Master/texmf-dist/doc/latex/biblatex/examples/75-style-verbose-trad2.tex new file mode 100644 index 00000000000..fed2a5d84a9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/75-style-verbose-trad2.tex @@ -0,0 +1,182 @@ +% +% This file presents the 'verbose-trad2' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose-trad2]{biblatex} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\newenvironment*{pseudofootnotes} + {\list\labelenumi{% + \def\makelabel##1{\hss\llap{##1}}% + \def\labelenumi{\theenumi}% + \usecounter{enumi}% + \setlength{\leftmargin}{0pt}% + \setlength{\labelsep}{0.75em}% + \setlength{\itemsep}{0pt}% + \setlength{\parsep}{0pt}}% + \citereset + \footnotesize + \def\footcite##1{\item\Cite{##1}.}% + \def\footnote##1{\item##1}} + {\endlist} +\newenvironment*{pseudofootnotes*} + {\pseudofootnotes + \def\footnote##1{\item##1\mancite}} + {\endpseudofootnotes} +\begin{document} + +\section*{The \texttt{verbose-trad2} style} + +This is another traditional style which uses scholarly abbreviations +like \emph{ibidem} and \emph{idem}. Despite its name, the `logic' of +this style is more closely related to styles like +\texttt{verbose-ibid} and \texttt{verbose-inote} than to the rather +special citation scheme implemented in the \texttt{verbose-trad1} +style. + +\subsection*{Additional package options} + +\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}. + +\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. If +you you prefer the wider interpretation of \emph{ibidem}, set the +package option \texttt{ibidpage=true} or simply \texttt{ibidpage} in +the preamble. The default setting is \texttt{ibidpage=false}. + +\subsubsection*{The \texttt{strict} option} + +A case related to the definition of \emph{ibidem} is the scope of +the \emph{ibidem} and \emph{idem} replacements. By default, this +style will only use such abbreviations if the respective citations +are given in the same footnote or in consecutive footnotes. The +point of this restriction is also to avoid potentially ambiguous +citations. Here's an example: + +\begin{verbatim} +...\footcite{aristotle:anima} +...\footcite{aristotle:anima} +...\footnote{Averroes touches upon this issue in his \emph{Epistle + on the Possibility of Conjunction}.} +...\footcite{aristotle:anima} +\end{verbatim} +% +This could be rendered as follows: + +\begin{pseudofootnotes} +\footcite{aristotle:anima} +\footcite{aristotle:anima} +\footnote{Averroes touches upon this issue in his \emph{Epistle on +the Possibility of Conjunction}.} +\footcite{aristotle:anima} +\end{pseudofootnotes} +% +What does the \emph{ibidem} in the last footnote refer to? The last +formal citation, as given in the first and the second footnote +(Aristotle), or the informal reference in the third one (Averroes)? +Too avoid such citations, this style will only use \emph{ibidem} and +\emph{idem} replacements if the respective citations are given in +the same footnote or in consecutive footnotes: + +\begin{pseudofootnotes*} +\footcite{aristotle:anima} +\footcite{aristotle:anima} +\footnote{Averroes touches upon this issue in his \emph{Epistle on +the Possibility of Conjunction}.} +\footcite{aristotle:anima} +\end{pseudofootnotes*} +% +Depending on your writing and citing habits, however, you may prefer +the less strict \emph{ibidem} and \emph{idem} handling. You can +force that by setting the package option \texttt{strict=false} in +the preamble. It is still possible to mark a manually inserted +discursive citation with \cmd{mancite} when required: + +\begin{verbatim} +...\footcite{aristotle:anima} +...\footnote{\mancite Averroes touches upon this issue in his + \emph{Epistle on the Possibility of Conjunction}.} +...\footcite{aristotle:anima} +\end{verbatim} +% +This will suppress the \emph{ibidem} in the last footnote. + +\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} + +\clearpage + +\subsection*{\cmd{footcite} examples} + +% The initial citation of an entry includes all the data. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{averroes/bland} +% Subsequent citations use a shorter format. +This is just filler text.\footcite[26]{aristotle:anima} +This is just filler text.\footcite[59--61]{averroes/bland} +This is just filler text.\footcite{aristotle:physics} +% Repeated authors are replaced by the abbreviation 'idem': +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite[55]{aristotle:physics} +% Immediately repeated citations are replaced by the +% abbreviation 'ibidem'. +This is just filler text.\footcite[25]{aristotle:physics} +% ibidpage=true would suppress the following page number: +This is just filler text.\footcite[25]{aristotle:physics} + +\clearpage + +% If the 'shorthand' field is defined, the shorthand is introduced +% on the first citation. +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +% All subsequent citations will then use the shorthand instead of +% the short author-title format. +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{averroes/bland}. +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite{aristotle:physics}. +This is just filler text \autocite{aristotle:physics}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/76-style-verbose-trad3.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/76-style-verbose-trad3.pdf Binary files differnew file mode 100644 index 00000000000..f6f41948d2d --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/76-style-verbose-trad3.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/76-style-verbose-trad3.tex b/Master/texmf-dist/doc/latex/biblatex/examples/76-style-verbose-trad3.tex new file mode 100644 index 00000000000..d1656abcf60 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/76-style-verbose-trad3.tex @@ -0,0 +1,156 @@ +% +% This file presents the 'verbose-trad3' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=verbose-trad3]{biblatex} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\newenvironment*{pseudofootnotes} + {\list\labelenumi{% + \def\makelabel##1{\hss\llap{##1}}% + \def\labelenumi{\theenumi}% + \usecounter{enumi}% + \setlength{\leftmargin}{0pt}% + \setlength{\labelsep}{0.75em}% + \setlength{\itemsep}{0pt}% + \setlength{\parsep}{0pt}}% + \citereset + \footnotesize + \def\footcite##1{\item\Cite{##1}.}% + \def\footnote##1{\item##1}} + {\endlist} +\newenvironment*{pseudofootnotes*} + {\pseudofootnotes + \def\footnote##1{\item##1\mancite}} + {\endpseudofootnotes} +\begin{document} + +\section*{The \texttt{verbose-trad3} style} + +This is another traditional style which uses the scholarly abbreviations \emph{ibidem} and \emph{op.~cit.} In contrast to \texttt{verbose-trad2}, \emph{ibidem} denotes `same author~+ same title~+ same page' and \emph{op.~cit.} denotes `same author~+ same title' in this style. All other citations are based on the title. + +\subsection*{Additional package options} + +\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}. + +\subsubsection*{The \texttt{strict} option} + +By default, this style will only use \emph{ibidem} and +\emph{op.~cit.} if the respective citations are given in the same +footnote or in consecutive footnotes. The point of this restriction +is also to avoid potentially ambiguous citations. Here's an example: + +\begin{verbatim} +...\footcite{aristotle:anima} +...\footcite{aristotle:anima} +...\footnote{Aristotle touches upon this issue + in his \emph{Rhetoric}.} +...\footcite{aristotle:anima} +\end{verbatim} +% +This could be rendered as follows: + +\begin{pseudofootnotes} +\footcite{aristotle:anima} +\footcite{aristotle:anima} +\footnote{Aristotle touches upon this issue in his \emph{Rhetoric}.} +\footcite{aristotle:anima} +\end{pseudofootnotes} +% +What does the \emph{op.~cit.} in the last footnote refer to? The last formal citation, as given in the first and the second footnote (\emph{De Anima}), or the informal reference in the third one (\emph{Rhetoric})? Too avoid such citations, this style will only use abbreviations if the respective citations are given in the same footnote or in consecutive footnotes: + +\begin{pseudofootnotes*} +\footcite{aristotle:anima} +\footcite{aristotle:anima} +\footnote{Aristotle touches upon this issue in his \emph{Rhetoric}.} +\footcite{aristotle:anima} +\end{pseudofootnotes*} +% +Depending on your writing and citing habits, however, you may prefer +the less strict \emph{ibidem} and \emph{op.~cit.} handling. You can +force that by setting the package option \texttt{strict=false} in +the preamble. It is still possible to mark a manually inserted +discursive citation with \cmd{mancite} when required: + +\begin{verbatim} +...\footcite{aristotle:anima} +...\footnote{\mancite Aristotle touches upon this issue + in his \emph{Rhetoric}.} +...\footcite{aristotle:anima} +\end{verbatim} +% +This will suppress the \emph{op.~cit.} in the last footnote. + +\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} + +\clearpage + +\subsection*{\cmd{footcite} examples} + +% The initial citation of an entry includes all the data. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite{averroes/bland} +% Subsequent citations use a shorter format. +This is just filler text.\footcite[26]{aristotle:anima} +This is just filler text.\footcite[59--61]{averroes/bland} +This is just filler text.\footcite{aristotle:anima} +% Immediately repeated citations are replaced by the +% abbreviation 'op. cit.'. +This is just filler text.\footcite{aristotle:anima} +This is just filler text.\footcite[25]{aristotle:anima} +% Only repeated citations with the same page number +% are replaced by the abbreviation 'ibidem'. +This is just filler text.\footcite[25]{aristotle:anima} + +\clearpage + +% If the 'shorthand' field is defined, the shorthand is introduced +% on the first citation. +This is just filler text.\footcite{kant:kpv} +This is just filler text.\footcite{kant:ku} +% All subsequent citations will then use the shorthand instead of +% the short author-title format. +This is just filler text.\footcite[24]{kant:kpv} +This is just filler text.\footcite[59--63]{kant:ku} + +\clearpage + +\subsection*{\cmd{autocite} examples} + +% The \autocite command works like \footcite. Note that +% the period is moved and placed before the footnote. + +This is just filler text \autocite{aristotle:rhetoric}. +This is just filler text \autocite{averroes/bland}. +This is just filler text \autocite{aristotle:anima}. +This is just filler text \autocite[55]{aristotle:anima}. +This is just filler text \autocite[55]{aristotle:anima}. + +\clearpage + +% Since all bibliographic data is provided on the first citation, +% this style may be used without a list of references and +% shorthands. Of course these lists may still be printed if desired. + +\printshorthands +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/80-style-reading.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/80-style-reading.pdf Binary files differnew file mode 100644 index 00000000000..5975218767a --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/80-style-reading.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/80-style-reading.tex b/Master/texmf-dist/doc/latex/biblatex/examples/80-style-reading.tex new file mode 100644 index 00000000000..c7f3097ace2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/80-style-reading.tex @@ -0,0 +1,73 @@ +% +% This file presents the `reading' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=reading]{biblatex} +\usepackage{tabularx} +\usepackage{hyperref} +\usepackage{booktabs} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand*{\cmd}[1]{\texttt{\textbackslash #1}} +\newcolumntype{K}{>{\ttfamily}l} +\newcolumntype{V}{>{\ttfamily\raggedright\let\\\tabularnewline}p{55pt}} +\newcolumntype{E}{>{\raggedright\let\\\tabularnewline}X} +\newcolumntype{H}{>{\bfseries}l} +\newenvironment*{inlinetable} + {\trivlist\footnotesize\item} + {\endtrivlist} +\begin{document} + +\section*{The \texttt{reading} style} + +This style is useful for personal reading lists, annotated +biblographies, and similar applications. It optionally adds short +headers to the bibliography and includes the fields +\texttt{annotation}, \texttt{abstract}, \texttt{library}, and +\texttt{file}. Whether these items are printed depends on the +following package options: + +\begin{inlinetable} +\begin{tabularx}{\linewidth}{@{}KVKE@{}} +\toprule +\multicolumn{1}{@{}H}{Key} & +\multicolumn{1}{H}{Values} & +\multicolumn{1}{H}{Default} & +\multicolumn{1}{H}{Function} \\ +\cmidrule(r){1-1}\cmidrule(lr){2-2} +\cmidrule(lr){3-3}\cmidrule(l){4-4} +entryhead & true, false, full, name & true & +The kind of header to print; \texttt{true} or \texttt{full} adds +a full header including the name, the title, and the entry key +(depending on the \texttt{entrykey} option) to each entry, +\texttt{name} adds a name header once for each author, +\texttt{false} disables the header\\ +entrykey & true, false & true & +Whether to include the \texttt{entrykey} field in the +\texttt{full} header\\ +annotation & true, false & true & +Whether to print the \texttt{annotation} field\\ +abstract & true, false & true & +Whether to print the \texttt{abstract} field\\ +library & true, false & true & +Whether to print the \texttt{library} field\\ +file & true, false & true & +Whether to print the \texttt{file} field\\ +loadfiles & true, false & true & +Whether to load annotations and abstracts from external files +(this is a standard option; see the manual for details)\\ +\bottomrule +\end{tabularx} +\end{inlinetable} +% +On the next page, there are some examples with all options at their default setting. + +\clearpage + +\nocite{laufenberg,kastenholz,padhye,sigfridsson,itzhaki} +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/81-style-draft.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/81-style-draft.pdf Binary files differnew file mode 100644 index 00000000000..fd0e00d32e5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/81-style-draft.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/81-style-draft.tex b/Master/texmf-dist/doc/latex/biblatex/examples/81-style-draft.tex new file mode 100644 index 00000000000..f80759973ac --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/81-style-draft.tex @@ -0,0 +1,31 @@ +% +% This file presents the `draft' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=draft]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\begin{document} + +\section*{The \texttt{draft} style} + +This is a draft style which simply uses the entry keys as citations. +The entry keys are also included the in the bibliography which will +be sorted by entry key. + +\subsection*{\cmd{cite} examples} + +\cite{bertram,companion,gillies,aristotle:anima} + +\subsection*{\cmd{autocite} examples} + +\autocite{baez/article,hammond,reese,spiegelberg} + +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/82-style-debug.pdf b/Master/texmf-dist/doc/latex/biblatex/examples/82-style-debug.pdf Binary files differnew file mode 100644 index 00000000000..73cd161d418 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/82-style-debug.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/82-style-debug.tex b/Master/texmf-dist/doc/latex/biblatex/examples/82-style-debug.tex new file mode 100644 index 00000000000..9cc084561f8 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/82-style-debug.tex @@ -0,0 +1,25 @@ +% +% This file presents the `debug' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=debug]{biblatex} +\usepackage{hyperref} +\bibliography{biblatex-examples} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\begin{document} + +\section*{The \texttt{debug} style} + +This style prints all bibliographic data in tabular format. It is +intended for debugging only. + +\clearpage + +\nocite{companion} +\printbibliography + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/biblatex-examples.bib b/Master/texmf-dist/doc/latex/biblatex/examples/biblatex-examples.bib new file mode 100644 index 00000000000..97743842b86 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex/examples/biblatex-examples.bib @@ -0,0 +1,1286 @@ +@STRING{anch-ie = {Angew.~Chem. Int.~Ed.} } +@STRING{cup = {Cambridge University Press} } +@STRING{dtv = {Deutscher Taschenbuch-Verlag} } +@STRING{hup = {Harvard University Press} } +@STRING{jams = {J.~Amer. Math. Soc.} } +@STRING{jchph = {J.~Chem. Phys.} } +@STRING{jomch = {J.~Organomet. Chem.} } +@STRING{pup = {Princeton University Press} } + +@InCollection{westfahl:space, + crossref = {westfahl:frontier}, + hyphenation = {american}, + author = {Westfahl, Gary}, + indextitle = {True Frontier, The}, + title = {The True Frontier}, + subtitle = {Confronting and Avoiding the Realities of Space in American Science Fiction + Films}, + pages = {55--65}, + annotation = {A cross-referenced article from a \texttt{collection}. This is an + \texttt{incollection} entry with a \texttt{crossref} field. Note the + \texttt{subtitle} and \texttt{indextitle} fields} +} + +@Set{set, + crossref = {set:herrmann}, + entryset = {set:herrmann,set:aksin,set:yoon}, + annotation = {A \texttt{set} entry with three members. Note the \texttt{entryset} and + \texttt{crossref} fields. The cross-reference must point to the first member of + the set} +} + +@Set{stdmodel, + crossref = {stdmodel:glashow}, + entryset = {stdmodel:glashow,stdmodel:weinberg,stdmodel:salam}, + annotation = {A \texttt{set} entry with three members discussing the standard model of + particle physics. Note the \texttt{entryset} and \texttt{crossref} fields. The + cross-reference must point to the first member of the set} +} + +@Article{angenendt, + hyphenation = {german}, + author = {Angenendt, Arnold}, + indextitle = {In Honore Salvatoris}, + title = {In Honore Salvatoris~-- Vom Sinn und Unsinn der Patrozinienkunde}, + shorttitle = {In Honore Salvatoris}, + journaltitle = {Revue d'Histoire Eccl{\'e}siastique}, + volume = {97}, + date = {2002}, + pages = {431--456, 791--823}, + annotation = {A German article in a French journal. Apart from that, a typical + \texttt{article} entry. Note the \texttt{indextitle} field} +} + +@Article{baez/article, + hyphenation = {american}, + author = {Baez, John C. and Lauda, Aaron D.}, + title = {Higher-Dimensional Algebra V: 2-Groups}, + journaltitle = {Theory and Applications of Categories}, + volume = {12}, + version = {3}, + date = {2004}, + pages = {423--491}, + eprint = {math/0307200v3}, + eprinttype = {arxiv}, + annotation = {An \texttt{article} with \texttt{eprint} and \texttt{eprinttype} fields. Note + that the arXiv reference is transformed into a clickable link if + \texttt{hyperref} support has been enabled. Compare \texttt{baez\slash online} + which is the same item given as an \texttt{online} entry} +} + +@Article{bertram, + hyphenation = {american}, + author = {Bertram, Aaron and Wentworth, Richard}, + title = {Gromov invariants for holomorphic maps on Riemann surfaces}, + shorttitle = {Gromov invariants}, + journaltitle = jams, + volume = {9}, + number = {2}, + date = {1996}, + pages = {529--571}, + annotation = {An \texttt{article} entry with a \texttt{volume} and a \texttt{number} field} +} + +@Article{gillies, + hyphenation = {british}, + author = {Gillies, Alexander}, + title = {Herder and the Preparation of Goethe's Idea of World Literature}, + journaltitle = {Publications of the English Goethe Society}, + volume = {9}, + series = {newseries}, + date = {1933}, + pages = {46--67}, + annotation = {An \texttt{article} entry with a \texttt{series} and a \texttt{volume} field. + Note that format of the \texttt{series} field in the database file} +} + +@Article{kastenholz, + hyphenation = {american}, + author = {Kastenholz, M. A. and H{\"u}nenberger, Philippe H.}, + indextitle = {Computation of ionic solvation free energies}, + title = {Computation of methodology\hyphen independent ionic solvation free energies + from molecular simulations}, + subtitle = {I. The electrostatic potential in molecular liquids}, + journaltitle = jchph, + volume = {124}, + eid = {124106}, + date = {2006}, + doi = {10.1063/1.2172593}, + annotation = {An \texttt{article} entry with an \texttt{eid} and a \texttt{doi} field. Note + that the \textsc{doi} is transformed into a clickable link if \texttt{hyperref} + support has been enabled}, + abstract = {The computation of ionic solvation free energies from atomistic simulations is + a surprisingly difficult problem that has found no satisfactory solution for + more than 15 years. The reason is that the charging free energies evaluated from + such simulations are affected by very large errors. One of these is related to + the choice of a specific convention for summing up the contributions of solvent + charges to the electrostatic potential in the ionic cavity, namely, on the basis + of point charges within entire solvent molecules (M scheme) or on the basis of + individual point charges (P scheme). The use of an inappropriate convention may + lead to a charge-independent offset in the calculated potential, which depends + on the details of the summation scheme, on the quadrupole-moment trace of the + solvent molecule, and on the approximate form used to represent electrostatic + interactions in the system. However, whether the M or P scheme (if any) + represents the appropriate convention is still a matter of on-going debate. The + goal of the present article is to settle this long-standing controversy by + carefully analyzing (both analytically and numerically) the properties of the + electrostatic potential in molecular liquids (and inside cavities within + them).} +} + +@Article{murray, + hyphenation = {american}, + author = {Hostetler, Michael J. and Wingate, Julia E. and Zhong, Chuan-Jian and Harris, + Jay E. and Vachet, Richard W. and Clark, Michael R. and Londono, J. David and + Green, Stephen J. and Stokes, Jennifer J. and Wignall, George D. and Glish, Gary + L. and Porter, Marc D. and Evans, Neal D. and Murray, Royce W.}, + indextitle = {Alkanethiolate gold cluster molecules}, + title = {Alkanethiolate gold cluster molecules with core diameters from 1.5 to 5.2~nm}, + subtitle = {Core and monolayer properties as a function of core size}, + shorttitle = {Alkanethiolate gold cluster molecules}, + journaltitle = {Langmuir}, + volume = {14}, + number = {1}, + date = {1998}, + pages = {17--30}, + annotation = {An \texttt{article} entry with \arabic{author} authors. By default, long author + and editor lists are automatically truncated. This is configurable} +} + +@Article{reese, + hyphenation = {american}, + author = {Reese, Trevor R.}, + title = {Georgia in Anglo-Spanish Diplomacy, 1736-1739}, + journaltitle = {William and Mary Quarterly}, + volume = {15}, + series = {3}, + date = {1958}, + pages = {168--190}, + annotation = {An \texttt{article} entry with a \texttt{series} and a \texttt{volume} field. + Note the format of the series. If the value of the \texttt{series} field is an + integer, this number is printed as an ordinal and the string \enquote*{series} + is appended automatically} +} + +@Article{set:aksin, + entryset = {set}, + author = {Aks{\i}n, {\"O}zge and T{\"u}rkmen, Hayati and Artok, Levent and + {\k{C}}etinkaya, Bekir and Ni, Chaoying and B{\"u}y{\"u}kg{\"u}ng{\"o}r, Orhan + and {\"O}zkal, Erhan}, + indextitle = {Effect of immobilization on catalytic characteristics}, + title = {Effect of immobilization on catalytic characteristics of saturated + Pd-N-heterocyclic carbenes in Mizoroki-Heck reactions}, + journaltitle = jomch, + volume = {691}, + number = {13}, + date = {2006}, + pages = {3027--3036} +} + +@Article{set:herrmann, + entryset = {set}, + author = {Herrmann, Wolfgang A. and {\"O}fele, Karl and Schneider, Sabine K. and + Herdtweck, Eberhardt and Hoffmann, Stephan D.}, + indextitle = {Carbocyclic carbene as an efficient catalyst, A}, + title = {A carbocyclic carbene as an efficient catalyst ligand for C--C coupling + reactions}, + journaltitle = anch-ie, + volume = {45}, + number = {23}, + date = {2006}, + pages = {3859--3862} +} + +@Article{set:yoon, + entryset = {set}, + author = {Yoon, Myeong S. and Ryu, Dowook and Kim, Jeongryul and Ahn, Kyo Han}, + indextitle = {Palladium pincer complexes}, + title = {Palladium pincer complexes with reduced bond angle strain: efficient catalysts + for the Heck reaction}, + journaltitle = {Organometallics}, + volume = {25}, + number = {10}, + date = {2006}, + pages = {2409--2411} +} + +@Article{shore, + author = {Shore, Bradd}, + title = {Twice-Born, Once Conceived}, + subtitle = {Meaning Construction and Cultural Cognition}, + journaltitle = {American Anthropologist}, + volume = {93}, + series = {newseries}, + number = {1}, + month = {3}, + date = {1991}, + pages = {9--27}, + annotation = {An \texttt{article} entry with \texttt{series}, \texttt{volume}, and + \texttt{number} fields. Note the format of the \texttt{series} which is a + localization key} +} + +@Article{sigfridsson, + hyphenation = {american}, + author = {Sigfridsson, Emma and Ryde, Ulf}, + indextitle = {Methods for deriving atomic charges}, + title = {Comparison of methods for deriving atomic charges from the electrostatic + potential and moments}, + journaltitle = {Journal of Computational Chemistry}, + volume = {19}, + number = {4}, + date = {1998}, + doi = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P}, + pages = {377--395}, + annotation = {An \texttt{article} entry with \texttt{volume}, \texttt{number}, and + \texttt{doi} fields. Note that the \textsc{doi} is transformed into a clickable + link if \texttt{hyperref} support has been enabled}, + abstract = { Four methods for deriving partial atomic charges from the quantum chemical + electrostatic potential (CHELP, CHELPG, Merz-Kollman, and RESP) have been + compared and critically evaluated. It is shown that charges strongly depend on + how and where the potential points are selected. Two alternative methods are + suggested to avoid the arbitrariness in the point-selection schemes and van der + Waals exclusion radii: CHELP-BOW, which also estimates the charges from the + electrostatic potential, but with potential points that are Boltzmann-weighted + after their occurrence in actual simulations using the energy function of the + program in which the charges will be used, and CHELMO, which estimates the + charges directly from the electrostatic multipole moments. Different criteria + for the quality of the charges are discussed.} +} + +@Article{spiegelberg, + hyphenation = {german}, + sorttitle = {Intention und Intentionalitat in der Scholastik, bei Brentano und Husserl}, + indexsorttitle = {Intention und Intentionalitat in der Scholastik, bei Brentano und Husserl}, + author = {Spiegelberg, Herbert}, + title = {\mkbibquote{Intention} und \mkbibquote{Intentionalit{\"a}t} in der Scholastik, + bei Brentano und Husserl}, + shorttitle = {Intention und Intentionalit{\"a}t}, + journaltitle = {Studia Philosophica}, + volume = {29}, + date = {1969}, + pages = {189--216}, + annotation = {An \texttt{article} entry. Note the \texttt{sorttitle} and + \texttt{indexsorttitle} fields and the markup of the quotes in the database file} +} + +@Article{springer, + hyphenation = {british}, + author = {Springer, Otto}, + title = {Mediaeval Pilgrim Routes from Scandinavia to Rome}, + shorttitle = {Mediaeval Pilgrim Routes}, + journaltitle = {Mediaeval Studies}, + volume = {12}, + date = {1950}, + pages = {92--122}, + annotation = {A plain \texttt{article} entry} +} + +@Article{stdmodel:glashow, + entryset = {stdmodel}, + author = {Glashow, Sheldon}, + title = {Partial Symmetries of Weak Interactions}, + journaltitle = {Nucl.~Phys.}, + volume = {22}, + date = {1961}, + pages = {579\psqq} +} + +@Article{stdmodel:weinberg, + entryset = {stdmodel}, + author = {Weinberg, Steven}, + title = {A Model of Leptons}, + journaltitle = {Phys.~Rev.~Lett.}, + volume = {19}, + date = {1967}, + pages = {1264\psqq} +} + +@Book{aristotle:anima, + keywords = {primary}, + hyphenation = {british}, + author = {Aristotle}, + editor = {Hicks, Robert Drew}, + title = {De Anima}, + publisher = cup, + location = {Cambridge}, + date = {1907}, + annotation = {A \texttt{book} entry with an \texttt{author} and an \texttt{editor}} +} + +@Book{aristotle:physics, + keywords = {primary}, + hyphenation = {american}, + author = {Aristotle}, + translator = {Wicksteed, P. H. and Cornford, F. M.}, + title = {Physics}, + shorttitle = {Physics}, + publisher = {G. P. Putnam}, + location = {New York}, + date = {1929}, + annotation = {A \texttt{book} entry with a \texttt{translator} field} +} + +@Book{aristotle:poetics, + keywords = {primary}, + hyphenation = {british}, + author = {Aristotle}, + editor = {Lucas, D. W.}, + title = {Poetics}, + shorttitle = {Poetics}, + series = {Clarendon Aristotle}, + publisher = {Clarendon Press}, + location = {Oxford}, + date = {1968}, + annotation = {A \texttt{book} entry with an \texttt{author} and an \texttt{editor} as well as + a \texttt{series} field} +} + +@Book{aristotle:rhetoric, + keywords = {primary}, + hyphenation = {british}, + sorttitle = {Rhetoric of Aristotle}, + author = {Aristotle}, + editor = {Cope, Edward Meredith}, + commentator = {Cope, Edward Meredith}, + indextitle = {Rhetoric of Aristotle, The}, + title = {The Rhetoric of Aristotle with a commentary by the late Edward Meredith Cope}, + shorttitle = {Rhetoric}, + volumes = {3}, + publisher = cup, + date = {1877}, + annotation = {A commented edition. Note the concatenation of the \texttt{editor} and + \texttt{commentator} fields as well as the \texttt{volumes}, \texttt{sorttitle}, + and \texttt{indextitle} fields} +} + +@Book{augustine, + hyphenation = {american}, + author = {Augustine, Robert L.}, + title = {Heterogeneous catalysis for the synthetic chemist}, + shorttitle = {Heterogeneous catalysis}, + publisher = {Marcel Dekker}, + location = {New York}, + date = {1995}, + annotation = {A plain \texttt{book} entry} +} + +@Book{averroes/bland, + keywords = {primary}, + hyphenation = {american}, + author = {Averroes}, + editor = {Bland, Kalman P.}, + translator = {Bland, Kalman P.}, + indextitle = {Epistle on the Possibility of Conjunction, The}, + title = {The Epistle on the Possibility of Conjunction with the Active Intellect by Ibn + Rushd with the Commentary of Moses Narboni}, + shorttitle = {Possibility of Conjunction}, + series = {Moreshet: Studies in Jewish History, Literature and Thought}, + number = {7}, + publisher = {Jewish Theological Seminary of America}, + location = {New York}, + date = {1982}, + annotation = {A \texttt{book} entry with a \texttt{series} and a \texttt{number}. Note the + concatenation of the \texttt{editor} and \texttt{translator} fields as well as + the \texttt{indextitle} field} +} + +@Book{averroes/hannes, + keywords = {primary}, + hyphenation = {german}, + sorttitle = {Uber die Moglichkeit der Conjunktion}, + indexsorttitle = {Uber die Moglichkeit der Conjunktion}, + author = {Averroes}, + editor = {Hannes, Ludwig}, + translator = {Hannes, Ludwig}, + annotator = {Hannes, Ludwig}, + indextitle = {{\"U}ber die M{\"o}glichkeit der Conjunktion}, + title = {Des Averro{\"e}s Abhandlung: \mkbibquote{{\"U}ber die M{\"o}glichkeit der + Conjunktion} oder \mkbibquote{{\"U}ber den materiellen Intellekt}}, + shorttitle = {M{\"o}glichkeit der Conjunktion}, + publisher = {C.~A. Kaemmerer}, + location = {Halle an der Saale}, + date = {1892}, + annotation = {An annotated edition. Note the concatenation of the \texttt{editor}, + \texttt{translator}, and \texttt{annotator} fields. Also note the + \texttt{shorttitle}, \texttt{indextitle}, \texttt{sorttitle}, and + \texttt{indexsorttitle} fields} +} + +@Book{averroes/hercz, + keywords = {primary}, + hyphenation = {german}, + indexsorttitle = {Drei Abhandlungen uber die Conjunction}, + author = {Averroes}, + editor = {Hercz, J.}, + translator = {Hercz, J.}, + indextitle = {Drei Abhandlungen {\"u}ber die Conjunction}, + title = {Drei Abhandlungen {\"u}ber die Conjunction des separaten Intellects mit dem + Menschen}, + subtitle = {Von Averroes (Vater und Sohn), aus dem Arabischen {\"u}bersetzt von Samuel Ibn + Tibbon}, + shorttitle = {Drei Abhandlungen}, + publisher = {S.~Hermann}, + location = {Berlin}, + date = {1869}, + annotation = {A \texttt{book} entry. Note the concatenation of the \texttt{editor} and + \texttt{translator} fields as well as the \texttt{indextitle} and + \texttt{indexsorttitle} fields} +} + +@Book{cicero, + hyphenation = {german}, + author = {Cicero, Marcus Tullius}, + editor = {Blank-Sangmeister, Ursula}, + translator = {Blank-Sangmeister, Ursula}, + afterword = {Thraede, Klaus}, + indextitle = {De natura deorum}, + title = {De natura deorum. {\"U}ber das Wesen der G{\"o}tter}, + shorttitle = {De natura deorum}, + language = {langlatin and langgerman}, + publisher = {Reclam}, + location = {Stuttgart}, + date = {1995}, + annotation = {A bilingual edition of Cicero's \emph{De natura deorum}, with a German + translation. Note the format of the \texttt{language} field in the database + file, the concatenation of the \texttt{editor} and \texttt{translator} fields, + and the \texttt{afterword} field} +} + +@Book{coleridge, + hyphenation = {british}, + author = {Coleridge, Samuel Taylor}, + editor = {Coburn, Kathleen and Engell, James and Bate, W. Jackson}, + indextitle = {Biographia literaria}, + title = {Biographia literaria, or Biographical sketches of my literary life and + opinions}, + shorttitle = {Biographia literaria}, + maintitle = {The collected works of Samuel Taylor Coleridge}, + part = {2}, + volume = {7}, + series = {Bollingen Series}, + number = {75}, + publisher = {Routledge and Kegan Paul}, + location = {London}, + date = {1983}, + annotation = {One (partial) volume of a multivolume book. This is a \texttt{book} entry with + a \texttt{volume} and a \texttt{part} field which explicitly refers to the + second (physical) part of the seventh (logical) volume. Also note the + \texttt{series} and \texttt{number} fields} +} + +@Book{companion, + hyphenation = {american}, + sorttitle = {LaTeX Companion}, + author = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander}, + indextitle = {LaTeX Companion, The}, + title = {The LaTeX Companion}, + shorttitle = {LaTeX Companion}, + edition = {1}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1994}, + annotation = {A book with three authors. Note the formatting of the author list. By default, + only the first name is reversed in the bibliography} +} + +@Book{cotton, + hyphenation = {british}, + author = {Cotton, Frank Albert and Wilkinson, Geoffrey and Murillio, Carlos A. and + Bochmann, Manfred}, + title = {Advanced inorganic chemistry}, + edition = {6}, + publisher = {Wiley}, + location = {Chichester}, + date = {1999}, + annotation = {A \texttt{book} entry with \arabic{author} authors and an \texttt{edition} + field. By default, long \texttt{author} and \texttt{editor} lists are + automatically truncated. This is configurable} +} + +@Book{gerhardt, + hyphenation = {american}, + sorttitle = {Federal Appointments Process}, + author = {Gerhardt, Michael J.}, + indextitle = {Federal Appointments Process, The}, + title = {The Federal Appointments Process}, + subtitle = {A Constitutional and Historical Analysis}, + shorttitle = {Federal Appointments Process}, + publisher = {Duke University Press}, + location = {Durham and London}, + date = {2000}, + annotation = {This is a \texttt{book} entry. Note the format of the \texttt{location} field + as well as the \texttt{sorttitle} and \texttt{indextitle} fields} +} + +@Book{gonzalez, + hyphenation = {american}, + sorttitle = {Ghost of John Wayne and Other Stories}, + author = {Gonzalez, Ray}, + indextitle = {Ghost of John Wayne and Other Stories, The}, + title = {The Ghost of John Wayne and Other Stories}, + shorttitle = {Ghost of John Wayne}, + publisher = {The University of Arizona Press}, + location = {Tucson}, + date = {2001}, + isbn = {0-816-52066-6}, + annotation = {A collection of short stories. This is a \texttt{book} entry. Note the + \texttt{sorttitle} and \texttt{indextitle} fields in the database file. There's + also an \texttt{isbn} field} +} + +@Book{hammond, + hyphenation = {british}, + sorttitle = {Basics of crystallography and diffraction}, + author = {Hammond, Christopher}, + indextitle = {Basics of crystallography and diffraction, The}, + title = {The basics of crystallography and diffraction}, + shorttitle = {Crystallography and diffraction}, + publisher = {International Union of Crystallography and Oxford University Press}, + location = {Oxford}, + date = {1997}, + annotation = {A \texttt{book} entry. Note the \texttt{sorttitle} and \texttt{indextitle} + fields as well as the format of the \texttt{publisher} field} +} + +@Book{iliad, + hyphenation = {german}, + sorttitle = {Ilias}, + author = {Homer}, + translator = {Schadewaldt, Wolfgang}, + introduction = {Latacz, Joachim}, + indextitle = {Ilias, Die}, + title = {Die Ilias}, + shorttitle = {Ilias}, + edition = {3}, + publisher = {Artemis \& Winkler}, + location = {D{\"u}sseldorf and Z{\"u}rich}, + date = {2004}, + annotation = {A German translation of the \emph{Iliad}. Note the \texttt{translator} and + \texttt{introduction} fields and the format of the \texttt{location} field in + the database file. Also note the \texttt{sorttitle} and \texttt{indextitle} fields} +} + +@Book{knuth:ct, + hyphenation = {american}, + sortyear = {1984-0}, + sorttitle = {Computers & Typesetting}, + indexsorttitle = {Computers & Typesetting}, + author = {Knuth, Donald E.}, + title = {Computers \& Typesetting}, + volumes = {5}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1984/1986}, + annotation = {A five-volume book cited as a whole. This is a \texttt{book} entry, note the + \texttt{volumes} field} +} + +@Book{knuth:ct:a, + hyphenation = {american}, + sortyear = {1984-1}, + sorttitle = {Computers & Typesetting A}, + indexsorttitle = {The TeXbook}, + author = {Knuth, Donald E.}, + indextitle = {\TeX book, The}, + title = {The \TeX book}, + shorttitle = {\TeX book}, + maintitle = {Computers \& Typesetting}, + volume = {A}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1984}, + annotation = {The first volume of a five-volume book. Note the \texttt{sorttitle} and + \texttt{sortyear} fields. We want this volume to be listed after the entry + referring to the entire five-volume set. Also note the \texttt{indextitle} and + \texttt{indexsorttitle} fields} +} + +@Book{knuth:ct:b, + hyphenation = {american}, + sortyear = {1986-1}, + sorttitle = {Computers & Typesetting B}, + indexsorttitle = {TeX: The Program}, + author = {Knuth, Donald E.}, + title = {\TeX: The Program}, + shorttitle = {\TeX}, + maintitle = {Computers \& Typesetting}, + volume = {B}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1986}, + annotation = {The second volume of a five-volume book. Note the \texttt{sorttitle} and + \texttt{sortyear} fields. Also note the \texttt{indexsorttitle} field} +} + +@Book{knuth:ct:c, + hyphenation = {american}, + sortyear = {1986-2}, + sorttitle = {Computers & Typesetting C}, + author = {Knuth, Donald E.}, + indextitle = {METAFONTbook, The}, + title = {The METAFONTbook}, + shorttitle = {METAFONTbook}, + maintitle = {Computers \& Typesetting}, + volume = {C}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1986}, + annotation = {The third volume of a five-volume book. Note the \texttt{sorttitle} and + \texttt{sortyear} fields as well as the \texttt{indextitle} field} +} + +@Book{knuth:ct:d, + hyphenation = {american}, + sortyear = {1986-3}, + sorttitle = {Computers & Typesetting D}, + author = {Knuth, Donald E.}, + title = {METAFONT: The Program}, + shorttitle = {METAFONT}, + maintitle = {Computers \& Typesetting}, + volume = {D}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1986}, + annotation = {The fourth volume of a five-volume book. Note the \texttt{sorttitle} and + \texttt{sortyear} fields} +} + +@Book{knuth:ct:e, + hyphenation = {american}, + sortyear = {1986-4}, + sorttitle = {Computers & Typesetting E}, + author = {Knuth, Donald E.}, + title = {Computer Modern Typefaces}, + maintitle = {Computers \& Typesetting}, + volume = {E}, + publisher = {Addison-Wesley}, + location = {Reading, Mass.}, + date = {1986}, + annotation = {The fifth volume of a five-volume book. Note the \texttt{sorttitle} and + \texttt{sortyear} fields} +} + +@Book{malinowski, + hyphenation = {british}, + author = {Malinowski, Bronis{\l}aw}, + title = {Argonauts of the Western Pacific}, + subtitle = {An account of native enterprise and adventure in the Archipelagoes of + Melanesian New Guinea}, + shorttitle = {Argonauts}, + edition = {8}, + publisher = {Routledge and Kegan Paul}, + location = {London}, + date = {1972}, + annotation = {This is a \texttt{book} entry. Note the format of the \texttt{publisher} and + \texttt{edition} fields as well as the \texttt{subtitle} field} +} + +@Book{maron, + hyphenation = {american}, + author = {Maron, Monika}, + translator = {Brigitte Goldstein}, + title = {Animal Triste}, + shorttitle = {Animal Triste}, + publisher = {University of Nebraska Press}, + location = {Lincoln}, + date = {2000}, + origlanguage = {german}, + annotation = {An English translation of a German novel with a French title. In other words: a + \texttt{book} entry with a \texttt{translator} field. Note the + \texttt{origlanguage} field which is concatenated with the \texttt{translator}} +} + +@Book{massa, + hyphenation = {british}, + author = {Werner Massa}, + title = {Crystal structure determination}, + edition = {2}, + publisher = {Spinger}, + location = {Berlin}, + date = {2004}, + annotation = {A \texttt{book} entry with an \texttt{edition} field} +} + +@Book{nietzsche:ksa, + hyphenation = {german}, + sortyear = {1988-00-000}, + sorttitle = {Werke-00-000}, + indexsorttitle = {Samtliche Werke}, + author = {Nietzsche, Friedrich}, + editor = {Colli, Giorgio and Montinari, Mazzino}, + title = {S{\"a}mtliche Werke}, + subtitle = {Kritische Studienausgabe}, + volumes = {15}, + edition = {2}, + publisher = dtv # { and Walter de Gruyter}, + location = {M{\"u}nchen and Berlin and New York}, + date = {1988}, + annotation = {The critical edition of Nietzsche's works. This is a \texttt{book} entry + referring to a 15-volume work as a whole. Note the \texttt{volumes} field and + the format of the \texttt{publisher} and \texttt{location} fields in the + database file. Also note the \texttt{sorttitle} and \texttt{sortyear} fields + which are used to fine-tune the sorting order of the bibliography. We want this + item listed first in the bibliography} +} + +@Book{nietzsche:ksa1, + hyphenation = {german}, + sortyear = {1988-01-000}, + sorttitle = {Werke-01-000}, + indexsorttitle = {Samtliche Werke I}, + author = {Nietzsche, Friedrich}, + bookauthor = {Nietzsche, Friedrich}, + editor = {Colli, Giorgio and Montinari, Mazzino}, + indextitle = {S{\"a}mtliche Werke I}, + title = {Die Geburt der Trag{\"o}die. Unzeitgem{\"a}{\ss}e Betrachtungen I--IV. + Nachgelassene Schriften 1870--1973}, + shorttitle = {S{\"a}mtliche Werke I}, + maintitle = {S{\"a}mtliche Werke}, + mainsubtitle = {Kritische Studienausgabe}, + volume = {1}, + edition = {2}, + publisher = dtv # { and Walter de Gruyter}, + location = {M{\"u}nchen and Berlin and New York}, + date = {1988}, + annotation = {A single volume from the critical edition of Nietzsche's works. This + \texttt{book} entry explicitly refers to the first volume only. Note the + \texttt{title} and \texttt{maintitle} fields. Also note the \texttt{sorttitle} + and \texttt{sortyear} fields. We want this entry to be listed after the entry + referring to the entire edition} +} + +@Book{nussbaum, + keywords = {secondary}, + hyphenation = {american}, + sorttitle = {Aristotle's De Motu Animalium}, + indexsorttitle = {Aristotle's De Motu Animalium}, + author = {Nussbaum, Martha}, + title = {Aristotle's \mkbibquote{De Motu Animalium}}, + publisher = pup, + location = {Princeton}, + date = {1978}, + annotation = {A \texttt{book} entry. Note the \texttt{sorttitle} and \texttt{indexsorttitle} + fields and the markup of the quotes in the database file} +} + +@Book{piccato, + hyphenation = {american}, + author = {Piccato, Pablo}, + title = {City of Suspects}, + subtitle = {Crime in Mexico City, 1900--1931}, + shorttitle = {City of Suspects}, + publisher = {Duke University Press}, + location = {Durham and London}, + date = {2001}, + annotation = {This is a \texttt{book} entry. Note the format of the \texttt{location} field + in the database file} +} + +@Book{vangennep, + options = {useprefix}, + hyphenation = {french}, + sorttitle = {Rites de passage}, + author = {van Gennep, Arnold}, + indextitle = {Rites de passage, Les}, + title = {Les rites de passage}, + shorttitle = {Rites de passage}, + publisher = {Nourry}, + location = {Paris}, + date = {1909}, + annotation = {A \texttt{book} entry. Note the format of the printed name and compare the + \texttt{useprefix} option in the \texttt{options} field as well as + \texttt{brandt} and \texttt{geer}} +} + +@Book{vazques-de-parga, + hyphenation = {spanish}, + sorttitle = {Peregrinaciones a Santiago de Compostela}, + author = {V{\'a}zques{ de }Parga, Luis and Lacarra, Jos{\'e} Mar{\'i}a and Ur{\'i}a + R{\'i}u, Juan}, + indextitle = {Peregrinaciones a Santiago de Compostela, Las}, + title = {Las Peregrinaciones a Santiago de Compostela}, + shorttitle = {Peregrinaciones}, + volumes = {3}, + publisher = {Iberdrola}, + location = {Pamplona}, + date = {1993}, + note = {Ed. facs. de la realizada en 1948--49}, + annotation = {A multivolume book cited as a whole. This is a \texttt{book} entry with + \texttt{volumes}, \texttt{note}, \texttt{sorttitle}, and \texttt{indextitle} fields} +} + +@Book{worman, + hyphenation = {american}, + sorttitle = {Cast of Character}, + author = {Worman, Nancy}, + indextitle = {Cast of Character, The}, + title = {The Cast of Character}, + subtitle = {Style in Greek Literature}, + shorttitle = {Cast of Character}, + publisher = {University of Texas Press}, + location = {Austin}, + date = {2002}, + annotation = {A \texttt{book} entry. Note the \texttt{sorttitle} and \texttt{indextitle} + fields} +} + +@Collection{britannica, + options = {useeditor=false}, + label = {EB}, + hyphenation = {british}, + sorttitle = {Encyclop{\ae}dia Britannica}, + editor = {Preece, Warren E.}, + indextitle = {Encyclop{\ae}dia Britannica, The New}, + title = {The New Encyclop{\ae}dia Britannica}, + shorttitle = {Encyclop{\ae}dia Britannica}, + volumes = {32}, + edition = {15}, + publisher = {Encyclop{\ae}dia Britannica}, + location = {Chicago, Ill.}, + date = {2003}, + annotation = {This is a \texttt{collection} entry for an encyclopedia. Note the + \texttt{useeditor} option in the \texttt{options} field as well as the + \texttt{sorttitle} field. We want this entry to be cited and alphabetized by + title even though there is an editor. In addition to that, we want the title to + be alphabetized under \enquote*{E} rather than \enquote*{T}. Also note the + \texttt{label} field which is provided for author-year citation styles} +} + +@Collection{gaonkar, + hyphenation = {american}, + editor = {Gaonkar, Dilip Parameshwar}, + title = {Alternative Modernities}, + publisher = {Duke University Press}, + location = {Durham and London}, + date = {2001}, + isbn = {0-822-32714-7}, + annotation = {This is a \texttt{collection} entry. Note the format of the \texttt{location} + field in the database file as well as the \texttt{isbn} field} +} + +@Collection{jaffe, + editor = {Jaff{\'e}, Philipp}, + editora = {Loewenfeld, Samuel and Kaltenbrunner, Ferdinand and Ewald, Paul}, + editoratype = {redactor}, + indextitle = {Regesta Pontificum Romanorum}, + title = {Regesta Pontificum Romanorum ab condita ecclesia ad annum post Christum natum + \textsc{mcxcviii}}, + shorttitle = {Regesta Pontificum Romanorum}, + volumes = {2}, + edition = {2}, + location = {Leipzig}, + date = {1885/1888}, + annotation = {A \texttt{collection} entry with \texttt{edition} and \texttt{volumes} fields. + Note the \texttt{editora} and \texttt{editoratype} fields} +} + +@Collection{westfahl:frontier, + hyphenation = {american}, + editor = {Westfahl, Gary}, + title = {Space and Beyond}, + subtitle = {The Frontier Theme in Science Fiction}, + booktitle = {Space and Beyond}, + booksubtitle = {The Frontier Theme in Science Fiction}, + publisher = {Greenwood}, + location = {Westport, Conn. and London}, + date = {2000}, + annotation = {This is a \texttt{collection} entry. Note the format of the \texttt{location} + field as well as the \texttt{subtitle} and \texttt{booksubtitle} fields} +} + +@InBook{kant:kpv, + shorthand = {KpV}, + hyphenation = {german}, + author = {Kant, Immanuel}, + bookauthor = {Kant, Immanuel}, + title = {Kritik der praktischen Vernunft}, + shorttitle = {Kritik der praktischen Vernunft}, + booktitle = {Kritik der praktischen Vernunft. Kritik der Urtheilskraft}, + maintitle = {Kants Werke. Akademie Textausgabe}, + volume = {5}, + publisher = {Walter de Gruyter}, + location = {Berlin}, + date = {1968}, + pages = {1--163}, + annotation = {An edition of Kant's \emph{Collected Works}, volume five. This is an + \texttt{inbook} entry which explicitly refers to the \emph{Critique of Practical + Reason} only, not to the entire fifth volume. Note the \texttt{author} and + \texttt{bookauthor} fields in the database file. By default, the + \texttt{bookauthor} is omitted if the values of the \texttt{author} and + \texttt{bookauthor} fields are identical} +} + +@InBook{kant:ku, + shorthand = {KU}, + hyphenation = {german}, + author = {Kant, Immanuel}, + bookauthor = {Kant, Immanuel}, + title = {Kritik der Urtheilskraft}, + booktitle = {Kritik der praktischen Vernunft. Kritik der Urtheilskraft}, + maintitle = {Kants Werke. Akademie Textausgabe}, + volume = {5}, + publisher = {Walter de Gruyter}, + location = {Berlin}, + date = {1968}, + pages = {165--485}, + annotation = {An edition of Kant's \emph{Collected Works}, volume five. This is an + \texttt{inbook} entry which explicitly refers to the \emph{Critique of Judgment} + only, not to the entire fifth volume} +} + +@InBook{nietzsche:historie, + hyphenation = {german}, + sortyear = {1988-01-243}, + sorttitle = {Werke-01-243}, + indexsorttitle = {Vom Nutzen und Nachtheil der Historie fur das Leben}, + author = {Nietzsche, Friedrich}, + bookauthor = {Nietzsche, Friedrich}, + editor = {Colli, Giorgio and Montinari, Mazzino}, + indextitle = {Vom Nutzen und Nachtheil der Historie f{\"u}r das Leben}, + title = {Unzeitgem{\"a}sse Betrachtungen. Zweites St{\"u}ck}, + subtitle = {Vom Nutzen und Nachtheil der Historie f{\"u}r das Leben}, + shorttitle = {Vom Nutzen und Nachtheil der Historie}, + booktitle = {Die Geburt der Trag{\"o}die. Unzeitgem{\"a}{\ss}e Betrachtungen I--IV. + Nachgelassene Schriften 1870--1973}, + maintitle = {S{\"a}mtliche Werke}, + mainsubtitle = {Kritische Studienausgabe}, + volume = {1}, + publisher = dtv # { and Walter de Gruyter}, + location = {M{\"u}nchen and Berlin and New York}, + date = {1988}, + pages = {243--334}, + annotation = {A single essay from the critical edition of Nietzsche's works. This + \texttt{inbook} entry explicitly refers to an essay found in the first volume. + Note the \texttt{title}, \texttt{booktitle}, and \texttt{maintitle} fields. Also + note the \texttt{sorttitle} and \texttt{sortyear} fields. We want this entry to + be listed after the entry referring to the entire first volume} +} + +@InCollection{brandt, + options = {useprefix=false}, + hyphenation = {german}, + indexsorttitle = {Nordischen Lander von der Mitte des 11. Jahrhunderts bis 1448}, + author = {von Brandt, Ahasver and Erich Hoffmann}, + editor = {Ferdinand Seibt}, + indextitle = {Nordischen L{\"a}nder von der Mitte des 11.~Jahrhunderts bis 1448, Die}, + title = {Die nordischen L{\"a}nder von der Mitte des 11.~Jahrhunderts bis 1448}, + shorttitle = {Die nordischen L{\"a}nder}, + booktitle = {Europa im Hoch- und Sp{\"a}tmittelalter}, + series = {Handbuch der europ{\"a}ischen Geschichte}, + number = {2}, + publisher = {Klett-Cotta}, + location = {Stuttgart}, + date = {1987}, + pages = {884--917}, + annotation = {An \texttt{incollection} entry with a \texttt{series} and a \texttt{number}. + Note the format of the printed name and compare the \texttt{useprefix} option in + the \texttt{options} field as well as \texttt{vangennep}. Also note the + \texttt{indextitle, and \texttt{indexsorttitle} fields}} +} + +@InCollection{hyman, + keywords = {secondary}, + hyphenation = {american}, + author = {Arthur Hyman}, + editor = {O'Meara, Dominic J.}, + indextitle = {Aristotle's Theory of the Intellect}, + title = {Aristotle's Theory of the Intellect and its Interpretation by Averroes}, + shorttitle = {Aristotle's Theory of the Intellect}, + booktitle = {Studies in Aristotle}, + series = {Studies in Philosophy and the History of Philosophy}, + number = {9}, + publisher = {The Catholic University of America Press}, + location = {Washington, D.C.}, + date = {1981}, + pages = {161--191}, + annotation = {An \texttt{incollection} entry with a \texttt{series} and \texttt{number} field} +} + +@InCollection{pines, + keywords = {secondary}, + hyphenation = {american}, + author = {Pines, Shlomo}, + editor = {Twersky, Isadore}, + indextitle = {Limitations of Human Knowledge According to Al-Farabi, ibn Bajja, and + Maimonides, The}, + title = {The Limitations of Human Knowledge According to Al-Farabi, ibn Bajja, and + Maimonides}, + shorttitle = {Limitations of Human Knowledge}, + booktitle = {Studies in Medieval Jewish History and Literature}, + publisher = hup, + location = {Cambridge, Mass.}, + date = {1979}, + pages = {82--109}, + annotation = {A typical \texttt{incollection} entry. Note the \texttt{indextitle} field} +} + +@InProceedings{moraux, + keywords = {secondary}, + hyphenation = {french}, + indexsorttitle = {De Anima dans la tradition grecque}, + author = {Moraux, Paul}, + editor = {Lloyd, G. E. R. and Owen, G. E. L.}, + indextitle = {\emph{De Anima} dans la tradition gr{\`e}cque, Le}, + title = {Le \emph{De Anima} dans la tradition gr{\`e}cque}, + subtitle = {Quelques aspects de l'interpretation du trait{\'e}, de Theophraste {\`a} + Themistius}, + shorttitle = {\emph{De Anima} dans la tradition gr{\`e}cque}, + booktitle = {Aristotle on Mind and the Senses}, + booktitleaddon = {Proceedings of the Seventh Symposium Aristotelicum}, + eventdate = {1975}, + publisher = cup, + location = {Cambridge}, + date = {1979}, + pages = {281--324}, + annotation = {This is a typical \texttt{inproceedings} entry. Note the \texttt{booksubtitle}, + \texttt{shorttitle}, \texttt{indextitle}, and \texttt{indexsorttitle} fields. + Also note the \texttt{eventdate} field.} +} + +@InProceedings{stdmodel:salam, + entryset = {stdmodel}, + author = {Salam, Abdus}, + editor = {Svartholm, Nils}, + title = {Weak and Electromagnetic Interactions}, + booktitle = {Elementary particle theory}, + booksubtitle = {Relativistic groups and analyticity}, + booktitleaddon = {Proceedings of the Eighth Nobel Symposium}, + eventdate = {1968-05-19/1968-05-25}, + venue = {Aspen{\"a}sgarden, Lerum}, + publisher = {Almquist \& Wiksell}, + location = {Stockholm}, + date = {1968}, + pages = {367\psqq} +} + +@Manual{cms, + label = {CMS}, + hyphenation = {american}, + sorttitle = {Chicago Manual of Style}, + indextitle = {Chicago Manual of Style, The}, + title = {The Chicago Manual of Style}, + subtitle = {The Essential Guide for Writers, Editors, and Publishers}, + shorttitle = {Chicago Manual of Style}, + edition = {15}, + publisher = {University of Chicago Press}, + location = {Chicago, Ill.}, + date = {2003}, + isbn = {0-226-10403-6}, + annotation = {This is a \texttt{manual} entry without an \texttt{author} or \texttt{editor}. + Note the \texttt{label} field in the database file which is provided for + author-year citation styles. Also note the \texttt{sorttitle} and + \texttt{indextitle} fields. By default, all entries without an \texttt{author} + or \texttt{editor} are alphabetized by \texttt{title} but we want this entry to + be alphabetized under \enquote*{C} rather than \enquote*{T}. There's also an + \texttt{isbn} field} +} + +@Online{baez/online, + hyphenation = {american}, + author = {Baez, John C. and Lauda, Aaron D.}, + title = {Higher-Dimensional Algebra V: 2-Groups}, + version = {3}, + date = {2004-10-27}, + eprint = {math/0307200v3}, + eprinttype = {arxiv}, + annotation = {An \texttt{online} reference from arXiv. Note the \texttt{eprint} and + \texttt{eprinttype} fields. Also note that the arXiv reference is transformed + into a clickable link if \texttt{hyperref} support has been enabled. Compare + \texttt{baez\slash article} which is the same item given as an \texttt{article} + entry with eprint information} +} + +@Online{ctan, + label = {CTAN}, + hyphenation = {american}, + title = {CTAN}, + subtitle = {The Comprehensive TeX Archive Network}, + date = {2006}, + url = {http://www.ctan.org}, + urldate = {2006-10-01}, + annotation = {This is an \texttt{online} entry. The \textsc{url}, which is given in the + \texttt{url} field, is transformed into a clickable link if \texttt{hyperref} + support has been enabled. Note the format of the \texttt{urldate} field + (\texttt{yyyy-mm-dd}) in the database file. Also note the \texttt{label} field + which may be used as a fallback by citation styles which need an \texttt{author} + and\slash or a \texttt{year}} +} + +@Online{itzhaki, + hyphenation = {american}, + author = {Itzhaki, Nissan}, + title = {Some remarks on 't Hooft's S-matrix for black holes}, + version = {1}, + date = {1996-03-11}, + eprint = {hep-th/9603067}, + eprinttype = {arxiv}, + annotation = {An \texttt{online} reference from arXiv. Note the \texttt{eprint} and + \texttt{eprinttype} fields. Also note that the arXiv reference is transformed + into a clickable link if \texttt{hyperref} support has been enabled}, + abstract = {We discuss the limitations of 't Hooft's proposal for the black hole S-matrix. + We find that the validity of the S-matrix implies violation of the + semi-classical approximation at scales large compared to the Planck scale. We + also show that the effect of the centrifugal barrier on the S-matrix is crucial + even for large transverse distances.} +} + +@Online{markey, + hyphenation = {american}, + sorttitle = {Tame the Beast}, + author = {Markey, Nicolas}, + title = {Tame the BeaST}, + subtitle = {The B to X of BibTeX}, + version = {1.3}, + date = {2005-10-16}, + url = {http://tug.ctan.org/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf}, + urldate = {2006-10-01}, + annotation = {An \texttt{online} entry for a tutorial. Note the format of the \texttt{date} + field (\texttt{yyyy-mm-dd}) in the database file.} +} + +@Patent{almendro, + hyphenation = {german}, + author = {Almendro, Jos{\'e} L. and Mart{\'i}n, Jacinto and S{\'a}nchez, Alberto and + Nozal, Fernando}, + title = {Elektromagnetisches Signalhorn}, + number = {EU-29702195U}, + location = {countryfr and countryuk and countryde}, + date = {1998}, + annotation = {This is a \texttt{patent} entry with a \texttt{location} field. The number is + given in the \texttt{number} field. Note the format of the \texttt{location} + field in the database file. Compare \texttt{laufenberg}, \texttt{sorace}, and + \texttt{kowalik}} +} + +@Patent{kowalik, + hyphenation = {french}, + author = {Kowalik, F. and Isard, M.}, + indextitle = {Estimateur d'un d{\'e}faut de fonctionnement}, + title = {Estimateur d'un d{\'e}faut de fonctionnement d'un modulateur en quadrature et + {\'e}tage de modulation l'utilisant}, + type = {patreqfr}, + number = {9500261}, + date = {1995-01-11}, + annotation = {This is a \texttt{patent} entry for a French patent request with a full date. + The number is given in the \texttt{number} field. Note the format of the + \texttt{type} and \texttt{date} fields in the database file. Compare + \texttt{almendro}, \texttt{laufenberg}, and \texttt{sorace}} +} + +@Patent{laufenberg, + hyphenation = {german}, + author = {Laufenberg, Xaver and Eynius, Dominique and Suelzle, Helmut and Usbeck, Stephan + and Spaeth, Matthias and Neuser-Hoffmann, Miriam and Myrzik, Christian and + Schmid, Manfred and Nietfeld, Franz and Thiel, Alexander and Braun, Harald and + Ebner, Norbert}, + holder = {{Robert Bosch GmbH} and {Daimler Chrysler AG} and {Bayerische Motoren Werke + AG}}, + title = {Elektrische Einrichtung und Betriebsverfahren}, + type = {patenteu}, + number = {1700367}, + date = {2006-09-13}, + annotation = {This is a \texttt{patent} entry with a \texttt{holder} field. Note the format + of the \texttt{type} and \texttt{location} fields in the database file. Compare + \texttt{almendro}, \texttt{sorace}, and \texttt{kowalik}}, + abstract = {The invention relates to an electric device comprising a generator, in + particular for use in the vehicle electric system of a motor vehicle and a + controller for controlling the generator voltage. The device is equipped with a + control zone, in which the voltage is controlled and zones, in which the torque + is controlled. The invention also relates to methods for operating a device of + this type.}, + file = {http://v3.espacenet.com/textdoc?IDX=EP1700367} +} + +@Patent{sorace, + hyphenation = {american}, + author = {Sorace, Ronald E. and Reinhardt, Victor S. and Vaughn, Steven A.}, + holder = {{Hughes Aircraft Company}}, + title = {High-Speed Digital-to-RF Converter}, + type = {patentus}, + number = {5668842}, + date = {1997-09-16}, + annotation = {This is a \texttt{patent} entry with a \texttt{holder} field. Note the format + of the \texttt{type} and \texttt{date} fields in the database file. Compare + \texttt{almendro}, \texttt{laufenberg}, and \texttt{kowalik}} +} + +@Report{chiu, + hyphenation = {american}, + sorttitle = {Hybrid Hierarchical Model of a Multiple Virtual Storage (MVS) Operating + System}, + author = {Chiu, Willy W. and Chow, We Min}, + indextitle = {Hybrid Hierarchical Model, A}, + title = {A Hybrid Hierarchical Model of a Multiple Virtual Storage (MVS) Operating + System}, + institution = {IBM}, + type = {resreport}, + number = {RC-6947}, + date = {1978}, + annotation = {This is a \texttt{report} entry for a research report. Note the format of the + \texttt{type} field in the database file which uses a localization key. The + number of the report is given in the \texttt{number} field. Also note the + \texttt{sorttitle} and \texttt{indextitle} fields} +} + +@Report{padhye, + hyphenation = {american}, + sorttitle = {A Stochastic Model of TCP Reno Congestion Avoidance and Control}, + author = {Padhye, Jitendra and Firoiu, Victor and Towsley, Don}, + indextitle = {Stochastic Model of TCP Reno Congestion Avoidance and Control, A}, + title = {A Stochastic Model of TCP Reno Congestion Avoidance and Control}, + institution = {University of Massachusetts}, + type = {techreport}, + number = {99-02}, + location = {Amherst, Mass.}, + date = {1999}, + annotation = {This is a \texttt{report} entry for a technical report. Note the format of the + \texttt{type} field in the database file which uses a localization key. The + number of the report is given in the \texttt{number} field. Also note the + \texttt{sorttitle} and \texttt{indextitle} fields}, + abstract = {The steady state performance of a bulk transfer TCP flow (i.e. a flow with a + large amount of data to send, such as FTP transfers) may be characterized by + three quantities. The first is the send rate, which is the amount of data sent + by the sender in unit time. The second is the throughput, which is the amount of + data received by the receiver in unit time. Note that the throughput will always + be less than or equal to the send rate due to losses. Finally, the number of + non-duplicate packets received by the receiver in unit time gives us the goodput + of the connection. The goodput is always less than or equal to the throughput, + since the receiver may receive two copies of the same packet due to + retransmissions by the sender. In a previous paper, we presented a simple model + for predicting the steady state send rate of a bulk transfer TCP flow as a + function of loss rate and round trip time. In this paper, we extend that work in + two ways. First, we analyze the performance of bulk transfer TCP flows using + more precise, stochastic analysis. Second, we build upon the previous analysis + to provide both an approximate formula as well as a more accurate stochastic + model for the steady state throughput of a bulk transfer TCP flow.}, + file = {ftp://gaia.cs.umass.edu/pub/Padhey99-markov.ps} +} + +@Thesis{geer, + options = {useprefix=false}, + hyphenation = {british}, + author = {de Geer, Ingrid}, + title = {Earl, Saint, Bishop, Skald~-- and Music}, + subtitle = {The Orkney Earldom of the Twelfth Century. A Musicological Study}, + institution = {Uppsala Universitet}, + type = {phdthesis}, + location = {Uppsala}, + date = {1985}, + annotation = {This is a typical \texttt{thesis} entry for a PhD thesis. Note the + \texttt{type} field in the database file which uses a localization key. Also + note the format of the printed name and compare the \texttt{useprefix} option in + the \texttt{options} field as well as \texttt{vangennep}} +} + +@Thesis{loh, + hyphenation = {american}, + author = {Loh, Nin C.}, + title = {High-Resolution Micromachined Interferometric Accelerometer}, + institution = {Massachusetts Institute of Technology}, + type = {mathesis}, + location = {Cambridge, Mass.}, + date = {1992}, + annotation = {This is a typical \texttt{thesis} entry for an MA thesis. Note the + \texttt{type} field in the database file which uses a localization key} +} |