我有一个文档(FromLaTeX.tex
),内容如下:
\documentclass{article}
\begin{document}
\section*{Introduction}
\section{First}
\section{Second}
\subsection{Numbered subsection}
\subsection*{Unnumbered subsection}
\section{Third}
\section*{References}
\end{document}
我想将其转换为 Word 使用pandoc
pandoc -f latex -t docx -N --reference-doc=mycustomdoc.docx FromLaTeX.tex -o ToWord.docx
\section*
如何才能隐藏Word 文档中 s的编号?
更新/澄清:
我想使用 Word 的内置样式系统来设置标题,并创建了一个reference-doc
用于pandoc
( mycustomdoc.docx
) 的格式,其中将编号标题作为主要标题样式(标题 1、标题 2 等)。我还创建了与编号标题相匹配的未编号标题样式reference-doc
(未编号标题 1,...)。我希望在转换为 时能够将
\section*
s 与这些未编号标题相匹配docx
。