矩阵的对齐问题

矩阵的对齐问题

我在 Latex 上写了以下矩阵:

在此处输入图片描述

但是,我希望不同的元素垂直对齐,即:

在此处输入图片描述

我无法完成此操作。我的代码如下:

\[\phi_1(\mathbf{x}) = 
    \left(
    \begin{array}{l}
        x_1^2
        \\
        \sqrt{2}x_1x_2
        \\
        x_2^2
        \end{array}
   \right)\]

你知道我该如何修复这个问题吗?

答案1

l列是左对齐的,而c列是居中对齐的,因此只需在数组规范中更改lc即可。话虽如此,我宁愿pmatrixamsmath这里使用。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\phi_1(\mathbf{x}) = 
    \left(
    \begin{array}{c}
        x_1^2
        \\
        \sqrt{2}x_1x_2
        \\
        x_2^2
        \end{array}
   \right)
\]
With \texttt{pmatrix}:
\[
\phi_1(\mathbf{x}) = 
    \begin{pmatrix}
        x_1^2
        \\
        \sqrt{2}x_1x_2
        \\
        x_2^2
        \end{pmatrix}
\]
\end{document}

在此处输入图片描述

相关内容