如何格式化矩阵内部的表格?

如何格式化矩阵内部的表格?

我希望能找到一个解决方案来做出类似这样的事情: 数据矩阵

我无法向该表D=\left(添加:\right)

\begin{table}[h]
\centering
\caption{Data matrix format}
\label{my-label}
\begin{tabular}{l|cccc}
     & $X_1$      & $X_2$      & ...                     & $X_d$      \\ \hline
$x_1$ & $x_{11}$ & $x_{12}$ & ...                     & $x_{1d}$ \\
$x_2$ & $x_{21}$ & $x_{22}$ & \multicolumn{1}{l}{...} & $x_{2d}$ \\
...  & ...       & ...       & ...                     & ...       \\
$x_n$ & $x_{n1}$ & $x_{n2}$ & ...                     & $x_{nd}$
\end{tabular}
\end{table}

有办法吗?

答案1

array环境本质上是一个tabular适合数学模式的环境。因此请使用它。然后,添加所有其他所需的数学内容就会自然而然地发生。

此外,、、\dots\vdots\ddots在数学模式下使用。

最后,我删除了\multicolumn,因为我没有看到它添加的任何内容。

\documentclass{article}

\begin{document}
\begin{table}[ht]
\centering
\caption{Data matrix format}\medskip
\label{my-label}
$D = \left( 
\begin{array}{l|cccc}
       & X_1    & X_2    & \dots  & X_d    \\ \hline
x_1    & x_{11} & x_{12} & \dots  & x_{1d} \\
x_2    & x_{21} & x_{22} & \dots  & x_{2d} \\
\vdots & \vdots & \vdots & \ddots & \vdots \\
x_n    & x_{n1} & x_{n2} & \dots  & x_{nd}
\end{array}
\right)$
\end{table}
\end{document}

在此处输入图片描述

相关内容