如何使用 LaTeX 中的列表环境将项目的文本组合在一起?
使用这个 LaTeX 代码:
\begin{list}
\item my first item title
my first item content
\item my second item title
my second item content
\end{list}
在分页末尾分成两部分,一个“项目”如下:
--------page 1-------- ... my first item title my first item content my second item title ---------------------- --------page 2-------- my second item content ----------------------
但我想生成:
--------page 1-------- ... my first item title my first item content ---------------------- --------page 2-------- my second item title my second item content ----------------------
我不想打破一个“项目”。 我尝试使用 \mbox 但没有找到换行符。
感谢您的帮助。
With this LaTeX code:
\begin{list}
\item my first item title
my first item content
\item my second item title
my second item content
\end{list}
at the end of the page break in two parts a "item" like:
--------page 1-------- ... my first item title my first item content my second item title ---------------------- --------page 2-------- my second item content ----------------------
but i want to generate:
--------page 1-------- ... my first item title my first item content ---------------------- --------page 2-------- my second item title my second item content ----------------------
I don't want break a "item".
I try using \mbox but not found the linebreak.
Thank for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标题以
\nopagebreak\\
结束,并且之间没有空行。End the title with
\nopagebreak\\
and no blank line between.