直接导出多个 PDF

直接导出多个 PDF

我有一个包含多个章节的大型 latex beamer 项目。我需要将每个章节导出到单独的 pdf 文件中。

我们有办法将每个包含文件导出到单独的 PDF 中吗?

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% To Pass graphics paths
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\graphicspath{{./Figures/}}
\graphicspath{{./Figures/chapter-01/}}
\input{preamble/preamble.tex}
\input{./front_page.tex}
%------------------------------------------------------------
\begin{document}

    %---------------------------------------------------------
    %The next statement creates the title page.
    \frame{\titlepage}

    %---------------------------------------------------------
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \include{Ch01}
    \include{Ch02}
    \include{Ch03}
    \include{Ch04}
    \include{Ch04}
    \include{Ch05}
    \include{Ch06}
    \include{Ch07}
    \include{Ch08}
    \include{Ch09}
    \include{Ch10}
    \include{Appendix}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}


%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% TeX-engine: xetex
%%% End:

相关内容