Laurenso
I copy this code from https://topanswers.xyz/tex?q=6738. In my document, there is only one longtabel. Therefore, I don't want to show caption `Table 1` and haven't any caption. How can I do this?
```
\documentclass{article}
\usepackage{tabularray}
\DefTblrTemplate{contfoot-text}{normal}{Quacking goes onto the next page}
\SetTblrTemplate{contfoot-text}{normal}
\DefTblrTemplate{conthead-text}{normal}{(Quack)}
\SetTblrTemplate{conthead-text}{normal}
\begin{document}
\begin{longtblr}{}
test test test test test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
\end{longtblr}
\end{document}
```
Top Answer
samcarter
You can redefine the `caption` and `capcont` templates:
```
\documentclass{article}
\usepackage{tabularray}
\DefTblrTemplate{contfoot-text}{normal}{}
\SetTblrTemplate{contfoot-text}{normal}
\DefTblrTemplate{conthead-text}{normal}{}
\SetTblrTemplate{conthead-text}{normal}
\DefTblrTemplate{caption}{normal}{}
\DefTblrTemplate{capcont}{normal}{}
\SetTblrTemplate{caption}{normal}{}
\SetTblrTemplate{capcont}{normal}{}
\begin{document}
\begin{longtblr}{}
test test test test test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
test\\
\end{longtblr}
\end{document}
```