答案1
l
列是左对齐的,而c
列是居中对齐的,因此只需在数组规范中更改l
为c
即可。话虽如此,我宁愿pmatrix
从amsmath
这里使用。
\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}