From d7e94044ef74416e843bd3e064b8d08cc64d53e1 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 1 Mar 2016 23:36:36 +0000 Subject: biblatex-realauthor (28feb16) git-svn-id: svn://tug.org/texlive/trunk@39908 c570f23f-e606-0410-a88d-b1316a301751 --- .../documentation/biblatex-realauthor.pdf | Bin 68015 -> 68165 bytes .../documentation/biblatex-realauthor.tex | 14 +++++--- .../documentation/example-realauthor.bib | 37 +++++++++++++++++++++ .../documentation/example-realauthor.pdf | Bin 0 -> 8819 bytes .../documentation/example-realauthor.tex | 33 ++++++++++++++++++ .../biblatex-realauthor/documentation/example.bib | 37 --------------------- .../biblatex-realauthor/documentation/example.pdf | Bin 8821 -> 0 bytes .../biblatex-realauthor/documentation/example.tex | 33 ------------------ .../biblatex-realauthor/documentation/makefile | 7 ++-- .../doc/latex/biblatex-realauthor/makefile | 2 +- 10 files changed, 84 insertions(+), 79 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.bib create mode 100644 Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf create mode 100644 Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.tex delete mode 100644 Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.bib delete mode 100644 Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.pdf delete mode 100644 Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.tex (limited to 'Master/texmf-dist/doc') diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf index 8449993a87c..8aedd9f2d26 100644 Binary files a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf and b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf differ diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex index 65581a76075..7b5e3b670b8 100644 --- a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex +++ b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex @@ -20,13 +20,13 @@ subtitle={New data field}, email={maieul maieul net}, author={Maïeul Rouquette}, - revision={2.2.0}, - date={26/04/2015}, + revision={2.2.1}, + date={28/02/2016}, url={https://github.com/maieul/biblatex-realauthor}} % biblatex \usepackage[bibstyle=realauthor,citestyle=verbose]{biblatex} -\addbibresource{example.bib} +\addbibresource{example-realauthor.bib} \begin{document} @@ -41,7 +41,7 @@ The standard biblatex fields allow to describe the author of a work, with the so \subsection{The .bib file} Basically, you just have to add the real author name in the field \bibfield{realauthor}, like in the two following examples: -\inputminted{tex}{example.bib} +\inputminted{tex}{example-realauthor.bib} \subsection{Loading of the \biblatex package} @@ -131,10 +131,14 @@ All issues can be submitted, in French or English, in the GitHub issues page\foo \section{Change history} \begin{changelog} + \begin{release}{2.2.1}{2016-02-28} + \item Correct description of datamodel specification about which entrytype can have a \bibfield{realauthor} field. + \end{release} + \begin{release}{2.2.0}{2015-04-26} \item Add new \verb|userealauthor| option. Require \biblatex~3.0. \see{userealauthor} - \item Provide good file version in the \cs{ProvidesFile} command. + \item Provides good file version in the \cs{ProvidesFile} command. \end{release} \begin{release}{2.1.0}{2014-10-30} diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.bib b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.bib new file mode 100644 index 00000000000..9ffb7f95ab3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.bib @@ -0,0 +1,37 @@ +@book{LeClerc1686, + Publisher = {Henry Desbordes}, + Realauthor = {Jean le Clerc}, + Title = {Défense des sentimens + De quelques Théologiens de Hollande + sur l'histoire critique du Vieux Testament + contre la réponse du Prieur de Bolleville}, + Year = {1686}} + +@book{Simon1686, + Address = {Rotterdam}, + Author = {{Prieur de Bolleville}}, + Publisher = {Reinier Leers}, + Realauthor = {Richard Simon}, + Title = {Réponse au livre intitulé + sentimens de quelques Theologiens de Hollande + sur l'Histoire Critique du Vieux Testament}, + Year = {1686}} + +@book{noauthor-norealauthor, + Title = {Here an anonymous work}, + } + +@book{noauthor-norealauthor2, + Title = {Why not an other anonymous work?}, + } + +@book{Author+realauthor, + Author = {Theauthor, Name}, + Realauthor= {Therealauthor, Name}, + Title = {That is a work with an author plus a real author}, + } + +@book{Only-realauthor, + Realauthor= {Therealauthor, Name}, + Title = {Here a work with only a real author}, + } diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf new file mode 100644 index 00000000000..49bc337ffd1 Binary files /dev/null and b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf differ diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.tex b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.tex new file mode 100644 index 00000000000..aa95a1a4172 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.tex @@ -0,0 +1,33 @@ +\documentclass{article} + +\usepackage[bibstyle=verbose, citestyle=verbose-trad2,bibstyle=realauthor]{biblatex} + +\bibliography{example-realauthor.bib} + +\begin{document} + +\cite{Author+realauthor} + +\cite{Only-realauthor} + +\cite{noauthor-norealauthor} + +\cite{Author+realauthor} + +\cite{Only-realauthor} + +\cite{noauthor-norealauthor} + +\cite{noauthor-norealauthor2} + +\newrefcontext[sorting=nty] +\printbibliography[title={Default sorting (nty)}] + +\newrefcontext[sorting=realauthor] +\printbibliography[title={realauthor sorting}] + +\newrefcontext[sorting=anonymous+realauthor] +\printbibliography[title={anonymous+realauthor sorting}] + + +\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.bib b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.bib deleted file mode 100644 index 9ffb7f95ab3..00000000000 --- a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.bib +++ /dev/null @@ -1,37 +0,0 @@ -@book{LeClerc1686, - Publisher = {Henry Desbordes}, - Realauthor = {Jean le Clerc}, - Title = {Défense des sentimens - De quelques Théologiens de Hollande - sur l'histoire critique du Vieux Testament - contre la réponse du Prieur de Bolleville}, - Year = {1686}} - -@book{Simon1686, - Address = {Rotterdam}, - Author = {{Prieur de Bolleville}}, - Publisher = {Reinier Leers}, - Realauthor = {Richard Simon}, - Title = {Réponse au livre intitulé - sentimens de quelques Theologiens de Hollande - sur l'Histoire Critique du Vieux Testament}, - Year = {1686}} - -@book{noauthor-norealauthor, - Title = {Here an anonymous work}, - } - -@book{noauthor-norealauthor2, - Title = {Why not an other anonymous work?}, - } - -@book{Author+realauthor, - Author = {Theauthor, Name}, - Realauthor= {Therealauthor, Name}, - Title = {That is a work with an author plus a real author}, - } - -@book{Only-realauthor, - Realauthor= {Therealauthor, Name}, - Title = {Here a work with only a real author}, - } diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.pdf b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.pdf deleted file mode 100644 index 6a6f6452991..00000000000 Binary files a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.pdf and /dev/null differ diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.tex b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.tex deleted file mode 100644 index 72680ae6e51..00000000000 --- a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.tex +++ /dev/null @@ -1,33 +0,0 @@ -\documentclass{article} - -\usepackage[bibstyle=verbose, citestyle=verbose-trad2,bibstyle=realauthor]{biblatex} - -\bibliography{example.bib} - -\begin{document} - -\cite{Author+realauthor} - -\cite{Only-realauthor} - -\cite{noauthor-norealauthor} - -\cite{Author+realauthor} - -\cite{Only-realauthor} - -\cite{noauthor-norealauthor} - -\cite{noauthor-norealauthor2} - -\newrefcontext[sorting=nty] -\printbibliography[title={Default sorting (nty)}] - -\newrefcontext[sorting=realauthor] -\printbibliography[title={realauthor sorting}] - -\newrefcontext[sorting=anonymous+realauthor] -\printbibliography[title={anonymous+realauthor sorting}] - - -\end{document} diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/makefile b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/makefile index 2c554c76c4c..3e4ec899857 100644 --- a/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/makefile +++ b/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/makefile @@ -2,9 +2,10 @@ all: *tex *bib xelatex --shell-escape biblatex-realauthor.tex biber biblatex-realauthor xelatex --shell-escape biblatex-realauthor.tex - xelatex --shell-escape example.tex - biber example - xelatex --shell-escape example.tex + xelatex --shell-escape example-realauthor.tex + biber example-realauthor + xelatex --shell-escape example-realauthor.tex + xelatex --shell-escape example-realauthor.tex clean:realauthor $(MAKE) -C documentation clean diff --git a/Master/texmf-dist/doc/latex/biblatex-realauthor/makefile b/Master/texmf-dist/doc/latex/biblatex-realauthor/makefile index 4ff6a985565..f5a1d2946b3 100644 --- a/Master/texmf-dist/doc/latex/biblatex-realauthor/makefile +++ b/Master/texmf-dist/doc/latex/biblatex-realauthor/makefile @@ -15,5 +15,5 @@ clean: $(MAKE) -C documentation clean @$(RM) *.pdf *.toc *.aux *.out *.fdb_latexmk *.log *.bbl *.bcf *.blg *run.xml *.synctex.gz* -all: documentation/example.tex documentation/biblatex-realauthor.tex documentation/example.bib +all: documentation/example-realauthor.tex documentation/biblatex-realauthor.tex documentation/example-realauthor.bib $(MAKE) -C documentation all -- cgit v1.2.3