TAB 命令和 \caption

TAB 命令和 \caption

有没有办法给这个单元格集合添加描述?

类似于\caption命令。我试过了,但没用

\begin{TAB}(e){|c|c|c|c|c|c|c|c|c|c|c|}{|c|c|c|c|c|c|c|c|c|c|c|}
0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10\\
t & e & s & t & 0 & x & x & x & x & x & x\\
\end{TAB}

例如,在使用 \table 时,我可以添加描述:

\begin{table}[h]
\caption{Bla Bla Bla}
\begin{center}
\begin{tabular}{|c|c|c|}
\hline
1 & 2 & 3 \\
1 & 2 & 3 \\
1 & 2 & 3 \\
1 & 2 & 3 \\
\hline
\end{tabular}
\end{center}
\end{table}

答案1

环境table可以包含任何事物,不仅仅是一个tabular环境:

\documentclass{article}
\usepackage[thinlines]{easytable}
\begin{document}
\begin{table}[htp]
\caption{Bla Bla Bla}
\centering
\medskip
\begin{TAB}(e){|c|c|c|c|c|c|c|c|c|c|c|}{|c|c|c|c|c|c|c|c|c|c|c|}
0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10\\
t & e & s & t & 0 & x & x & x & x & x & x\\
\end{TAB}
\end{table}
\end{document}

请注意,我使用了\centering环境center和将\medskip标题与表格分开。我还添加了一些位置说明符(h切勿单独使用)。

在此处输入图片描述

相关内容