我正在用 LaTeX 写一篇文章,用\input
命令将其拆分成多个文件。每个部分都在一个单独的文件中。有没有办法让这些文件独立构建,同时仍能构建包含\input
它们的主文档?
像这样:
\if<this is top level>
\documentclass{article}
\begin{document}
\fi
Section text goes here
\if<this is top level>
\end{document}
\fi
我正在用 LaTeX 写一篇文章,用\input
命令将其拆分成多个文件。每个部分都在一个单独的文件中。有没有办法让这些文件独立构建,同时仍能构建包含\input
它们的主文档?
像这样:
\if<this is top level>
\documentclass{article}
\begin{document}
\fi
Section text goes here
\if<this is top level>
\end{document}
\fi