I have a long list of risks I want to put in my document.
I manage to make it work with longtable as can be seen in pic1 (It's in portguguese because it's my masters dissertaion).
The problem I'm facing here is that there's a configuration in the template that separates Tables from "Quadros" (which are mainly used for text and have the outer lines). This table should be a "Quadro" not a "Tabela" and should be included in that list.
I'm facing this problem because I am using a package called ABNTex2 which takes everything into the right formatting for my masters and one of the things created was a new float Quardo to take care of this differentiation
This is how a Quadro is usually instantiated:
\begin{quadro}[htb]
\caption{Editores de Texto Livres}
\label{quadro:editores_texto_livres}
\centering
\begin{tabular}{|l|l|r|} \hline
Editor & Multiplataforma & Específico para Latex \\ \hline
Kwriter & Sim & Não \\
Texmaker & Sim & Sim \\
Kile & Sim & Sim \\
Geany & Sim & Não \\ \hline
\end{tabular}
\end{quadro}
If I try to encapsulate the long table in the Quadro float, it simply doesn't show up, And I'm pretty sure it's because it's just too long.
So what I'm asking for help is either:
1- is there a way to change this code in order to allow the quadro to span multiple pages thus allowing the long table to be inside it? or another way to just make the float accept the longtable?
\newcommand{\listquadroname}{Lista de quadros}
\newcommand{\quadroname}{Quadro}
\newcommand{\quadrorefname}{Quadro}
\newcommand{\chartautorefname}{Quadro}
\addto\captionsenglish{% ingles
\renewcommand{\listquadroname}{List of charts}
\renewcommand{\quadroname}{Chart}
\renewcommand{\quadrorefname}{Chart}
\renewcommand{\chartautorefname}{Chart}
}
\newfloat{quadro}{htbp}{loq}[chapter]
\floatname{quadro}{\quadroname}
\floatstyle{plaintop}
\restylefloat{quadro}
\newlistof{listofquadros}{loq}{\listquadroname}
\newlistentry{quadro}{loq}{0}
\renewcommand{\thequadro}{\thechapter.\@arabic\c@quadro}
\setfloatadjustment{quadro}{\centering}
\renewcommand{\cftquadroname}{\quadroname\space}
\renewcommand*{\cftquadroaftersnum}{\hfill\textendash\hfill}
2- Is there a way to only change the name and list this specific table belongs to?
3- Last resort, how do I remove the outer vertical lines? (So as to make it count as a "Tabela")

