summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-04-09 22:39:28 +0000
committerKarl Berry <karl@freefriends.org>2017-04-09 22:39:28 +0000
commit07cc5c2480421e2ca1ca9fd8e58897a4c42dc0e7 (patch)
tree2d987fc31c6c296d04ae22e1985423cd860035ed /Master/texmf-dist/doc/latex
parenta62d427cc23b32f39be7c5c901c3cb0fb985edc6 (diff)
biblatex-claves (9apr17)
git-svn-id: svn://tug.org/texlive/trunk@43723 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdfbin85397 -> 86947 bytes
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.tex25
2 files changed, 22 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf b/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf
index b54b5a8ce1b..c308324f957 100644
--- a/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf
+++ b/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.tex b/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.tex
index 7b7debc1b91..63e2fda4af5 100644
--- a/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.tex
+++ b/Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.tex
@@ -24,8 +24,8 @@
subtitle={New fields},
email={maieul <at> maieul <dot> net},
author={Maïeul Rouquette},
- revision={1.1.0},
- date={2016/09/25},
+ revision={1.2.0},
+ date={2017/04/09},
url={https://git.framasoft.org/maieul/biblatex-claves}}
\usepackage[citestyle=verbose,bibstyle=claves]{biblatex}
@@ -106,7 +106,11 @@ You can redefine:
\begin{itemize}
\item The \cs{multiclavesseparator} macro, which defines which character will be typeset between the different \claves\ identifiers. By default, a semicolon.
\item The \cs{clavisseparator} macro, which defines which character will be typeset between the \clavis abbreviated form and the \clavis identifier. By default, just a space.
- \item The \verb+claves+ fieldformat, which define the way all the \claves and identifier will be typeset.
+ \item The \verb+claves+ fieldformat, which defines the way all the \claves and identifier will be typeset. By default, in brackets.
+ \item The \cs{clavisformat} macro, which defines the way individual clavis abbreviation will by typse. For example, if you want italic/emphaze, use:
+ \begin{minted}{latex}
+\renewcommand{\clavisformat}[1]{\emph{#1}}
+ \end{minted}
By default, between parenthesis.
\end{itemize}
Note that you must use the \biblatex\ punctuation macro.
@@ -164,6 +168,16 @@ Note the following points:
\end{minted}
\end{itemize}
+\section{Knowing if an entry is used as \emph{clavis}}
+
+You may want to know if an entry is a \emph{clavis}, that is its entrykey was added to \cs{AddBiblatexClavis}. To test it, you must use
+
+\begin{minted}{latex}
+\iffieldundef{claves_definition}%
+ {<If not a clavis>}%
+ {<If a clavis>}%
+\end{minted}
+
\section{Notes about inheritance}
The \bibfield{claves} field are not inherited from the main entry when a subentry is an \bibtype{inbook} entry.
@@ -180,6 +194,11 @@ All issues can be submitted, in French or English, in the Framasoft issues page.
\begin{changelog}
+\begin{release}{1.2.0}{2017-04-09}
+\item Mark the entries used as \emph{claves} with \bibfield{claves\_definition} field.
+\item Add \cs{clavisformat} macro, for more customization.
+\end{release}
+
\begin{release}{1.1.0}{2016-09-25}
\item Prevent inheritance of the \bibfield{claves} field for \bibtype{inbook} entries.
\end{release}