在多元环境中处理寡妇
我在处理 multicols 环境中的寡妇时遇到问题,也就是说,我没有设法指示 LaTeX 删除它们。
此 PDF 文档 显示了问题的示例。在第二页的顶部,我从第一页的最后一段中得到了一个寡妇。我尝试了几种方法,但没有运气:
- 将
\widowpenalty
和\clubpenalty
设置为高值, - 在
\raggedcolumns
和之间切换\flushcolumns
- 调整
collectmore
和unbalance
计数器
我还阅读了 multicol 文档 但没有找到任何有用的东西。
还有什么我可以尝试的吗?
I have problems with dealing with widows within a multicols environment, that is, I have not managed to instruct LaTeX to remove the them.
This PDF document shows an example of the problem. At the top of the second page, I get a widow from the last paragraph of the first page. I have tried a couple of approaches, without luck:
- setting both
\widowpenalty
and\clubpenalty
to high values - switching between
\raggedcolumns
and\flushcolumns
- adjusting the
collectmore
andunbalance
counters
I've also read through the documentation for multicol but have not found anything useful.
Is there anything else I could try?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在段落的任意位置插入
\nomorebreak
。该宏之后直到段落末尾将禁止分页。Insert
\nomorebreak
at any place of your paragraph. Page breaks will be prohibited after this macro until the end of the paragraph.似乎 TeX FAQ 项目 控制寡妇和孤儿 有一些您尚未尝试过的选项。
It seems that the TeX FAQ item Controlling widows and orphans has some options you did not try yet.