정렬된 방정식의 첫 번째 줄을 글머리 기호와 동일한 기준선에 배치하고 방정식을 왼쪽 맞춤으로 만드는 방법은 무엇입니까?
\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
?.