tables add tag
CarLaTeX
I would like to set the caption of Table 2 like the caption of Table 1:


```
\documentclass{article}
\usepackage[
  font=small,
  labelfont=bf,labelsep=period,
  format=plain,
  width=\textwidth,
  maxmargin=false,
  justification=centering
  ]{caption}
\captionsetup[table]{
  position=above, aboveskip=4pt
  }
\usepackage{tabularray}
\UseTblrLibrary{booktabs} 
\SetTblrStyle{caption-sep}{font=\bfseries}
\SetTblrStyle{caption-tag}{font=\bfseries}
\DefTblrTemplate{caption-sep}{default}{.\enskip}
\SetTblrStyle{remark-tag}{font=\footnotesize}
\SetTblrStyle{remark-sep}{font=\footnotesize}
\SetTblrStyle{remark-text}{font=\footnotesize}
\SetTblrInner[talltabs]{stretch=1.2}
\NewDocumentEnvironment{tabella}{+b}{
    \begin{table}[ht]\centering\small
    #1
    \end{table}
    }{}
\begin{document}
\SetTblrTemplate{caption}{simple}
\SetTblrStyle{caption}{align=centerlast}

\renewcommand{\arraystretch}{1.2}
\begin{tabella}
    \caption{\label{tab:mytab}A long long long long long long 
        long long long long long long 
        long long long long caption}
    \begin{tabular}{ccc}
        \toprule 
        Head & head & head \\
        \midrule
        a & b &c\\
        e & f& g\\
        \bottomrule
    \end{tabular}
\end{tabella}
\begin{tabella}
    \begin{talltabs}[
	  caption={A long long long long long long
                 long long long long long long 
                 long long long long caption},
        label={tab:mytabularray},
	]{ccc}
        \toprule 
        Head & head & head \\
        \midrule
        a & b &c\\
        e & f& g\\
        \bottomrule
    \end{talltabs}
\end{tabella}
\end{document}
```

![image.png](/image?hash=cdb8a20461d9cf4e229c6d4deba89405bcb8245a2bdc5778544b9ee4289f6f3e)
Top Answer
CarLaTeX
I found the solution putting `entry=none, label=none` as `talltabs` options and using the ordinary `\caption`.


```
\documentclass{article}
\usepackage[
  font=small,
  labelfont=bf,labelsep=period,
  format=plain,
  width=\textwidth,
  maxmargin=false,
  justification=centering
  ]{caption}
\captionsetup[table]{
  position=above, aboveskip=4pt
  }
\usepackage{tabularray}
\UseTblrLibrary{booktabs} 
\SetTblrStyle{caption-sep}{font=\bfseries}
\SetTblrStyle{caption-tag}{font=\bfseries}
\DefTblrTemplate{caption-sep}{default}{.\enskip}
\SetTblrStyle{remark-tag}{font=\footnotesize}
\SetTblrStyle{remark-sep}{font=\footnotesize}
\SetTblrStyle{remark-text}{font=\footnotesize}
\SetTblrInner[talltabs]{stretch=1.2}
\NewDocumentEnvironment{tabella}{+b}{
    \begin{table}[ht]\centering\small
    #1
    \end{table}
    }{}
\begin{document}
\begin{tabella}
  \caption{\label{tab:mytabularray}A long long long long long long
                 long long long long long long 
                 long long long long caption}
  \begin{talltabs}[entry=none, label=none]{ccc}
    \toprule 
    Head & head & head \\
    \midrule
    a & b &c\\
    e & f& g\\
   \bottomrule
  \end{talltabs}
\end{tabella}
\end{document}
```

![image.png](/image?hash=069fc12387bf5e5eccacadd1c10baa649020ab91c86d194776b156a3e63b2fcb)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.