枚举环境中的方程很长

枚举环境中的方程很长

我在枚举环境中有一个很长的数学术语。问题是,它太长了,所以不适合放在纸的右侧。有没有可能把它移到左边?因为枚举比通常的行稍微靠中间一点,所以这应该可以以某种方式实现

\begin{enumerate}
\item here some text
\begin{equation}
this equation is to long, so it needs to be more to the left
\end{equation}
text\\
\item and so on...
\end{enumerate}

答案1

一种选择是使用split

\documentclass{report}
\usepackage{mathtools}
\begin{document}
  \begin{enumerate}
\item here some text
\begin{equation}
\begin{split}
a+b+c+v & = d+g+t+h+y+u+j+i+k+l+o+f\\
        &\phantom{{}= d}+r+t+g+b+h+y+n+d+e+r+f \\
        &\phantom{{}= d}+w+e+r+t+yh+y+n+d+e+r+f
\end{split}
\end{equation}
text\\
\item and so on...
\end{enumerate}
\end{document}

在此处输入图片描述

如果坚持要将等式向左移动,请添加一些负空间,例如:

\begin{equation}
\hspace*{-3cm}a+b+c+v  = d+g+t+h+y+u+j+i+k+l
\end{equation}

相关内容