将包含章节的 thesis.tex 文件转换为 Word

将包含章节的 thesis.tex 文件转换为 Word

我正在写论文,我把它分成一个主 .tex 文件和一组章节。我把它的结构设计如下:

% Comment these sections out when compiling the whole thing:
%\includeonly{Chapter1/Chapter1}
%\includeonly{Chapter2/Chapter2}
%\includeonly{Chapter3/Chapter3}
%\includeonly{Chapter4/Chapter4}
%\includeonly{Chapter5/Chapter5}
%\includeonly{Chapter6/Chapter6}
%\includeonly{Chapter7/Chapter7}

\documentclass[a4paper,oneside,12pt]{thesisPSnPDF} 

% Note that I am using my own custom style for the bibliography that uses \cites commands (I'll come to the issues with that later...)

\usepackage[backend=biber,style=custom_style]{biblatex}

\usepackage[margin=1in]{geometry}

\makeatletter
  \def\@maketitle{%
 \begin{center}%
 \let \footnote \thanks
   {\textbf{\MakeUppercase\@title}}%
   \vskip 1em%
   {\textsc\@author}
 \end{center}}
\makeatother

\begin{document}

\include{Title/Title}

\frontmatter
\include{Declaration/Declaration}
\include{Abstract/Abstract}

\include{Chapter1/Chapter1}
\include{Chapter2/Chapter2}
\include{Chapter3/Chapter3}
\include{Chapter4/Chapter4}
\include{Chapter5/Chapter5} 
\include{Chapter6/Chapter6}     
\include{Chapter7/Chapter7}

我想要做的是取消注释每个 \includeonly{Chapter{X}/Chapter{X}} 语句,将章节编译为 PDF 并将其发送给我的顾问进行审阅。但是,我的顾问非常喜欢使用 Word,我宁愿咬断自己的一条腿也不愿使用 Word,所以我正在寻找一种方法将单独的 PDF/章节转换为自己的章节。我尝试过 pandoc,但遇到了以下错误:

 pandoc: Cannot decode byte '\x2c': Data.Text.Internal.Encoding.decodeUtf8: Invalid UTF-8 stream

我查了 utf-8 代码,知道它是逗号,所以我尝试了其中一章,删除了所有逗号,找到了这个错误,但仍然遇到了问题。有人能告诉我如何实现我想要做的事情吗?不管怎样,我在 Sierra 上使用 TexShop。谢谢。

答案1

对于使用 Mac OS X 的用户,我发现最简单的解决方案是使用 SimpleTeX4ht (http://www.simpletex4ht.free.fr/),它将 tex 文件转换为 ODF。从那里我可以使用 LibreOffice 将这些文件保存为 .doc 文件。不确定非 Mac OS X 平台是否适用,但我会尝试一下。

相关内容