如何在段落中插入垂直内容

如何在段落中插入垂直内容

在段落内插入一些垂直材料的正确方法是什么?像quote显示数学那样。

我想在段落的某个指定点垂直插入一个parbox或一个minipage,然后继续段落(特别是不缩进)。我可以通过用 硬断行来实现\\,但这感觉不对,而且显示的方程式或quote环境的行为方式也不是这样。

答案1

如果你看一下环境的定义centertexdef -t latex center),你会看到它的定义如下:

\begin{trivlist}\centering\item\relax
[body]
\end{trivlist}

因此,您可以采用该定义并删除\centering

\documentclass{article}
\begin{document}
This is the first line of a paragraph that has intentation. The goal is to have vertical material within the paragraph that is not indented, not centered, and does not indent the following line.
\begin{center}
The center environment does this but is centered
\end{center}
Some more text, not indented
\begin{trivlist}\item\relax
A trivlist is not centered and meets all three criteria
\end{trivlist}
End of the text, also not indented
\end{document}

结果:

在此处输入图片描述

相关内容