diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex-claves')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf | bin | 85397 -> 86947 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.tex | 25 |
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 Binary files differindex 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 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} |