texlive[60806] Master/texmf-dist: koma+odt subtitle support, tex4ht

commits+karl at tug.org commits+karl at tug.org
Tue Oct 19 23:55:50 CEST 2021


Revision: 60806
          http://tug.org/svn/texlive?view=revision&revision=60806
Author:   karl
Date:     2021-10-19 23:55:50 +0200 (Tue, 19 Oct 2021)
Log Message:
-----------
koma+odt subtitle support, tex4ht r996-997; spurious caption text, tex4ht r998

Revision Links:
--------------
    http://tug.org/svn/texlive?view=revision&revision=996
    http://tug.org/svn/texlive?view=revision&revision=998

Modified Paths:
--------------
    trunk/Master/texmf-dist/source/generic/tex4ht/ChangeLog
    trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
    trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
    trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex
    trunk/Master/texmf-dist/tex/generic/tex4ht/caption.4ht
    trunk/Master/texmf-dist/tex/generic/tex4ht/html4.4ht
    trunk/Master/texmf-dist/tex/generic/tex4ht/ooffice.4ht
    trunk/Master/texmf-dist/tex/generic/tex4ht/scrartcl.4ht
    trunk/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht
    trunk/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht

Modified: trunk/Master/texmf-dist/source/generic/tex4ht/ChangeLog
===================================================================
--- trunk/Master/texmf-dist/source/generic/tex4ht/ChangeLog	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/source/generic/tex4ht/ChangeLog	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,3 +1,18 @@
+2021-10-19  Michal Hoftich  <michal.h21 at gmail.com>
+	
+	* tex4ht-4ht.tex (caption.4ht): fixed number of parameters for
+	\caption@@@addcontentsline.
+	https://puszcza.gnu.org.ua/bugs/?532
+
+	* tex4ht-ooffice.tex (ooffice.4ht): added subtitle support.
+	https://puszcza.gnu.org.ua/bugs/?507
+
+	* tex4ht-html4.tex (html4.4ht): added subtitle support.
+
+	* tex4ht-4ht.tex (scrartcl.4ht, scrbook.4ht, scrreprt.4ht): added support
+	for \subtitle command.
+	https://puszcza.gnu.org.ua/bugs/?507
+
 2021-10-18  Michal Hoftich  <michal.h21 at gmail.com>
 
 	* tex4ht-html5.tex (html5.4ht): removed CSS declaration that prevented

Modified: trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
===================================================================
--- trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% $Id: tex4ht-4ht.tex 991 2021-10-10 18:03:42Z michal_h21 $
+% $Id: tex4ht-4ht.tex 998 2021-10-19 15:53:25Z michal_h21 $
 % tex tex4ht-4ht   or   ht tex tex4ht-4ht
 %
 % Copyright 2009-2021 TeX Users Group    
@@ -11596,7 +11596,7 @@
 prevent this issue.
 
 \<caption addtocontents\><<<
- \renewcommand*\caption@@@addcontentsline[5]{%
+ \renewcommand*\caption@@@addcontentsline[4]{%
    \def\temp{#1}\def\tempa{toc}\ifx \temp\tempa\else%
    \gHAdvance\TitleCount  1%
    \fi%
@@ -16993,6 +16993,7 @@
 |<scr old fonts|>
 \input article.4ht
 |<scr artcl, reprt, book|>
+|<scr artcl subtitle|>
 \Hinput{scrartcl}
 \endinput
 >>>        \AddFile{9}{scrartcl}
@@ -17035,6 +17036,7 @@
       \pend:def\@dedication{\a:dedication}%
       \append:def\@dedication{\b:dedication}%
    \fi
+   |<scr def subtitle|>
 }
 \NewConfigure{dedication}{2}
 >>>
@@ -17053,10 +17055,28 @@
    \pend:def\@author{\a:author}\append:def\@author{\b:author}%
    \pend:def\@date{\a:date}\append:def\@date{\b:date}%
    \def\and{\a:and}
+   |<scr def subtitle|>
 }
 \NewConfigure{dedication}{2}
 >>>
 
+Support for subtitles:
+
+\<scr artcl, reprt, book\><<<
+\NewConfigure{subtitle}{2}
+>>>
+
+\<scr artcl subtitle\><<<
+\pend:def\maketitle{%
+  |<scr def subtitle|>
+}
+>>>
+
+\<scr def subtitle\><<<
+  \pend:def\@subtitle{\a:subtitle}
+  \append:def\@subtitle{\b:subtitle}
+>>>
+
 %%%%%%%%%%%%%%%%%%
 \Section{TOC}
 %%%%%%%%%%%%%%%%%%%
@@ -17122,7 +17142,7 @@
 }
 >>>
 
-%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%
 \Section{other}
 %%%%%%%%%%%%%%%%%%%
 

Modified: trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
===================================================================
--- trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% $Id: tex4ht-html4.tex 992 2021-10-12 12:17:53Z michal_h21 $
+% $Id: tex4ht-html4.tex 996 2021-10-19 08:41:34Z michal_h21 $
 % Compile 4 times: latex tex4ht-html4
 % Copy html4.4ht into the work directory before all but the last compilation.
 %
@@ -6197,6 +6197,7 @@
    {\ifvmode \IgnorePar\fi\EndP \HCode{<div class="dedication" >}}
    {\ifvmode \IgnorePar\fi\EndP \HCode{</div>}}
 \Css{div.dedication {text-align:center;}}  
+\Css{div.titlepage{ margin-bottom: 2em; text-align:center; }}
 >>>
 
 
@@ -10408,6 +10409,11 @@
    {\HCode{</h5>}\HtmlParOn \IgnoreIndent\egroup\par\ShowPar}
 >>>
 
+Support for subtitle
+\<scr article,report,book\><<<
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<div class="subtitle">}}{\HCode{</div>}}
+>>>
+
 \<scrbook end units\><<<
 \Configure{endlikeparagraph}
    {paragraph,subsubsection,likesubsubsection,subsection,%

Modified: trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex
===================================================================
--- trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% $Id: tex4ht-ooffice.tex 995 2021-10-18 13:45:08Z michal_h21 $
+% $Id: tex4ht-ooffice.tex 997 2021-10-19 12:30:26Z michal_h21 $
 % compile 3 times: latex tex4ht-ooffice
 %      htlatex tex4ht-ooffice "xhtml,4,sections+"
 %
@@ -1560,6 +1560,48 @@
    {\ifvmode \IgnorePar\fi\EndP \HCode{</text:p>}}
 >>>
 
+Koma classes have subtitle command and option.
+
+\<scr subtitle\><<<
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<text:p text:style-name="subtitle|<cond rtl class|>">}}{\HCode{</text:p>}}
+
+\NewConfigureOO{subtitle}
+\ConfigureOO{subtitle}{%
+<style:style style:name="subtitle"
+             style:family="paragraph"
+             style:parent-style-name="Heading"
+             style:next-style-name="author"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"/>
+</style:style> \Hnewline <style:style style:name="subtitle-rtl"
+             style:family="paragraph"
+             style:parent-style-name="Heading-rtl"
+             style:next-style-name="author-rtl"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"
+                  style:writing-mode="rl-tb" />
+</style:style> \Hnewline
+ }
+>>>
+
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 \section{Abstract}
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -9075,6 +9117,7 @@
 
 \<configure ooffice scrbook\><<<
 |<ooffice title page|>
+|<scr subtitle|>
 |<content styles|>
 |<chap tocs|>
 |<scr chap tocs|>
@@ -9093,6 +9136,7 @@
 
 \<configure ooffice scrreprt\><<<
 |<ooffice title page|>
+|<scr subtitle|>
 |<scr abstract|>
 |<content styles|>
 |<chap tocs|>
@@ -9111,6 +9155,7 @@
 
 \<configure ooffice scrartcl\><<<
 |<ooffice title page|>
+|<scr subtitle|>
 |<scr abstract|>
 |<content styles|>
 |<ooffice bib with bibname|>

Modified: trunk/Master/texmf-dist/tex/generic/tex4ht/caption.4ht
===================================================================
--- trunk/Master/texmf-dist/tex/generic/tex4ht/caption.4ht	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/tex/generic/tex4ht/caption.4ht	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% caption.4ht (2021-05-16-09:21), generated from tex4ht-4ht.tex
+% caption.4ht (2021-10-19-14:11), generated from tex4ht-4ht.tex
 % Copyright 2007-2009 Eitan M. Gurari
 % Copyright 2009-2021 TeX Users Group
 %
@@ -17,7 +17,7 @@
 %
 % If you modify this program, changing the
 % version identification would be appreciated.
-\immediate\write-1{version 2021-05-16-09:21}
+\immediate\write-1{version 2021-10-19-14:11}
 
 \let\sv:toclof\toclof
 \def\toclof#1#2#3{%
@@ -56,7 +56,7 @@
   \caption at make@below%
 }
 
- \renewcommand*\caption@@@addcontentsline[5]{%
+ \renewcommand*\caption@@@addcontentsline[4]{%
    \def\temp{#1}\def\tempa{toc}\ifx \temp\tempa\else%
    \gHAdvance\TitleCount  1%
    \fi%

Modified: trunk/Master/texmf-dist/tex/generic/tex4ht/html4.4ht
===================================================================
--- trunk/Master/texmf-dist/tex/generic/tex4ht/html4.4ht	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/tex/generic/tex4ht/html4.4ht	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% html4.4ht (2021-10-12-13:20), generated from tex4ht-html4.tex
+% html4.4ht (2021-10-19-14:11), generated from tex4ht-html4.tex
 % Copyright 2009-2021 TeX Users Group
 % Copyright 1997-2009 Eitan M. Gurari
 %
@@ -17,7 +17,7 @@
 %
 % If you modify this program, changing the
 % version identification would be appreciated.
-\immediate\write-1{version 2021-10-12-13:20}
+\immediate\write-1{version 2021-10-19-14:11}
 
 \exit:ifnot{8859-6,% 
 CJK,% 
@@ -32328,6 +32328,7 @@
    {\ifvmode \IgnorePar\fi\EndP \HCode{<div class="dedication" >}}
    {\ifvmode \IgnorePar\fi\EndP \HCode{</div>}}
 \Css{div.dedication {text-align:center;}}
+\Css{div.titlepage{ margin-bottom: 2em; text-align:center; }}
 
 %  \Css{span.footnote-mark{ vertical-align: super }}
 \Css{span.footnote-mark   sup.textsuperscript,
@@ -32338,6 +32339,7 @@
     \bgroup \IgnorePar\HCode{<h5 class="minisecHead"\a:LRdir>}%
     \TitleMark\space \HtmlParOff}
    {\HCode{</h5>}\HtmlParOn \IgnoreIndent\egroup\par\ShowPar}
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<div class="subtitle">}}{\HCode{</div>}}
 
 \ConfigureMark{subsection}
    {\ifnum \c:secnumdepth>\c at secnumdepth  \expandafter\:gobble
@@ -33014,6 +33016,7 @@
     \bgroup \IgnorePar\HCode{<h5 class="minisecHead"\a:LRdir>}%
     \TitleMark\space \HtmlParOff}
    {\HCode{</h5>}\HtmlParOn \IgnoreIndent\egroup\par\ShowPar}
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<div class="subtitle">}}{\HCode{</div>}}
 
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -33105,6 +33108,7 @@
    {\ifvmode \IgnorePar\fi\EndP \HCode{<div class="dedication" >}}
    {\ifvmode \IgnorePar\fi\EndP \HCode{</div>}}
 \Css{div.dedication {text-align:center;}}
+\Css{div.titlepage{ margin-bottom: 2em; text-align:center; }}
 
 \ConfigureMark{chapter}
    {\HCode{<span class="titlemark">}\thechapter\HCode{</span>}\ \ }
@@ -33650,6 +33654,7 @@
     \bgroup \IgnorePar\HCode{<h5 class="minisecHead"\a:LRdir>}%
     \TitleMark\space \HtmlParOff}
    {\HCode{</h5>}\HtmlParOn \IgnoreIndent\egroup\par\ShowPar}
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<div class="subtitle">}}{\HCode{</div>}}
 
 \ConfigureMark{subsection}
    {\ifnum \c:secnumdepth>\c at secnumdepth  \expandafter\:gobble

Modified: trunk/Master/texmf-dist/tex/generic/tex4ht/ooffice.4ht
===================================================================
--- trunk/Master/texmf-dist/tex/generic/tex4ht/ooffice.4ht	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/tex/generic/tex4ht/ooffice.4ht	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% ooffice.4ht (2021-10-18-12:59), generated from tex4ht-ooffice.tex
+% ooffice.4ht (2021-10-19-14:11), generated from tex4ht-ooffice.tex
 % Copyright 2009-2021 TeX Users Group
 % Copyright 2001-2009 Maarten Wisse, James Naughton, Eitan M. Gurari
 %
@@ -17,7 +17,7 @@
 %
 % If you modify this program, changing the
 % version identification would be appreciated.
-\immediate\write-1{version 2021-10-18-12:59}
+\immediate\write-1{version 2021-10-19-14:11}
 
   \exit:ifnot{Preamble,% 
 algorithmicx,% 
@@ -13369,6 +13369,45 @@
 </style:style>\Hnewline
 }
 
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<text:p text:style-name="subtitle\if at rl-rtl\fi
+">}}{\HCode{</text:p>}}
+
+\NewConfigureOO{subtitle}
+\ConfigureOO{subtitle}{%
+<style:style style:name="subtitle"
+             style:family="paragraph"
+             style:parent-style-name="Heading"
+             style:next-style-name="author"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"/>
+</style:style> \Hnewline <style:style style:name="subtitle-rtl"
+             style:family="paragraph"
+             style:parent-style-name="Heading-rtl"
+             style:next-style-name="author-rtl"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"
+                  style:writing-mode="rl-tb" />
+</style:style> \Hnewline
+ }
+
 \NewConfigureOO{Contents 1}
 \ConfigureOO{Contents 1}{\Hnewline
    <style:style style:name="Contents-1"
@@ -14782,6 +14821,45 @@
 </style:style>\Hnewline
 }
 
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<text:p text:style-name="subtitle\if at rl-rtl\fi
+">}}{\HCode{</text:p>}}
+
+\NewConfigureOO{subtitle}
+\ConfigureOO{subtitle}{%
+<style:style style:name="subtitle"
+             style:family="paragraph"
+             style:parent-style-name="Heading"
+             style:next-style-name="author"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"/>
+</style:style> \Hnewline <style:style style:name="subtitle-rtl"
+             style:family="paragraph"
+             style:parent-style-name="Heading-rtl"
+             style:next-style-name="author-rtl"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"
+                  style:writing-mode="rl-tb" />
+</style:style> \Hnewline
+ }
+
 \ConfigureEnv{abstract}
    {\IgnorePar\EndP \bgroup
       \Configure{HtmlPar}
@@ -16071,6 +16149,45 @@
 </style:style>\Hnewline
 }
 
+\Configure{subtitle}{\ifvmode\IgnorePar\fi\EndP\HCode{<text:p text:style-name="subtitle\if at rl-rtl\fi
+">}}{\HCode{</text:p>}}
+
+\NewConfigureOO{subtitle}
+\ConfigureOO{subtitle}{%
+<style:style style:name="subtitle"
+             style:family="paragraph"
+             style:parent-style-name="Heading"
+             style:next-style-name="author"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"/>
+</style:style> \Hnewline <style:style style:name="subtitle-rtl"
+             style:family="paragraph"
+             style:parent-style-name="Heading-rtl"
+             style:next-style-name="author-rtl"
+             style:class="chapter">\Hnewline
+<style:paragraph-properties  fo:margin-top="0.42cm"
+                  fo:margin-bottom="0.51cm"
+                  fo:font-size="20pt"
+                  fo:font-weight="normal"
+                  style:font-size-asian="18pt"
+                  style:font-weight-asian="bold"
+                  style:font-size-complex="18pt"
+                  style:font-weight-complex="bold"
+                  fo:text-align="center"
+                  style:justify-single-word="false"
+                  style:writing-mode="rl-tb" />
+</style:style> \Hnewline
+ }
+
 \ConfigureEnv{abstract}
    {\IgnorePar\EndP \bgroup
       \Configure{HtmlPar}

Modified: trunk/Master/texmf-dist/tex/generic/tex4ht/scrartcl.4ht
===================================================================
--- trunk/Master/texmf-dist/tex/generic/tex4ht/scrartcl.4ht	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/tex/generic/tex4ht/scrartcl.4ht	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% scrartcl.4ht (2021-10-10-14:01), generated from tex4ht-4ht.tex
+% scrartcl.4ht (2021-10-19-14:11), generated from tex4ht-4ht.tex
 % Copyright 1999-2009 Eitan M. Gurari
 % Copyright 2009-2021 TeX Users Group
 %
@@ -17,7 +17,7 @@
 %
 % If you modify this program, changing the
 % version identification would be appreciated.
-\immediate\write-1{version 2021-10-10-14:01}
+\immediate\write-1{version 2021-10-19-14:11}
 
 
 \input article.4ht
@@ -24,9 +24,16 @@
 \Def:Section\minisec{}{#1}
 \let\:minisec=\minisec
 \def\minisec#1{\:minisec{#1}\@afterheading}
+\NewConfigure{subtitle}{2}
 \pend:defI\@makefntext{\IgnorePar}
 \let\scr at defineobsoletefonts\thr@@
 
+\pend:def\maketitle{%
+    \pend:def\@subtitle{\a:subtitle}
+  \append:def\@subtitle{\b:subtitle}
+
+}
+
 \Hinput{scrartcl}
 \endinput
 

Modified: trunk/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht
===================================================================
--- trunk/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% scrbook.4ht (2021-10-10-14:01), generated from tex4ht-4ht.tex
+% scrbook.4ht (2021-10-19-14:11), generated from tex4ht-4ht.tex
 % Copyright 1999-2009 Eitan M. Gurari
 % Copyright 2009-2021 TeX Users Group
 %
@@ -17,7 +17,7 @@
 %
 % If you modify this program, changing the
 % version identification would be appreciated.
-\immediate\write-1{version 2021-10-10-14:01}
+\immediate\write-1{version 2021-10-19-14:11}
 
 \let\o:maketitle:\maketitle
 \let\o:maketitle:\maketitle
@@ -71,6 +71,9 @@
    \pend:def\@author{\a:author}\append:def\@author{\b:author}%
    \pend:def\@date{\a:date}\append:def\@date{\b:date}%
    \def\and{\a:and}
+     \pend:def\@subtitle{\a:subtitle}
+  \append:def\@subtitle{\b:subtitle}
+
 }
 \NewConfigure{dedication}{2}
 
@@ -385,6 +388,7 @@
 \Def:Section\minisec{}{#1}
 \let\:minisec=\minisec
 \def\minisec#1{\:minisec{#1}\@afterheading}
+\NewConfigure{subtitle}{2}
 \pend:defI\@makefntext{\IgnorePar}
 \let\scr at defineobsoletefonts\thr@@
 

Modified: trunk/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht
===================================================================
--- trunk/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht	2021-10-19 20:45:24 UTC (rev 60805)
+++ trunk/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht	2021-10-19 21:55:50 UTC (rev 60806)
@@ -1,4 +1,4 @@
-% scrreprt.4ht (2021-10-10-14:01), generated from tex4ht-4ht.tex
+% scrreprt.4ht (2021-10-19-14:11), generated from tex4ht-4ht.tex
 % Copyright (C) 1999-2009 Eitan M. Gurari
 % Copyright 2009-2021 TeX Users Group
 %
@@ -17,7 +17,7 @@
 %
 % If you modify this program, changing the
 % version identification would be appreciated.
-\immediate\write-1{version 2021-10-10-14:01}
+\immediate\write-1{version 2021-10-19-14:11}
 
 \let\o:maketitle:\maketitle
 \def\maketitle{\bgroup
@@ -66,6 +66,9 @@
       \pend:def\@dedication{\a:dedication}%
       \append:def\@dedication{\b:dedication}%
    \fi
+     \pend:def\@subtitle{\a:subtitle}
+  \append:def\@subtitle{\b:subtitle}
+
 }
 \NewConfigure{dedication}{2}
 
@@ -377,6 +380,7 @@
 \Def:Section\minisec{}{#1}
 \let\:minisec=\minisec
 \def\minisec#1{\:minisec{#1}\@afterheading}
+\NewConfigure{subtitle}{2}
 \pend:defI\@makefntext{\IgnorePar}
 \let\scr at defineobsoletefonts\thr@@
 



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