帮助使用 Pandoc 将 LaTeX 转换为 Docx

帮助使用 Pandoc 将 LaTeX 转换为 Docx

这是我第一次使用 pandoc,也是我第一次在这里发帖。我使用 TeX Maker 将 LaTeX 文档生成为 PDF,并且没有错误。Document 类是 report。我需要将我的 LaTeX 文件转换为 docx 文件,以供我的研究顾问使用。我使用的是最新版本的 pandoc(pandoc 3.1.9)。我使用以下命令进行转换:

pandoc NMTthesis.tex -o mynewthesis.docx

一旦我在 Windows 命令提示符中运行此行命令,就会收到此错误:

Error at "NMTthesis.tex" (line 197, column 1):
unexpected \@topnum
\chapter{Test READ BEFORE REPLACING THIS\protect\\ CHAPTER WITH YOUR CONTENT}
^

\listoftalbes我已经通过我的 LaTeX 代码进行了一些调试,并且它对、\listoffigures和现在 都出现了同样的错误\chapters

pandoc 不喜欢这些 LaTeX 命令吗?

感谢您的时间和帮助。

更多信息:

我创建 pdf 时使用 MiKTeX 和 TeXmaker。我使用 Windows 命令提示符通过 pandoc 将 latex 转换为 docx。

这是我所在大学的乳胶模板(NMTthesis.tex)的链接,其中包含他们自己的乳胶样式文件(NMTthesis2020.sty,自定义使用包): https://www.nmt.edu/gradstudies/thesis_information.php 第一个链接是 LaTex Template。下面是我大学里最简单的 latex 文档(我将其缩短以显示使用了哪些 latex usepackage 和命令。您将需要\usepackage{NMTthesis2020}提供的链接中的 usepackage):

\documentclass[12pt]{report}
\usepackage[sort&compress]{natbib}
\usepackage{NMTthesis2020}
\usepackage[hypertexnames=false]{hyperref}
\hypersetup{
    colorlinks = true,
    linkcolor = black,
    anchorcolor = black,
    citecolor = black,
    filecolor = black,
    urlcolor = black,
    pdfnewwindow = true,
    extension = pdf} 
\thesis

\author{Your Name Here}

\title{Place your title here, and use commands to break lines}

\degreeSought{Doctor of Philosophy in Mechanical Engineering with Dissertation in Intelligent Energetic Systems}

\thesiscompletiondate{May 12, 2020}

\graduationdate{June, 2020}

\academicadvisor{Ada Lovelace}

\researchadvisor{Ada Lovelace}

\committeesize{3}

\committeememberone{Committee Member 1}
\committeemembertwo{Committee Member 2}
\committeememberthree{Committee Member 3}
\committeememberfour{Committee Member 4}
\committeememberfive{Committee Member 5}

\begin{document}

\titlepage

\begin{dedication}
\end{dedication}

\begin{acknowledgments}
\end{acknowledgments}

\begin{abstract}
\keywords{Keyword1; Keyword2; Key Phrase 3; ...}
\end{abstract}

\tableofcontents

\listoftables

\listoffigures

\signaturepage
\chapter{Test READ BEFORE REPLACING THIS CHAPTER WITH YOUR CONTENT}

\chapter{SECOND CHAPTER TITLE}
\section{Section Title}
\subsection{Subsection Title}

\bibliographystyle{unsrt}
\bibliography{references}

\appendix
\chapter{1st app TITLE}
\section{First section of Appendix A}

\chapter{SECOND app TITLE}

\chapter{PERMISSIONS}

\copyrightpage

\end{document}

相关内容