在得到我的解决方案后第一个问题感谢 egreg,我遇到了第二种情况:我经常遇到这样的情况:我希望环境center
粘贴(没有分页符)到尾随文本,如下所示:
\begin{center}
\begin{tikzpicture}
some commands
\end{tikzpicture}
\end{center}
%
Some text
是否有可能为此提出一个通用的解决方案,例如基于中心定义新环境或定义全新的环境来完成任务?
谢谢您的回答!
答案1
使用\samepage{...}
。
\samepage{%
\begin{center}
\begin{tikzpicture}
some commands
\end{tikzpicture}
\end{center}
%
Some text%
}% end of \samepage
如果一些文本本身应该允许跨页面突破,更换center
环境并使用\nopagebreak
。
{\centering
\begin{tikzpicture}
some commands
\end{tikzpicture}%
\par
}\nopagebreak
%
Some text