Eu tenho uma tabela funcional (talvez não tão elegante) que quero colocar em um ambiente de tabela para obter legenda e colocá-la na Lista de Tabelas. No entanto, isso não é tão simples quanto eu pensava. Eu tentei fazer um MWE:
\documentclass{article}
\usepackage{float}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\caption{TEST}
\label{tbl:testlabel}
\noindent \bgroup
\def\arraystretch{1.2}
\begin{tabular}[c]{|l || c| c| c| c| c| c|}
\cline{2-7}
\multicolumn{1}{c|}{} & TRNSYS & Modelica & \parbox[t]{0.8cm}{Mat-Lab} & EnergyPlus & \parbox[t]{0.7cm}{IES VE} & \parbox[t]{0.7cm}{IDA ICE} \\[15pt]
\hline
\hline
\parbox[t]{4cm}{\raggedright{a\\b}} & N & N & N & Y & Y & Y \\[15pt]
\hline
\parbox[t]{4cm}{c\\d} & N & N & N & N & N & Y\\[15pt]
\hline
\parbox[t]{4cm}{\raggedright{e\\f}} & N & N & N & N & Y & Y+\\[15pt]
\hline
\parbox[t]{4cm}{\raggedright{f\\h}} & Y & Y & Y & N? & N? & Y\\[15pt]
\hline
\parbox[c]{4cm}{\textbf{Number of "Y"}} & \textbf{4} & \textbf{6} & \textbf{4} & \textbf{3} & \textbf{3} & \textbf{6}\\
\hline
\end{tabular}
\end{table}
\end{document}
Sou muito novo no Latex, então não tenho ideia do que está errado. Compartilhar LaTex/Temaker me disse que falta um } na penúltima linha, mas não entendi!
Responder1
Você esqueceu \egroup
(correspondência \bgroup
) entre \end{tabular}
e \end{table}
.