我有一个如下的 tex 文件,由 Pandoc 转换为 docx。
\documentclass[12pt]{report}
\begin{document}
% latex table generated in R 3.0.1 by xtable 1.7-1 package
\begin{table}[!h]
\centering
\begin{tabular}{rlll}
\hline
& PIK3CA & APC & ALDH2 \\
\hline
Detection point & 120\~{}121 & 102\~{}104 & 76\~{}78 \\
Genotype & -/- & A/A & G/G \\
\hline
\end{tabular}
\end{table}
\end{document}
当我使用 Pandoc 程序 (v1.11.1) 进行转换时,docx 内容有这个额外的[!h]
字符串,它不应该存在,因为它只是一个表格放置参数。
[!h]
PIK3CA APC ALDH2
Detection point 120~121 102~104 76~78
Genotype -/- A/A G/G
如果我[ht]
用作放置参数,我会在转换后的 docx 中有一个额外的[ht]字符串。
有什么建议可以避免吗?还是只是 Pandoc 暂时无法处理?