如何在 LaTeX 中包含文件而不导致新页面
我希望这个问题不是太离题。
我有一个更大的学校项目,其中涉及一些文档。该文档是一个 LaTeX 文件,如下所示:
...
some explanation
\section {someCode}
\include{someCode.hs}
some explanation
...
文件 someCode.hs.tex
是使用 Pygments 和 Makefile 从其相应的 .hs
文件自动生成的。
问题是:每次我包含一些内容时,都会在之前插入分页符。这既不是我们所期望的,也不是我们想要的。我用谷歌搜索,但没有找到答案。有什么想法吗?
I hope, this question is not too offtopic.
I have a bigger school project which involves some documentation. The documentation is a LaTeX file, and looks like this:
...
some explanation
\section {someCode}
\include{someCode.hs}
some explanation
...
The files someCode.hs.tex
are auto-genereated from their corresponding .hs
-Files using Pygments and a Makefile.
The Problem is: Each time, I include something, a pagebreak is inserted before. This is neither expected nor wanted. I googled, but found no answer. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
\input
而不是\include
。Use
\input
instead of\include
.