diff options
author | Karl Berry <karl@freefriends.org> | 2022-02-06 22:12:13 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-02-06 22:12:13 +0000 |
commit | a9e28ba3ba28c7071867f39a2fb66bd75e37eeec (patch) | |
tree | 253fbc7877d16f59406ea36943cab1dfb0c142cb /Master/texmf-dist/source/generic | |
parent | c4c64e1298d88f1154dc57c9abb667636716f771 (diff) |
longtable ules, tex4ht r1073; \cite links, tex4ht r1074; wnti font support, tex4ht r1075
git-svn-id: svn://tug.org/texlive/trunk@61924 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/generic')
4 files changed, 38 insertions, 3 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog index ef58933f0c4..d311b5455e0 100644 --- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog +++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog @@ -1,3 +1,19 @@ +2022-02-06 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-fonts-noncjk.tex ( + .tex4ht.dir/texmf/tex4ht/ht-fonts/win/1251/cm/sauter/wnti.htf + .tex4ht.dir/texmf/tex4ht/ht-fonts/iso8859/5/cm/sauter/wnti.htf + ): Fixed font tables for the italics Cyrillic Wn font + https://puszcza.gnu.org.ua/bugs/?549 + + * tex4ht-ooffice.tex (ooffice.4ht): fixed links for the \cite + command. + https://puszcza.gnu.org.ua/bugs/?547 + + * tex4ht-html4.tex (html4.4ht): declare table properties necessary + for correct rule support in Longtable. + https://tug.org/pipermail/tex4ht/2022q1/003137.html + 2022-02-04 Michal Hoftich <michal.h21@gmail.com> * tex4ht-html4.tex (html4.4ht): use CSS grid for Enumitem lists. diff --git a/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex b/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex index 86616aa9f8b..5696ebd3e97 100644 --- a/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex +++ b/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex @@ -1,4 +1,4 @@ -% $Id: mktex4ht-cnf.tex 1038 2021-12-25 19:26:07Z michal_h21 $ +% $Id: mktex4ht-cnf.tex 1069 2022-02-02 14:31:53Z michal_h21 $ % Manually-maintained file, listing *.4ht files created by tex4ht-4ht.tex. % Read by tex4ht-cond4ht. % @@ -265,6 +265,7 @@ \AddFile{9}{paralist} \AddFile{9}{pifont} \AddFile{9}{listings} +\AddFile{9}{tasks} \AddFile{9}{alphanum} \AddFile{9}{lineno} \AddFile{9}{errata} diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex index 5df537074c8..ede8404fffc 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 1072 2022-02-04 14:15:32Z michal_h21 $ +% $Id: tex4ht-html4.tex 1073 2022-02-06 19:29:41Z michal_h21 $ % Compile 4 times: latex tex4ht-html4 % Copy html4.4ht into the work directory before all but the last compilation. % @@ -8129,6 +8129,7 @@ and the same for pic tabular. Why? }<>\HAlign} \Css{table[rules] {border-left:solid black 0.4pt; border-right:solid black 0.4pt; }} +\Css{table.longtable{border-collapse: collapse; border-spacing: 0;}} \Configure{longtable} {\IgnorePar\EndP \HCode{|<show input line no|><div class="longtable">}% diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex index 29e849348fb..0395dadac0a 100644 --- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex +++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-ooffice.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-ooffice.tex 1059 2022-01-19 14:11:34Z michal_h21 $ +% $Id: tex4ht-ooffice.tex 1074 2022-02-06 19:43:26Z michal_h21 $ % compile 3 times: latex tex4ht-ooffice % htlatex tex4ht-ooffice "xhtml,4,sections+" % @@ -2864,8 +2864,25 @@ change the configuration slightly. We modify directly the \subsection{cite} %%%%%%%%%%%%%%%%%%% +This version of Cite produces links, but not speciall bibliography +field in the ODT file. I don't know if it is important, I think +functional link is better. + \<configure ooffice latex\><<< \Configure{cite} + {} + {} + {\Link} {\EndLink} +\let\lat:cite\@cite +\def\@cite#1#2{{#1\if@tempswa , #2\fi}} +>>> + +This version of cite is post-processed by Xtpipes, which +removes links from citation to the bibliography, and +introduce extra square brackets. I don't understand why. + +\<\><<< +\Configure{cite} {\HCode{<text:bibliography-mark text:bibliography-type="custom1">}} {\HCode{</text:bibliography-mark>}} |