diff options
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/pdfoverlay/README.md | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/pdfoverlay/pdfoverlay.pdf | bin | 547108 -> 547326 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.dtx | 11 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.ins | 2 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/pdfoverlay/pdfoverlay.sty | 6 |
5 files changed, 15 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/latex/pdfoverlay/README.md b/Master/texmf-dist/doc/latex/pdfoverlay/README.md index e08949050c9..0839fc4573d 100644 --- a/Master/texmf-dist/doc/latex/pdfoverlay/README.md +++ b/Master/texmf-dist/doc/latex/pdfoverlay/README.md @@ -58,7 +58,7 @@ l3build install --full ## Licence ``` -Copyright (c) 2018-2020 David Purton <dcpurton@marshwiggle.net> +Copyright (c) 2018-2021 David Purton <dcpurton@marshwiggle.net> This work may be distributed and/or modified under the conditions of the LaTeX Project2 Public License, either version 1.3c of this license diff --git a/Master/texmf-dist/doc/latex/pdfoverlay/pdfoverlay.pdf b/Master/texmf-dist/doc/latex/pdfoverlay/pdfoverlay.pdf Binary files differindex 276775c6e47..0be43b9f9e7 100644 --- a/Master/texmf-dist/doc/latex/pdfoverlay/pdfoverlay.pdf +++ b/Master/texmf-dist/doc/latex/pdfoverlay/pdfoverlay.pdf diff --git a/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.dtx b/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.dtx index 1f7064be067..82fb0e35e31 100644 --- a/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.dtx +++ b/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.dtx @@ -1,6 +1,6 @@ % \iffalse meta-comment % -% Copyright (c) 2018-2020 David Purton <dcpurton@marshwiggle.net> +% Copyright (c) 2018-2021 David Purton <dcpurton@marshwiggle.net> % % This work may be distributed and/or modified under the conditions of % the LaTeX Project Public License, either version 1.3c of this license @@ -21,10 +21,11 @@ % \changes{v1.0}{2018/05/08}{First public release} % \changes{v1.1}{2019/11/03}{Fix deprecated macros} % \changes{v1.2}{2020/10/29}{Update to use \pkg{l3hooks}} +% \changes{v1.2a}{2021/02/25}{Ensure backend loaded before counting pages} % % \title{The \pkg{pdfoverlay} package} % \author{David Purton\thanks{Email: \url{dcpurton@marshwiggle.net}}} -% \date{2020/10/29 v1.2} +% \date{2021/02/25 v1.2a} % % \maketitle % @@ -163,7 +164,7 @@ % % \begin{macrocode} \NeedsTeXFormat{LaTeX2e}[2020-10-01] -\ProvidesExplPackage{pdfoverlay}{2020/10/18}{1.2} +\ProvidesExplPackage{pdfoverlay}{2021/02/25}{1.2a} {Overlay text on an existing PDF document (DCP)} % \end{macrocode} % @@ -424,6 +425,10 @@ } } { + \str_if_exist:NF \c_sys_backend_str + { + \sys_load_backend:n { } + } \sys_if_output_pdf:TF { \sys_if_engine_pdftex:TF diff --git a/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.ins b/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.ins index 743dbdca593..bca23246841 100644 --- a/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.ins +++ b/Master/texmf-dist/source/latex/pdfoverlay/pdfoverlay.ins @@ -1,6 +1,6 @@ \iffalse meta-comment -Copyright (c) 2018-2020 David Purton <dcpurton@marshwiggle.net> +Copyright (c) 2018-2021 David Purton <dcpurton@marshwiggle.net> This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3c of this license diff --git a/Master/texmf-dist/tex/latex/pdfoverlay/pdfoverlay.sty b/Master/texmf-dist/tex/latex/pdfoverlay/pdfoverlay.sty index e5960ecbcd0..93750543a9a 100644 --- a/Master/texmf-dist/tex/latex/pdfoverlay/pdfoverlay.sty +++ b/Master/texmf-dist/tex/latex/pdfoverlay/pdfoverlay.sty @@ -25,7 +25,7 @@ %% and the derived files pdfoverlay.sty and pdfoverlay.pdf %% \NeedsTeXFormat{LaTeX2e}[2020-10-01] -\ProvidesExplPackage{pdfoverlay}{2020/10/18}{1.2} +\ProvidesExplPackage{pdfoverlay}{2021/02/25}{1.2a} {Overlay text on an existing PDF document (DCP)} \RequirePackage{graphicx} \AddToHook { shipout/background } { \__pdfoverlay_output_pdf_page: } @@ -128,6 +128,10 @@ } } { + \str_if_exist:NF \c_sys_backend_str + { + \sys_load_backend:n { } + } \sys_if_output_pdf:TF { \sys_if_engine_pdftex:TF |