summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex
blob: a633e21fc0f0136dc7de7efc01ed5944d8f15a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
\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={2.1.0},
	date={30/10/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 for  \bibtype{book}, \bibtype{bookinbook}, \bibtype{bookinarticle}, \bibtype{bookinincollection}, \bibtype{mvbook}, \bibtype{inbook}:
\begin{enumerate}
	

	\item Changing label name to author only, never editor.
	\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 French, changing \enquote{\selectlanguage{french}dir.} by \enquote{\selectlanguage{french}éd.}.
	\item Printing only the author name  before the title, and never the editor, even if the book is anonymous.
		
\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}
\subsection{Making exceptions}

If you want to use the \bibfield{editor} or \bibfield{translator} for a entry concerned by this package (e.g. \bibtype{book}, \bibtype{bookinbook} etc.), you can use the \verb+useeditor=true+ or \verb+usetranslator=true+ 
option in the \bibfield{options} field. However, in many case, such entry should be a \bibtype{proceedings} or \bibtype{collection}. 
\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/Gestions-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}{2.1.0}{2014-10-30}
\item Coming back, and improve, the \verb+anonymous+ sorting scheme.
\end{release}

\begin{release}{2.0.0}{2014-10-27}
\item Use less complex code, and more \enquote{biblatex friendly} code to suppress editor and translator.
\item Compatibility with \bibtype{bookinincollection} type.
\end{release}

\begin{release}{1.0.0}{2014-07-23}
\item First public release.
\end{release}
\end{changelog}
\end{document}