当方程式位于枚举环境中时,如何拆分和对齐方程式?

当方程式位于枚举环境中时,如何拆分和对齐方程式?

如何使对齐方程的第一行与项目符号位于同一基线,并使方程左对齐?

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{itemize}
    \item $3!=3\times2\times1=6$
    \item $\tfrac{5!}{3!}=\tfrac{5\times4\times3!}{3!}=5\times4=20$
    \item \begin{align*}
                    \frac{n!}{(n-2)!}   &=\frac{n\times(n-1)\times(n-2)!}{(n-2)!}\\
                                                        &=n\times(n-1)\\
                                                        &=n^2-n
                \end{align*}
\end{itemize}
\end{document}

答案1

环境aligned运行良好,并[t]可以选择在第一行获取项目符号:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{itemize}
    \item $3!=3\times2\times1=6$
    \item $\tfrac{5!}{3!}=\tfrac{5\times4\times3!}{3!}=5\times4=20$    
    \item $\!\begin{aligned}[t]
                    \frac{n!}{(n-2)!}   &=\frac{n\times(n-1)\times(n-2)!}{(n-2)!}\\
                                                        &=n\times(n-1)\\
                                                        &=n^2-n
                \end{aligned}$
\end{itemize}

\end{document}

示例代码的输出

编辑:\!在块之前添加了一个负薄空间,以抵消开头内置的aligned薄空间。有关背景信息,请参阅问题\,aligned\,为什么“ ”环境开头有一个空格aligned

相关内容