diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex b/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex new file mode 100644 index 00000000000..a0ca493c669 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex @@ -0,0 +1,89 @@ +\documentclass{ltxdockit}[2011/03/25] +\usepackage{btxdockit} +\usepackage{fontspec} +\usepackage[mono=false]{libertine} +\usepackage{microtype} +\usepackage[main=english,french,latin]{babel} +\usepackage[strict]{csquotes} +\setmonofont[Scale=MatchLowercase]{DejaVu Sans Mono} +\usepackage{shortvrb} +\usepackage{pifont} +\usepackage{minted} +% Usefull commands +\newcommand{\biblatex}{biblatex\xspace} +\pretocmd{\bibfield}{\sloppy}{}{} +\pretocmd{\bibtype}{\sloppy}{}{} +\newcommand{\namebibstyle}[1]{\texttt{#1}} +% Meta-datas +\titlepage{% + title={Managing anonymous work with biblatex}, + subtitle={}, + email={maieul <at> maieul <dot> net}, + author={Maïeul Rouquette}, + revision={1.0.0}, + date={02/07/2014}, + url={https://github.com/maieul/biblatex-anonymous}} + +\begin{document} + + +\printtitlepage +\tableofcontents + +\section{Introduction} + +In some scholar fields, like history or philology, we have to work with anonymous work. + +This package provides facility to manage them with \biblatex, with citation and bibliography style of the \namebibstyle{verbose} family. + +\section{What does the package do?} + +This package does those things: + +\begin{enumerate} + \item Providing a sorting scheme to put all anonymous work at the begining of a bibliography. This sorting scheme is derivated from \verb+nyt+ scheme. + \item For \bibtype{book}, \bibtype{bookinbook}, \bibtype{bookinarticle}, \bibtype{mvbook}, \bibtype{inbook}: + \begin{itemize} + \item Changing label name to author only, never editor. + \item For French, changing \enquote{\selectlanguage{french}dir.} by \enquote{\selectlanguage{french}éd.} + \end{itemize} + \item For \bibtype{book}, printing only the author name before the title, and never the editor, even if the book is anonymous. If you need to print an editor name when a book has no author, you should use \bibtype{collection} or \bibtype{proceedings} Entry Type. + +\end{enumerate} + +\section{Using the package} + +\subsection{Loading} +You must load the package after \biblatex package: +\begin{minted}{latex} +\usepackage[…]{biblatex} +\usepackage{biblatex-anonymous} +\end{minted} + +\subsection{Sorting with anonymous scheme} + +If you want your bibliographies to have all anonymous works at the begining, you can pass option \verb+sorting=anonymous+: + +\begin{itemize} + \item To \biblatex package, to apply it to all bibliographies. + \item To \cs{printbibliography} command, to apply it to a single bibliography. +\end{itemize} +\section{Credits} + +This package was created for Maïeul Rouquette's phd dissertation\footnote{\url{http://apocryphes.hypothese.org}.} in 2014. It is licensed on the \emph{\LaTeX\ Project Public License}\footnote{\url{http://latex-project.org/lppl/lppl-1-3c.html}.}. + +Its code was explained before (in French) on Maïeul Rouquette website\footnote{\url{http://geekographie.maieul.net/Gestion-des-sources-anonymes-avec};\url{http://geekographie.maieul.net/Tri-des-oeuvres-anonymes}.}. + +All issues can be submitted, in French or English, in the GitHub issues page\footnote{\url{https://github.com/maieul/biblatex-multiple-anonymous/issues}.}. + +\section{Change history} + +\begin{changelog} + + + +\begin{release}{1.0.0}{2014-07-023} +\item First public release. +\end{release} +\end{changelog} +\end{document} |