我正在尝试排版一个包含 3 个括号的公式,如下图所示(https://i.stack.imgur.com/52VXJ.jpg)我设法使用左括号和右括号输入它
答案1
尝试使用amsmath
的pmatrix
环境而不是tabular
,如其他答案。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{pmatrix}
1 & x_1 & \cdots \\
\vdots & \vdots & \vdots
\end{pmatrix}
\begin{pmatrix}
a_1 \\
a_2\\
\vdots
\end{pmatrix}
=
\begin{pmatrix}
y_n \\
f_1 \\
\vdots
\end{pmatrix}
\end{equation)
\end{document}