add tag
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}
```

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

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.