我有以下 LaTeX 代码:
\documentclass[]{article}
\usepackage{amsmath}
\begin{document}
\newcommand{\A}{\begin{bmatrix} 1 & 0 \\ 0 & 1\end{bmatrix}}
\newcommand{\B}{\begin{bmatrix} 0 & -1 \\ 1 & 0\end{bmatrix}}
\begin{itemize}
\item $\begin{aligned}
BA&=\B \A\\&=\B=\B \A=BA
\end{aligned}$
\end{itemize}
\end{document}
我的可怜的小家伙有以下愿望:
我怎样才能实现他的梦想?
答案1
\begin{aligned}[t]
是你的朋友 ;)
\documentclass[]{article}
\usepackage{amsmath}
\begin{document}
\newcommand{\A}{\begin{bmatrix} 1 & 0 \\ 0 & 1\end{bmatrix}}
\newcommand{\B}{\begin{bmatrix} 0 & -1 \\ 1 & 0\end{bmatrix}}
\begin{itemize}
\item $\begin{aligned}[t]
BA&=\B \A\\&=\B=\B \A=BA
\end{aligned}$
\end{itemize}
\end{document}