一个表有多个子表?

一个表有多个子表?

我正在尝试创建下表。在此处输入图片描述

每个子表代表一个对称矩阵,这就是为什么上部没有填写的原因。

我不确定我需要的是一张桌子。

任何帮助,将不胜感激。

到目前为止,我尝试了下面的代码,但效果并不理想。表格的对齐效果很差。

\begin{table}
\parbox{.45\linewidth}{
\centering
\begin{tabular}{ccc}
\hline
a& & \\
a&b&\\
a&b&c\\
\hline
\end{tabular}
\caption{Foo}
}
\hfill
\parbox{.45\linewidth}{
\centering
\begin{tabular}{ccc}
\hline
d&e&f\\
d&e&f\\
d&e&f\\
\hline
\end{tabular}
\caption{Bar}
}
\parbox{.45\linewidth}{
\centering
\begin{tabular}{ccc}
\hline
a&b&c\\
d&e&f\\
d&e&f\\
\hline
\end{tabular}
\caption{Foo}
}
\end{table}

答案1

像这样?

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\usepackage{tabularx}
\usepackage[skip=1ex]{caption}

\begin{document}
    \begin{figure}[ht]
{\captionsetup{skip=-3ex, font=small}
\begin{tabularx}{\linewidth}{XXX}
\caption*{Period $a$}
\[
\begin{pmatrix}
a_{11}  &           &       \\
a_{21}  & a_{22}    &       \\
a_{31}  & a_{32}    & a_{22}\\
\end{pmatrix}
\]
    &
\caption*{Period $b$}
\[
\begin{pmatrix}
b_{11}  &           &       \\
b_{21}  & b_{22}    &       \\
b_{31}  & b_{32}    & b_{22}\\
\end{pmatrix}
\]
        &
\caption*{Period $c$}
\[
\begin{pmatrix}
c_{11}  &           &       \\
c_{21}  & c_{22}    &       \\
c_{31}  & c_{32}    & c_{22}\\
\end{pmatrix}
\]      \\

\caption*{Period $d$}
\[
\begin{pmatrix}
d_{11}  &           &       \\
d_{21}  & d_{22}    &       \\
d_{31}  & d_{32}    & d_{22}\\
\end{pmatrix}
\]
    &
\caption*{Period $e$}
\[
\begin{pmatrix}
e_{11}  &           &       \\
e_{21}  & e_{22}    &       \\
e_{31}  & e_{32}    & e_{22}\\
\end{pmatrix}
\]
        &
\end{tabularx}  \\
}
\caption{Diagonal matrices}
    \end{figure}
\end{document}

相关内容