Is there a way to add a description to this collection of cells?
Something like \caption command. I tried but to no avail
\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}
While using \table, for example, I can add a descrition:
\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}
