使用 amsart 类时,数学运算全部居中在页面上,即使数学运算在 eqlist 环境中,这会改变文本宽度。有没有办法让 amsart 在居中方程式时尊重文本宽度的变化,就像使用 eqlist 一样?
以下是 MWE:
在通常的文章类中,这里的积分相对于当前文本宽度与中心对齐。
\documentclass{article}
\usepackage{amsmath}
\usepackage{eqlist}
\begin{document}
Here is some math
\[\int\]
\begin{eqlist}
\item[EQLIST ITEM] Here is some text and math
\[\int\]
Here is more text.
\end{eqlist}
\end{document}
然而,当用 编译时\documentclass{amsart}
,积分都以页面为中心。
所以问题是,使用 amsart 类,是否可以使方程的排列像在 article 类中一样。
编辑
这是在另一个问题中解决和\renewcommand{\fullwidthdisplay}{}
。