在 tex4HT 中,\multirow 生成 HTML 输出,但<td>
当前一行有更多行选项时不会删除额外的元素(\multorow)
我浏览了一下文件make4ht.exe -l -a debug -u <filename>.tex
,Texlive 2022
如何修正 TEX4HT 中的输出
LaTeX 输出:
HTML 输出:
梅威瑟:
\documentclass[numbers]{amsart}
\usepackage{amsmath,array,multirow}
\begin{document}
\begin{table}[h!]
\begin{center}
\caption{Multirow table.}
\label{tab:table1}
\begin{tabular}{l|r|r}
\textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
$\alpha$ & $\beta$ & $\gamma$ \\
\hline
\multirow{2}{*}{12} & 1110.1 & a\\ % <-- Combining 2 rows with arbitrary with (*) and content 12
&10.1 & b\\ % <-- Content of first column omitted.
\hline
3 & 23.113231 & c\\
4 & 25.113231 & d\\
\end{tabular}
\end{center}
\end{table}
\end{document}