无法在 latex 中写入 d 方程

无法在 latex 中写入 d 方程

我正在尝试排版一个包含 3 个括号的公式,如下图所示(https://i.stack.imgur.com/52VXJ.jpg)我设法使用左括号和右括号输入它在此处输入图片描述

答案1

尝试使用amsmathpmatrix环境而不是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}

例子

相关内容