如何在“aligned”环境中排版“matrix”?

如何在“aligned”环境中排版“matrix”?

您能帮忙评论一下如何matrixaligned环境中排版吗?以下代码在 pdflatex 中给出了大量“缺少 $ 插入”... 非常感谢!

\documentclass{article}

\usepackage{amsmath}     

\begin{document}

\title{}         % Enter your title between curly braces
\author{}        % Enter your name between curly braces
\date{}          % Enter your date or \today between curly braces
\maketitle

$$ \begin{aligned}
a = \left(\begin{matrix}
a_{1}  \\
a_{2}  \\
a_{3}
\end{matrix}\right) \text{in the basis } \{\vec{e}_i\} \\

a = \left(\begin{matrix}
a'_{1}  \\
a'_{2}  \\
a'_{3}
\end{matrix}\right) \text{in the basis } \{\vec{\varepsilon}_i\}
\end{aligned}
$$ 

\end{document}

答案1

我不确定你想要的最终结果是什么(就你想要对齐的确切位置而言,或者这是否是更大物体的片段),但你可以用它\begin{align*}...来设置这些方程:

    \begin{align*}
    a &= \left(\begin{matrix}
    a_{1}  \\
    a_{2}  \\
    a_{3}
    \end{matrix}\right) \text{in the basis } \{\vec{e}_i\} \\
    a &= \left(\begin{matrix}
    a'_{1}  \\
    a'_{2}  \\
    a'_{3}
    \end{matrix}\right) \text{in the basis } \{\vec{\varepsilon}_i\}
    \end{align*}

在此处输入图片描述

相关内容