此刻我正在使用 \input{} 命令编写我的第一个 .tex 文件。我的“主”文件将如下所示。
%preamble
\begin{document}
\input{introduction.tex}
%et cetera
\end{document}
现在,我的introduction.tex文件如下所示:
\section{Introduction}
This is the first paragraph in the introduction.
This is the second paragraph in the introduction.
请注意我的第一段和第二段之间的空白规则。本例中的输出显示:
Introduction
This is the first paragraph in the introduction. This is the second paragraph in the introduction.
当将来自introduction.tex的代码直接替换到主文档中时
%preamble
\begin{document}
\input{introduction.tex}
%et cetera
\end{document}
表明
Introduction
This is the first paragraph in the introduction.
This is the second paragraph in the introduction.
结果中的这个空白规则正是我想要的,但使用 \input{} 方法却没有显示。为什么不显示这个空白规则?有没有一种简单的方法可以解决这个问题,而不必在每次段落结束时使用 \hfill 或类似的东西?