如何将一个\ref
和\cite
部分数学“文本块”分开成段落?
这里有个很好的例子: 弗莱施纳定理的简短证明,第 4 页;有文本块 (1) 和 (2),它们在后面的文本中被多次引用。
以下是所需结果的图片:
答案1
您可以使用equation
嵌入的环境array
,其唯一列为段落格式。例如:
\documentclass{article}
\begin{document}
\noindent
following assertion holds:
\begin{equation}
\label{eq:test}
\begin{array}{p{0.8\textwidth}}
for any \( i,j \), if \( v = x^i_j \) then all passes of \( J' \)
through are marked except for the pass containing \( e^i_j \).
\end{array}
\end{equation}
This is easy to verify\dots
So we assume that (\ref{eq:test}) holds\dots
\end{document}
这样,您就可以像在方程式中一样进行常规控制。随意调整段落的宽度。我选择了0.8\textwidth
。需要一些尺寸。
上述解决方案可以打包到专用环境中,如下所示:
\documentclass{article}
\newenvironment{assertion}{\begin{equation}\begin{array}{p{0.8\textwidth}}}{%
\end{array}\end{equation}}
\begin{document}
\noindent
following assertion holds:
\begin{assertion}
\label{eq:test}
for any \( i,j \), if \( v = x^i_j \) then all passes of \( J' \)
through are marked except for the pass containing \( e^i_j \).
\end{assertion}
This is easy to verify\dots
\end{document}