将表格和方程式转换为图像

将表格和方程式转换为图像

我正在编写一个包含文本、表格和方程式的文章类型文档,但结果我的同事想要将文章源作为docx文件而不是pdftex。因此,当我尝试pdf在 Word 中打开文件的输出时,它看起来并不像我想象的那么糟糕。文本和目录功能足够,但docx在解析表格和方程式时文件似乎会损坏。

经过搜索,我找到了一些可以转换的网站和软件来源个人公式转换为图像,但如果我可以在整个tex文件上运行这样的转换器并让其自动将表格和公式转换为图像,那就太好了。手动转换每个公式并将其作为图像插入文档中非常繁琐。输出仍然可以,pdf因为 Word 似乎处理得很好。

有什么建议么?

答案1

您可以使用预览包:

\documentclass{article}
\usepackage[active,tightpage]{preview}
\begin{document}
Look at this table
\begin{preview}
  \begin{tabular}{cc}
    name&letter \\ \hline
    alpha&$\alpha$
  \end{tabular}
\end{preview}

And also this one
\begin{preview}
  \begin{tabular}{cc}
    name&letter \\ \hline
    beta&$\beta$
  \end{tabular}
\end{preview}
\end{document}

输出将是一个 PDF,其中每页都有一个表格。

相关内容