Paquetage tabularray et liste des tables
\documentclass[12pt]{article}%
\usepackage{multicol}%
\usepackage{tabularray}%
\usepackage{tblr-extras}%
\UseTblrLibrary{caption}%
\setlength{\parindent}{0em}%
\begin{document}%
\begin{multicols}{2}%
caption=Caption1, entry=Entry1, label={tab:label1}
\begin{talltblr}
[ caption=Caption1, entry=Entry1, label={tab:label1} ]
{ colspec = { Q Q }, hlines, vlines }
1 & the text in the cell \\
\\ A & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
caption=none, entry=Entry2, label={tab:label2}
\begin{talltblr}
[ caption=none, entry=Entry2, label={tab:label2} ]
{ colspec = { Q Q }, hlines, vlines }
2 & the text in the cell \\
\\ B & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
caption=Caption3, entry=none, label={tab:label3}
\begin{talltblr}
[ caption=Caption3, entry=none, label={tab:label3} ]
{ colspec = { Q Q }, hlines, vlines }
3 & the text in the cell \\
\\ C & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
caption=Caption4, entry=Entry4, label=none
\begin{talltblr}
[ caption=Caption4, entry=Entry4, label=none ]
{ colspec = { Q Q }, hlines, vlines }
4 & the text in the cell \\
\\ D & another text \\
\end{talltblr}
\columnbreak
caption=Caption5, entry=none, label=none
\begin{talltblr}
[ caption=Caption5, entry=none, label=none ]
{ colspec = { Q Q }, hlines, vlines }
5 & the text in the cell \\
\\ E & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
caption=none, entry=none, label={tab:label6}
\begin{talltblr}
[ caption=none, entry=none, label={tab:label6} ]
{ colspec = { Q Q }, hlines, vlines }
6 & the text in the cell \\
\\ D & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
caption=none, entry=Entry7, label=none
\begin{talltblr}
[ caption=none, entry=Entry7, label=none ]
{ colspec = { Q Q }, hlines, vlines }
7 & the text in the cell \\
\\ F & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
caption=none, entry=none, label=none
\begin{talltblr}
[ caption=none, entry=none, label=none ]
{ colspec = { Q Q }, hlines, vlines }
8 & the text in the cell \\ G & another text \\
G & another text \\
\end{talltblr}
%
\end{multicols}%
Les options les plus utiles :
Table avec étiquette, légende et listée.
\begin{talltblr}
[ caption=Caption, entry=Entry, label={tab:label9} ]
{ colspec = { Q Q }, hlines, vlines }
1 & the text in the cell \\
A & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
Table avec étiquette, légende et non listée.
\begin{talltblr}
[ caption=Caption, entry=none, label={tab:label10} ]
{ colspec = { Q Q }, hlines, vlines }
1 & the text in the cell \\
A & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
Table avec sans étiquette, avec légende et non listée.
\begin{talltblr}
[ caption=Example, entry=none, label=none ]
{ colspec = { Q Q }, hlines, vlines }
1 & the text in the cell \\
A & another text \\
\end{talltblr}
\vspace{2.0\baselineskip}
\listoftables%
\end{document}%