我怎样才能分割表情?

我怎样才能分割表情?

\begin{split}当我在命令中使用命令时\begin{itemize},出现错误...为什么?我们不能在那里使用它吗?

我写的命令如下:

\begin{description}
\item $\begin{split}+ \ \ : \ \  x_1+x_2 &= a_1+b_1\sqrt{t^2-1}+a_2+b_2\sqrt{t^2-1}=(a_1+a_2)+(b_1+b_2)\sqrt{t^2-1} \\ & \mapsto (a_1+a_2, b_1+b_2)\end{split}$
\item $0\ \  : \ \  0=0+0 \sqrt{t^2-1} \mapsto (0,0)$
\end{description} 

我做错什么了吗?

答案1

不确定所寻求的结果是什么,但这里

    \documentclass[12pt]{article}
    \usepackage{amsmath}
    \begin{document}

Single line equations:
    \begin{description}
    \item[(a)] $x_{1} + x_{2} = a_{1} + b_{1}\sqrt{t^2-1} + a_{2} + b_{2}\sqrt{t^2-1} = (a_{1} + a_{2} )
    + (b_{1} + b_{2})\sqrt{t^2-1} \mapsto (a_1+a_2, b_1+b_2)$
    \item[(b)] $0 :  0=0+0 \sqrt{t^2-1} \mapsto (0,0)$
    \end{description}

multi-line equation for the first descriptive item:
\begin{description}
\item[(a)] $\begin{aligned}[t] x_{1} + x_{2} &= a_{1} + b_{1}\sqrt{t^2-1} + a_{2} + b_{2}\sqrt{t^2-1} \\
& = (a_{1} + a_{2} ) + (b_{1} + b_{2})\sqrt{t^2-1} \\ & \mapsto (a_1+a_2, b_1+b_2) \end{aligned}$
\item[(b)] $0 + 0 =0+0 \sqrt{t^2-1} \mapsto (0,0)$
\end{description}

    \end{document}

是删除上述错误的代码。输出为:

多行逐项列出

相关内容