LaTeX - 页面边缘有很多部分(没有内容)?
我有一个像这样的 LaTeX 文档:
\documentclass{article}
\begin{document}
\section{1}
\section{2}
\section{3}
\section{4}
\section{5}
\section{6}
\section{7}
\section{8}
\section{9}
\section{10}
\section{11}
\section{12}
\section{13}
\section{14}
\section{15}
\section{16}
\section{17}
\section{18}
\section{19}
\section{20}
\section{21}
\section{22}
\section{23}
\section{24}
\section{25}
\section{26}
\section{27}
\section{28}
\section{29}
\section{30}
\end{document}
很多章节标题,但其中没有文本
会产生如下内容:
如您所见,它将所有章节标题保留在一页上,并且不会将其分成两页。 26 以上的所有内容都已从页面末尾消失。
有没有办法让 LaTeX 将这些部分拆分到多个页面上?我无法轻易更改正文的实际内容,因为它是自动生成的。不过我可以更改序言。无论如何,是否可以通过更改序言来做到这一点?
I have a LaTeX document like this:
\documentclass{article}
\begin{document}
\section{1}
\section{2}
\section{3}
\section{4}
\section{5}
\section{6}
\section{7}
\section{8}
\section{9}
\section{10}
\section{11}
\section{12}
\section{13}
\section{14}
\section{15}
\section{16}
\section{17}
\section{18}
\section{19}
\section{20}
\section{21}
\section{22}
\section{23}
\section{24}
\section{25}
\section{26}
\section{27}
\section{28}
\section{29}
\section{30}
\end{document}
Lots of section headings, but no text in
It produces something like this:
As you can see it keeps all the section headings on one page, and won't break it into 2 pages. Everything above 26 has disappeared off the end of the page.
Is there anyway to get LaTeX to split these sections across multiple pages? I can't easily change the actual content of body, since it's autogenerated. I can change the preamble though. Is there anyway to do this by changing the preamble?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在节标题后添加 \mbox{} 将允许分页。您可以在序言中通过以下方式在全球范围内引入它:
或者
像这样展开示例。
Adding \mbox{} after a section heading would allow the page break. You could introduce it globally in the preamble by:
or
like in this expandafter example.
斯特凡的解决方案对我不起作用,导致目录出现问题。
我也不知道如何使用 deinst 的答案(sectsty 包)。
对我有用的是这个
Stefan's solution didn't work for me, causing problems with the table of contents.
I couldn't work out how to use deinst's answer (sectsty package) either.
What did work for me was this
您应该能够使用 sectsty 包执行类似的操作
You should be able to do something like this with the sectsty package