CarLaTeX
Is it possible to create a new kind of `longtblr`, "Quadro" in the example, with its own numbering, and its own LoT, in a more elegant way than the following?
```
\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{tabularray}
\NewTblrEnviron{quadro}
\SetTblrOuter[quadro]{
label=none,
long,
entry=none,
}
\usepackage{newfloat}
\DeclareFloatingEnvironment[
fileext=loq,
listname={List of Quadros},
name=Quadro,
placement=tbhp,
]{qua}
%\usepackage{hyperref}
\begin{document}
\listoftables
\listofquas
\chapter{Chapter}
\section{Section}
\begin{longtblr}[
caption = {An ordinary long table},
label = {tab:longtab},
]{
colspec = {*3{c}},
rowhead = 1,
}
Column 1 & Column 2 & Column 3\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
\end{longtblr}
\refstepcounter{qua}\addcontentsline{loq}{table}{\thequa\enspace\enspace Un quadro}
\begin{quadro}[
caption={Quadro \thequa: Un quadro},
]{
colspec = {*3{c}},
rowhead = 1,
}
Column 1 & Column 2 & Column 3\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
a & b & c\\
d & e & f\\
\end{quadro}
\end{document}
```



