我如何才能获得环境enumerate
内部信息align
?我想要这样的东西:
%...
\begin{enumerate}
\item test123
\begin{align*}
\item x^2 & \text{ bla}\\
\item x^3 & \text{ bla2}\\
\end{align*}
\end{enumerate}
%...
那可能吗?
答案1
align
显然你可以在里面使用enumerate
,正如我在这个答案类似问题。只需执行以下操作:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
This is an align inside an enumerate.
\begin{enumerate}
\item First item.
\begin{align*}
f(x) &= x^2
\intertext{\item Second item.}
g(x) &= \int_0^\infty t^x x^{n - 1} \, dx
\end{align*}
\end{enumerate}
After the list.
\end{document}
第一个\item
必须在比对之外;其他的都可以\intertext
。
答案2
您正在使用未编号的align*
,这就是为什么在 内部使用它没有任何实际意义的原因enumerate
。也许这会有所帮助:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{enumerate}
\item test123
\item \hfill$ x^2 \text{ bla}$ \hfill\refstepcounter{equation}(\theequation)
\item \hfill$ x^3 \text{ bla2}$\hfill\refstepcounter{equation}(\theequation)
\item foo
\end{enumerate}
\end{document}