diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/TeX4ht/source/ChangeLog | 16 | ||||
-rw-r--r-- | support/TeX4ht/source/mktex4ht-cnf.tex | 3 | ||||
-rw-r--r-- | support/TeX4ht/source/tex4ht-html4.tex | 3 | ||||
-rw-r--r-- | support/TeX4ht/source/tex4ht-ooffice.tex | 19 |
4 files changed, 38 insertions, 3 deletions
diff --git a/support/TeX4ht/source/ChangeLog b/support/TeX4ht/source/ChangeLog index ef58933f0c..d311b5455e 100644 --- a/support/TeX4ht/source/ChangeLog +++ b/support/TeX4ht/source/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/support/TeX4ht/source/mktex4ht-cnf.tex b/support/TeX4ht/source/mktex4ht-cnf.tex index 86616aa9f8..5696ebd3e9 100644 --- a/support/TeX4ht/source/mktex4ht-cnf.tex +++ b/support/TeX4ht/source/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/support/TeX4ht/source/tex4ht-html4.tex b/support/TeX4ht/source/tex4ht-html4.tex index 5df537074c..ede8404fff 100644 --- a/support/TeX4ht/source/tex4ht-html4.tex +++ b/support/TeX4ht/source/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/support/TeX4ht/source/tex4ht-ooffice.tex b/support/TeX4ht/source/tex4ht-ooffice.tex index 29e849348f..0395dadac0 100644 --- a/support/TeX4ht/source/tex4ht-ooffice.tex +++ b/support/TeX4ht/source/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>}} |