将 .tex 转换为 .tex,但用实际数字替换 \ref{}

将 .tex 转换为 .tex,但用实际数字替换 \ref{}

我经常使用 Pandoc 在 .tex、.markdown 和 .docx 之间进行转换。对我来说,.tex 到 .docx 的转换一切正常,但显示的是表格和章节引用,\ref{my_label}而不是实际的表格或章节编号。

有没有办法将带有标签和引用的 .tex 文件转换为所有这些都被替换的 .tex 文件?

假设我的 MWE 是这样的。

\documentclass{article}

\begin{document}
\section{One} \label{sec:one}

I need to right some more in Section \ref{sec:one}.

\end{document}

我可以把它变成这样吗?

\documentclass{article}

\begin{document}
\section{One} \label{sec:one}

I need to right some more in Section 1.

\end{document}

相关内容