Tengo una tabla funcional (tal vez no tan elegante) que quiero colocar dentro de un entorno de tabla para obtener el título y obtenerlo en la Lista de tablas. Sin embargo, esto no es tan simple como pensaba. Intenté hacer un 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}
Soy bastante nuevo en Latex, así que no tengo idea de qué está mal. Share LaTex/Temaker me dice que falta un } en la penúltima línea, ¡pero no lo entiendo!
Respuesta1
Has olvidado \egroup
(hacer coincidir \bgroup
) entre \end{tabular}
y \end{table}
.