texlive[61956] Master/texmf-dist: handoutwithnotes (9feb22)

commits+karl at tug.org commits+karl at tug.org
Wed Feb 9 21:58:20 CET 2022


Revision: 61956
          http://tug.org/svn/texlive?view=revision&revision=61956
Author:   karl
Date:     2022-02-09 21:58:20 +0100 (Wed, 09 Feb 2022)
Log Message:
-----------
handoutwithnotes (9feb22)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/handoutwithnotes/README.md
    trunk/Master/texmf-dist/doc/latex/handoutwithnotes/handoutWithNotes.pdf
    trunk/Master/texmf-dist/source/latex/handoutwithnotes/handoutWithNotes.dtx
    trunk/Master/texmf-dist/tex/latex/handoutwithnotes/handoutWithNotes.sty

Modified: trunk/Master/texmf-dist/doc/latex/handoutwithnotes/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/handoutwithnotes/README.md	2022-02-09 20:57:57 UTC (rev 61955)
+++ trunk/Master/texmf-dist/doc/latex/handoutwithnotes/README.md	2022-02-09 20:58:20 UTC (rev 61956)
@@ -1,4 +1,4 @@
-# handoutWithNotes.sty 2021/10/21 v1.1
+# handoutWithNotes.sty 2022/02/02 v1.2
 
 Create Handouts with notes from your LaTeX beamer presentation.
 
@@ -8,7 +8,7 @@
  
 Parts provided by Edson Valle
 
-Copyright (C) 2021 Marei Peischl <marei at peitex.de>
+Copyright (C) 2021–2022 Marei Peischl <marei at peitex.de>
 
 ***************************************************************************
 
@@ -49,6 +49,7 @@
 Additionally the pgfpages options can be used. for more detailed information use the pdf documentation.
 
 ## Version History
+* v1.2 (2022-02-02) Add support for DVI–PS–PDF workflows
 * v1.1 (2021-11-07)
 	- convert the sources for l3build including simple tests
 	- add support for graph ruled paper

Modified: trunk/Master/texmf-dist/doc/latex/handoutwithnotes/handoutWithNotes.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/source/latex/handoutwithnotes/handoutWithNotes.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/handoutwithnotes/handoutWithNotes.dtx	2022-02-09 20:57:57 UTC (rev 61955)
+++ trunk/Master/texmf-dist/source/latex/handoutwithnotes/handoutWithNotes.dtx	2022-02-09 20:58:20 UTC (rev 61956)
@@ -1,19 +1,27 @@
 % \iffalse meta-comment
 %
-% Copyright (C) 2021 by <+author+> <<+email+>>
+% Copyright (C) 2009–2018 by Guido Diepen <guido at guidodiepen.nl>
+% Parts provided by Edson Valle
+% Copyright (C) 2021–2022 Marei Peischl <marei at peitex.de>
 % ---------------------------------------------------------------------------
 % This work may be distributed and/or modified under the
-% conditions of the LaTeX Project Public License, either version 1.3
+% conditions of the LaTeX Project Public License, either version 1.3c
 % of this license or (at your option) any later version.
 % The latest version of this license is in
-%   http://www.latex-project.org/lppl.txt
-% and version 1.3 or later is part of all distributions of LaTeX
-% version 2005/12/01 or later.
+% http://www.latex-project.org/lppl.txt
+% and version 1.3c or later is part of all distributions of LaTeX
+% version 2008/05/04 or later.
 %
 % This work has the LPPL maintenance status `maintained'.
 %
-% The Current Maintainer of this work is <+maintainer+>.
+% The Current Maintainers of this work are
+% Marei Peischl <marei at peitex.de>
+% Guido Diepen <guido at guidodiepen.nl>
 %
+% The development respository can be found at
+% https://github.com/gdiepen/latexbeamer-handoutWithNotes
+% Please use the issue tracker for feedback!
+%
 % This work consists of the files handoutWithNotes.dtx and handoutWithNotes.ins
 % and the derived filebase handoutWithNotes.sty.
 %
@@ -23,10 +31,10 @@
 %<*driver>
 \ProvidesFile{handoutWithNotes.dtx}
 %</driver>
-%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
+%<package>\NeedsTeXFormat{LaTeX2e}[2020/10/01]
 %<package>\ProvidesPackage{handoutWithNotes}
 %<*package>
-    [2021/11/10 v1.1 pgfpages layouts to print beamer slides with notes]
+    [2022/02/02 v1.2 pgfpages layouts to print beamer slides with notes]
 %</package>
 %
 %<*driver>
@@ -266,7 +274,7 @@
 %<@@=handoutWithNotes>
 %    \end{macrocode}
 %    \begin{macrocode}
-\ProvidesPackage{handoutWithNotes}[2021/11/07 v1.1
+\ProvidesPackage{handoutWithNotes}[2022/02/02 v1.2
   pgfpages layouts to print beamer slides with notes]
 \RequirePackage{l3keys2e}
 \ExplSyntaxOn
@@ -311,10 +319,17 @@
 \providetranslation[to=German]{Notes}{Notizen}
 \providetranslation[to=French]{Notes}{Notes}
 \ExplSyntaxOn
-\cs_if_exist:NTF \pageheight {
-  \cs_set:Nn \@@_pageheight: {\pageheight}
-} {
-  \cs_set:Nn \@@_pageheight: {\pdfpageheight}
+%    \end{macrocode}
+% \changes{1.2}{2022/02/02}{Add support for dvipspdf workflows}
+%    \begin{macrocode}
+\sys_if_output_dvi:TF {
+  \cs_set:Nn \@@_pageheight: {\paperheight}
+}{
+  \cs_if_exist:NTF \pageheight {
+    \cs_set:Nn \@@_pageheight: {\pageheight}
+  } {
+    \cs_set:Nn \@@_pageheight: {\pdfpageheight}
+  }
 }
 \box_new:N  \g_handoutWithNotes_notes_box
 \tl_new:N \l_handoutWithNotes_title_tl
@@ -897,4 +912,4 @@
 %</package>
 % \fi
 %
-% \end{implementation}
+% \end{implementation}
\ No newline at end of file

Modified: trunk/Master/texmf-dist/tex/latex/handoutwithnotes/handoutWithNotes.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/handoutwithnotes/handoutWithNotes.sty	2022-02-09 20:57:57 UTC (rev 61955)
+++ trunk/Master/texmf-dist/tex/latex/handoutwithnotes/handoutWithNotes.sty	2022-02-09 20:58:20 UTC (rev 61956)
@@ -32,10 +32,10 @@
 %% 
 %% ============================================================================
 %% 
-\NeedsTeXFormat{LaTeX2e}[1999/12/01]
+\NeedsTeXFormat{LaTeX2e}[2020/10/01]
 \ProvidesPackage{handoutWithNotes}
-    [2021/11/10 v1.1 pgfpages layouts to print beamer slides with notes]
-\ProvidesPackage{handoutWithNotes}[2021/11/07 v1.1
+    [2022/02/02 v1.2 pgfpages layouts to print beamer slides with notes]
+\ProvidesPackage{handoutWithNotes}[2022/02/02 v1.2
   pgfpages layouts to print beamer slides with notes]
 \RequirePackage{l3keys2e}
 \ExplSyntaxOn
@@ -72,10 +72,14 @@
 \providetranslation[to=German]{Notes}{Notizen}
 \providetranslation[to=French]{Notes}{Notes}
 \ExplSyntaxOn
-\cs_if_exist:NTF \pageheight {
-  \cs_set:Nn \__handoutWithNotes_pageheight: {\pageheight}
-} {
-  \cs_set:Nn \__handoutWithNotes_pageheight: {\pdfpageheight}
+\sys_if_output_dvi:TF {
+  \cs_set:Nn \__handoutWithNotes_pageheight: {\paperheight}
+}{
+  \cs_if_exist:NTF \pageheight {
+    \cs_set:Nn \__handoutWithNotes_pageheight: {\pageheight}
+  } {
+    \cs_set:Nn \__handoutWithNotes_pageheight: {\pdfpageheight}
+  }
 }
 \box_new:N  \g_handoutWithNotes_notes_box
 \tl_new:N \l_handoutWithNotes_title_tl



More information about the tex-live-commits mailing list.