将文本保持在一起而不分页

将文本保持在一起而不分页

可能重复:
牢不可破的方块

你好,我想把这首诗打印在一页上,但它总是在中间断开。有办法让我把它们组合在一起吗?我看了这里但我不确定最好的解决方法是什么。

\documentclass[12pt,a4paper]{article}
\begin{document}
\vspace*{0.8\textheight}% just to demonstrate the breaking; in the real world,
                        % this would be text

A poem:

To yowe that Joyntly with vndaunted paynes\newline
Vowtsafed to Chawnte to vs thease noble straynes,\newline
How mutch yowe merrytt by it, it is not sedd,\newline
But yowe haue pleased the lyving, loved the deadd,\newline
Raysede from the woambe of Earth a Ritcher myne\newline
Then Curteys Cowlde with all his Castelyne\newline
Associattes, they dydd butt dig for Gowlde,\newline
Butt yowe for Treasure mutch moare manifollde.
\end{document}

答案1

这个问题在TeX 常见问题解答。去那看看吧。

您可以尝试的第一件事是使用samepage环境。尽管如常见问题解答中所述,这可能并非在所有情况下都有效,但这是最方便的方法。特别是如果您尝试创建的块仅包含文本。

如果我没看错,现有的解决方案似乎无法自动避免任何烦恼。你应该做的是选择一个解决方案,并测试它是否在你的特定用例中出现任何错误。我会先尝试samepage一下。

相关内容