使用 tex4ht 制作表格中的水平线

使用 tex4ht 制作表格中的水平线

设为表格:

\documentclass{article}
\begin{document}

\begin{tabular}{|*3{c|}}
\hline
& \multicolumn{2}{c|}{test} \\ \cline{2-3}
& test & test \\ \hline
test & test & test \\ \hline
\end{tabular}

\end{document}

简单转换

make4ht tabletest.tex

产生了一些不太好看的线条:

在此处输入图片描述

水平线会变成双线,交叉处衔接不畅,多列单元格会显示断线。

是否可以配置/自定义线条的外观?我知道这只是一个外观问题,但如果有任何解决方案,我不想错过它。

相关内容