Laurenso
I want to change title `Continued ~ on ~ next ~ page` and `Continued` at footer and header of a longtable in tabularray. How can I do it?
Top Answer
samcarter
You can change the `contfoot-text` and `conthead-text` templates:
```
\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}
```