diff options
author | Karl Berry <karl@freefriends.org> | 2022-12-16 22:25:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-12-16 22:25:07 +0000 |
commit | 13def4e91736916fb77c64ea39a852fa310a0904 (patch) | |
tree | ee3f9afa440196a819ec8b5fb55b56810410b50a | |
parent | 2811b370a9db2922ccdd8b3a3619299ea3b759d1 (diff) |
prevent duplicate toc, tex4ht r1268; \paragraph, \subparagraph numbering, tex4ht r1269
git-svn-id: svn://tug.org/texlive/trunk@65295 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf-dist/source/generic/tex4ht/ChangeLog | 16 | ||||
-rw-r--r-- | Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex | 6 | ||||
-rw-r--r-- | Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex | 14 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/amsart.4ht | 10 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/amsbook.4ht | 10 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/amsproc.4ht | 10 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/article.4ht | 8 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/book.4ht | 8 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/html4.4ht | 59 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/mwart.4ht | 4 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/mwbk.4ht | 4 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/mwrep.4ht | 4 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/report.4ht | 8 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht | 4 | ||||
-rw-r--r-- | Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht | 4 |
15 files changed, 115 insertions, 54 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog index 451438c022c..c7e1a5855d6 100644 --- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog +++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog @@ -1,3 +1,19 @@ +2022-12-16 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-html4.tex (html4.4ht): fixed numbering of \paragraph and + \subparagraph in base classes. + https://tex.stackexchange.com/q/668713/2891 + + * tex4ht-4ht.tex (amsart.4ht, amsart.4ht, amsbook.4ht, + amsbook.4ht, amsproc.4ht, amsproc.4ht, article.4ht, + article.4ht, book.4ht, book.4ht, mwart.4ht, mwart.4ht, + mwbk.4ht, mwbk.4ht, mwrep.4ht, mwrep.4ht, report.4ht, + report.4ht, scrbook.4ht, scrbook.4ht, scrreprt.4ht, + scrreprt.4ht): prevent duplicate TOC printing with + \Configure{tableofcontents*} when \tableofcontents command is used + in the document. + https://tex.stackexchange.com/q/668713/2891 + 2022-12-15 Michal Hoftich <michal.h21@gmail.com> * tex4ht-mathml.tex (mathml.4ht): disable stretchy attribute for diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex index f1288840d10..30a73224d34 100644 --- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex +++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-4ht.tex 1264 2022-12-11 15:00:58Z karl $ +% $Id: tex4ht-4ht.tex 1268 2022-12-16 15:18:27Z michal_h21 $ % tex tex4ht-4ht or ht tex tex4ht-4ht % % Copyright 2009-2022 TeX Users Group @@ -15711,8 +15711,8 @@ any of the options is on. \ifx \au:StartSec\:UnDef \let\au:StartSec|=\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc|=\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc|=\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } >>> diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex index 0ee6765c008..38044106902 100644 --- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex +++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-html4.tex 1261 2022-12-09 16:06:10Z michal_h21 $ +% $Id: tex4ht-html4.tex 1269 2022-12-16 16:03:28Z michal_h21 $ % Compile 4 times: latex tex4ht-html4 % Copy html4.4ht into the work directory before all but the last compilation. % @@ -11101,8 +11101,13 @@ a \par b \<latex shared paragraph config\><<< +\ConfigureMark{paragraph} + {\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{paragraph}% + \HCode{</span>}\fi } \Configure{paragraph}{}{} - {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf} + {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf\TitleMark\space} {\endgroup\HCode{</span>}\par\IgnorePar} \Configure{likeparagraph}{}{} {\ShowPar\IgnoreIndent\HCode{<span class="likeparagraphHead"\a:LRdir>}} @@ -11112,7 +11117,10 @@ a \par b >>> \<latex config div 4.0t\><<< -\ConfigureMark{subparagraph}{} +\ConfigureMark{subparagraph}{\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{subparagraph}% + \HCode{</span>}\fi } \Configure{subparagraph}{}{} {\ShowPar\HCode{<span class="subparagraphHead"\a:LRdir>}\begingroup\bf \TitleMark\space} diff --git a/Master/texmf-dist/tex/generic/tex4ht/amsart.4ht b/Master/texmf-dist/tex/generic/tex4ht/amsart.4ht index f85dc2cd05e..3961c8b100e 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/amsart.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/amsart.4ht @@ -1,6 +1,6 @@ -% amsart.4ht (2021-05-09-08:03), generated from tex4ht-4ht.tex +% amsart.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 1997-2009 Eitan M. Gurari -% Copyright 2009-2021 TeX Users Group +% Copyright 2009-2022 TeX Users Group % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2021-05-09-08:03} +\immediate\write-1{version 2022-12-16-13:29} \pend:defII\@starttoc{\par} \append:def\quote{\par\@totalleftmargin\z@} @@ -343,8 +343,8 @@ UnDFexyz \ifx \au:StartSec\:UnDef \let\au:StartSec\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } diff --git a/Master/texmf-dist/tex/generic/tex4ht/amsbook.4ht b/Master/texmf-dist/tex/generic/tex4ht/amsbook.4ht index f0695e76d93..b1ffc2756d6 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/amsbook.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/amsbook.4ht @@ -1,6 +1,6 @@ -% amsbook.4ht 2021-05-09-08:03, generated from tex4ht-4ht.tex +% amsbook.4ht 2022-12-16-13:29, generated from tex4ht-4ht.tex % Copyright 1997-2009 Eitan M. Gurari -% Copyright 2009-2021 TeX Users Group +% Copyright 2009-2022 TeX Users Group % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2021-05-09-08:03} +\immediate\write-1{version 2022-12-16-13:29} \pend:defII\@starttoc{\par} \append:def\quote{\par\@totalleftmargin\z@} @@ -401,8 +401,8 @@ UnDFexyz \ifx \au:StartSec\:UnDef \let\au:StartSec\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } diff --git a/Master/texmf-dist/tex/generic/tex4ht/amsproc.4ht b/Master/texmf-dist/tex/generic/tex4ht/amsproc.4ht index 368a26f3224..0847aa17b8b 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/amsproc.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/amsproc.4ht @@ -1,7 +1,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% amsproc.4ht (2021-05-09-08:03), generated from tex4ht-4ht.tex +% amsproc.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright (C) 1997-2009 Eitan M. Gurari -% Copyright 2009-2021 TeX Users Group +% Copyright 2009-2022 TeX Users Group % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either @@ -18,7 +18,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2021-05-09-08:03} +\immediate\write-1{version 2022-12-16-13:29} \append:def\quote{\par\@totalleftmargin\z@} @@ -365,8 +365,8 @@ UnDFexyz \ifx \au:StartSec\:UnDef \let\au:StartSec\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } diff --git a/Master/texmf-dist/tex/generic/tex4ht/article.4ht b/Master/texmf-dist/tex/generic/tex4ht/article.4ht index 9ce706f3fa6..ce67e622bd9 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/article.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/article.4ht @@ -1,4 +1,4 @@ -% article.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% article.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 1997-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \Configure{UndefinedSec}{likepart} @@ -195,8 +195,8 @@ UnDFexyz}% \ifx \au:StartSec\:UnDef \let\au:StartSec\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } diff --git a/Master/texmf-dist/tex/generic/tex4ht/book.4ht b/Master/texmf-dist/tex/generic/tex4ht/book.4ht index d2c2c4ac8d1..4987cbeeaa8 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/book.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/book.4ht @@ -1,4 +1,4 @@ -% book.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% book.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 1997-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \Configure{UndefinedSec}{likepart} \Configure{UndefinedSec}{likechapter} @@ -121,8 +121,8 @@ UnDFexyz}% \ifx \au:StartSec\:UnDef \let\au:StartSec\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } diff --git a/Master/texmf-dist/tex/generic/tex4ht/html4.4ht b/Master/texmf-dist/tex/generic/tex4ht/html4.4ht index eb6f8482ccf..af86d8e9d40 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/html4.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/html4.4ht @@ -1,4 +1,4 @@ -% html4.4ht (2022-12-09-13:27), generated from tex4ht-html4.tex +% html4.4ht (2022-12-16-13:29), generated from tex4ht-html4.tex % Copyright 2009-2022 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 2022-12-09-13:27} +\immediate\write-1{version 2022-12-16-13:29} \exit:ifnot{8859-6,% CJK,% @@ -5855,8 +5855,13 @@ j{01F0}H{021E}h{021F}\i{01D0}\j{01F0}% {likeparagraph,subsubsection,likesubsubsection,subsection,% likesubsection,section,% likesection,chapter,likechapter,appendix,part,likepart} +\ConfigureMark{paragraph} + {\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{paragraph}% + \HCode{</span>}\fi } \Configure{paragraph}{}{} - {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf} + {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf\TitleMark\space} {\endgroup\HCode{</span>}\par\IgnorePar} \Configure{likeparagraph}{}{} {\ShowPar\IgnoreIndent\HCode{<span class="likeparagraphHead"\a:LRdir>}} @@ -5864,7 +5869,10 @@ j{01F0}H{021E}h{021F}\i{01D0}\j{01F0}% \Css{.paragraphHead, .likeparagraphHead { margin-top:2em; font-weight: bold;}} -\ConfigureMark{subparagraph}{} +\ConfigureMark{subparagraph}{\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{subparagraph}% + \HCode{</span>}\fi } \Configure{subparagraph}{}{} {\ShowPar\HCode{<span class="subparagraphHead"\a:LRdir>}\begingroup\bf \TitleMark\space} @@ -8548,8 +8556,13 @@ j{01F0}H{021E}h{021F}\i{01D0}\j{01F0}% {likeparagraph,subsubsection,likesubsubsection,subsection,% likesubsection,section,% likesection,chapter,likechapter,appendix,part,likepart} +\ConfigureMark{paragraph} + {\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{paragraph}% + \HCode{</span>}\fi } \Configure{paragraph}{}{} - {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf} + {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf\TitleMark\space} {\endgroup\HCode{</span>}\par\IgnorePar} \Configure{likeparagraph}{}{} {\ShowPar\IgnoreIndent\HCode{<span class="likeparagraphHead"\a:LRdir>}} @@ -8557,7 +8570,10 @@ j{01F0}H{021E}h{021F}\i{01D0}\j{01F0}% \Css{.paragraphHead, .likeparagraphHead { margin-top:2em; font-weight: bold;}} -\ConfigureMark{subparagraph}{} +\ConfigureMark{subparagraph}{\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{subparagraph}% + \HCode{</span>}\fi } \Configure{subparagraph}{}{} {\ShowPar\HCode{<span class="subparagraphHead"\a:LRdir>}\begingroup\bf \TitleMark\space} @@ -11172,8 +11188,13 @@ j{01F0}H{021E}h{021F}\i{01D0}\j{01F0}% {likeparagraph,subsubsection,likesubsubsection,subsection,% likesubsection,section,% likesection,chapter,likechapter,appendix,part,likepart} +\ConfigureMark{paragraph} + {\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{paragraph}% + \HCode{</span>}\fi } \Configure{paragraph}{}{} - {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf} + {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf\TitleMark\space} {\endgroup\HCode{</span>}\par\IgnorePar} \Configure{likeparagraph}{}{} {\ShowPar\IgnoreIndent\HCode{<span class="likeparagraphHead"\a:LRdir>}} @@ -11181,7 +11202,10 @@ j{01F0}H{021E}h{021F}\i{01D0}\j{01F0}% \Css{.paragraphHead, .likeparagraphHead { margin-top:2em; font-weight: bold;}} -\ConfigureMark{subparagraph}{} +\ConfigureMark{subparagraph}{\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{subparagraph}% + \HCode{</span>}\fi } \Configure{subparagraph}{}{} {\ShowPar\HCode{<span class="subparagraphHead"\a:LRdir>}\begingroup\bf \TitleMark\space} @@ -31969,8 +31993,13 @@ description">}% {likeparagraph,subsubsection,likesubsubsection,subsection,% likesubsection,section,% likesection,chapter,likechapter,appendix,part,likepart} +\ConfigureMark{paragraph} + {\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{paragraph}% + \HCode{</span>}\fi } \Configure{paragraph}{}{} - {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf} + {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf\TitleMark\space} {\endgroup\HCode{</span>}\par\IgnorePar} \Configure{likeparagraph}{}{} {\ShowPar\IgnoreIndent\HCode{<span class="likeparagraphHead"\a:LRdir>}} @@ -32171,8 +32200,13 @@ description">}% {likeparagraph,subsubsection,likesubsubsection,subsection,% likesubsection,section,% likesection,chapter,likechapter,appendix,part,likepart} +\ConfigureMark{paragraph} + {\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{paragraph}% + \HCode{</span>}\fi } \Configure{paragraph}{}{} - {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf} + {\ShowPar\IgnoreIndent\HCode{<span class="paragraphHead"\a:LRdir>}\begingroup\bf\TitleMark\space} {\endgroup\HCode{</span>}\par\IgnorePar} \Configure{likeparagraph}{}{} {\ShowPar\IgnoreIndent\HCode{<span class="likeparagraphHead"\a:LRdir>}} @@ -32180,7 +32214,10 @@ description">}% \Css{.paragraphHead, .likeparagraphHead { margin-top:2em; font-weight: bold;}} -\ConfigureMark{subparagraph}{} +\ConfigureMark{subparagraph}{\ifnum \c:secnumdepth>\c@secnumdepth \expandafter\:gobble + \else + \HCode{<span class="titlemark">}\@seccntformat{subparagraph}% + \HCode{</span>}\fi } \Configure{subparagraph}{}{} {\ShowPar\HCode{<span class="subparagraphHead"\a:LRdir>}\begingroup\bf \TitleMark\space} diff --git a/Master/texmf-dist/tex/generic/tex4ht/mwart.4ht b/Master/texmf-dist/tex/generic/tex4ht/mwart.4ht index 872e83388aa..8899ddbb2a4 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/mwart.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/mwart.4ht @@ -1,4 +1,4 @@ -% mwart.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% mwart.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 2003-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \NewConfigure{caption}[4]{\c:def\cptA:{#1}\c:def\cptB:{#2}% \c:def\cptC:{#3}\c:def\cptD:{#4}} diff --git a/Master/texmf-dist/tex/generic/tex4ht/mwbk.4ht b/Master/texmf-dist/tex/generic/tex4ht/mwbk.4ht index b6a377773c3..cb1ceeb3a66 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/mwbk.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/mwbk.4ht @@ -1,4 +1,4 @@ -% mwbk.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% mwbk.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright (C) 2003-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \NewConfigure{caption}[4]{\c:def\cptA:{#1}\c:def\cptB:{#2}% \c:def\cptC:{#3}\c:def\cptD:{#4}} diff --git a/Master/texmf-dist/tex/generic/tex4ht/mwrep.4ht b/Master/texmf-dist/tex/generic/tex4ht/mwrep.4ht index 0a40dcb6571..e1459805785 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/mwrep.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/mwrep.4ht @@ -1,4 +1,4 @@ -% mwrep.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% mwrep.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 2003-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \NewConfigure{caption}[4]{\c:def\cptA:{#1}\c:def\cptB:{#2}% \c:def\cptC:{#3}\c:def\cptD:{#4}} diff --git a/Master/texmf-dist/tex/generic/tex4ht/report.4ht b/Master/texmf-dist/tex/generic/tex4ht/report.4ht index feb4bfc2a72..8adc37f76ff 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/report.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/report.4ht @@ -1,4 +1,4 @@ -% report.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% report.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 1997-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \Configure{UndefinedSec}{likepart} @@ -236,8 +236,8 @@ UnDFexyz}% \ifx \au:StartSec\:UnDef \let\au:StartSec\:StartSec \def\:StartSec{\:tableofcontents - \global\let\auto:toc\:UnDef \:StartSec}% - \pend:def\:tableofcontents{\gdef\:StartSec{\au:StartSec}}% + \global\let\auto:toc\:UnDef \global\let\:StartSec\au:StartSec\:StartSec}% + \pend:def\tableofcontents{\gdef\:StartSec{\au:StartSec}}% \fi \fi } diff --git a/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht b/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht index f38008dec50..f3536c3b226 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/scrbook.4ht @@ -1,4 +1,4 @@ -% scrbook.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% scrbook.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright 1999-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \let\o:maketitle:\maketitle \let\o:maketitle:\maketitle diff --git a/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht b/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht index cd524a76221..2b21f5c0831 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/scrreprt.4ht @@ -1,4 +1,4 @@ -% scrreprt.4ht (2022-02-22-13:25), generated from tex4ht-4ht.tex +% scrreprt.4ht (2022-12-16-13:29), generated from tex4ht-4ht.tex % Copyright (C) 1999-2009 Eitan M. Gurari % Copyright 2009-2022 TeX Users Group % @@ -17,7 +17,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2022-02-22-13:25} +\immediate\write-1{version 2022-12-16-13:29} \let\o:maketitle:\maketitle \def\maketitle{\bgroup |