当我通过 Pandoc 发送 LaTeX 文档以创建 MSWord 文件时,公式引用丢失了。我正在使用它pandoc-crossref
进行引用。有人知道如何解决这个问题吗?
转换命令行如下:
pandoc index.tex --filter pandoc-crossref -M autoEqnLabels -M tableEqns -o index.docx
LaTeX 示例文件是index.tex
:
\documentclass[]{article}
\usepackage{amsmath}
\begin{document}
Some reference to an AMS style equation \ref{eq:one}
\begin{align}
f(x) &= x + a \label{eq:one}
\end{align}
and a reference to a standard \LaTeX \ one \ref{eq:two}.
\begin{equation}
z(x) = x^2 \label{eq:two}
\end{equation}
\end{document}
MSWord 输出index.docx
显示,
其中参考标签列为和[eq:one]
,[eq:two]
但我希望这里是(1)和(2)。
提前感谢您的回答。