diff options
author | Karl Berry <karl@freefriends.org> | 2016-03-27 22:18:02 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-03-27 22:18:02 +0000 |
commit | 52bba5c3de1a242eaf6e5b6fe3e7344b55b81f07 (patch) | |
tree | 25dbede37c0f985d33c612767c2f119f8bdc9909 /Master | |
parent | 513cfe82c1eaea7d0951e08cbcd92248367567c8 (diff) |
biblatex-opcit-booktitle (27mar16)
git-svn-id: svn://tug.org/texlive/trunk@40157 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
4 files changed, 15 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf b/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf Binary files differindex 2e6ef0a4316..71373a261e1 100644 --- a/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf +++ b/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf b/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf Binary files differindex bc9a3e5cdc4..7167293ec14 100644 --- a/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf +++ b/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.tex b/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.tex index f64025285fa..49ef89fe351 100644 --- a/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.tex +++ b/Master/texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.tex @@ -22,8 +22,8 @@ subtitle={Abbreviated references}, email={maieul <at> maieul <dot> net}, author={Maïeul Rouquette}, - revision={1.2.0}, - date={2015/10/18}, + revision={1.3.0}, + date={2016/03/27}, url={https://git.framasoft.org/maieul/biblatex-opcit-booktitle}} % biblatex @@ -175,6 +175,10 @@ All issues can be submitted, in French or English, in the Framasoft issues page\ \begin{changelog} +\begin{release}{1.3.0}{2016-03-27} +\item Add \emph{op. cit.} also for verbose-trad1. +\item Set the entry type for the \emph{op. cit.} as the entry type of the main entry. +\end{release} \begin{release}{1.2.0}{2015-10-18} \item Fix bug with internal hyperref. diff --git a/Master/texmf-dist/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty b/Master/texmf-dist/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty index a373b4927c1..23c65dba8f0 100644 --- a/Master/texmf-dist/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty +++ b/Master/texmf-dist/tex/latex/biblatex-opcit-booktitle/biblatex-opcit-booktitle.sty @@ -15,7 +15,7 @@ % % The Current Maintainer of this work is Maïeul Rouquette \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{biblatex-opcit-booktitle}[2015/08/30 v1.2.0 Manage op. cit. when using subentry] +\ProvidesPackage{biblatex-opcit-booktitle}[2016/03/27 v1.3.0 Manage op. cit. when using subentry] \RequirePackage{xpatch} \DeclareFieldFormat{bibhypertarget:crossref}{% @@ -83,7 +83,10 @@ \newbibmacro*{related:info}{% % Here an hack to use the short form of the booktitle without recurring to a .dbx file in order to define new fields (because recurring to a .dbx file for such feature is complex for a little feature) - \entrydata{\thefield{crossref}}{\savefield{shorttitle}{\shortbooktitle}}% + \entrydata{\thefield{crossref}}{% + \savefield{shorttitle}{\shortbooktitle}% + \savefield{entrytype}{\bookentrytype}% + }% \ifdef{\shortbooktitle}% {% \restorefield{booktitle}{\shortbooktitle}% @@ -122,6 +125,9 @@ {\printfield{volume}% \printfield{part}} {}% + \newunit% + \restorefield{entrytype}{\bookentrytype}% + \bibstring[\mkibid]{opcit}% }% \newunit\newblock \usebibmacro{chapter+pages}% @@ -160,6 +166,7 @@ \printfield{part}} {}% \newunit% + \restorefield{entrytype}{\bookentrytype}% \bibstring[\mkibid]{opcit}% }% \newunit\newblock |