Estoy intentando dibujar 5 subtablas (3 para cada ancho de texto) para mi documento en formato IEEE (de dos columnas). Sin embargo, busqué en Google cómo dibujarlo, probé algo de código durante la última hora, pero no pude dibujarlo correctamente.
Mi código de subtabla:
\documentclass{ieeeaccess}
\usepackage{supertabular}
\usepackage{caption, subcaption}
\begin{table*}[h]
\begin{subtable}[h]{0.33\textwidth}
\centering
\begin{tabular}{l | l | l}
Day & Max Temp & Min Temp \\
\hline \hline
Mon & 20 & 13\\
Tue & 22 & 14\\
Wed & 23 & 12\\
Thurs & 25 & 13\\
Fri & 18 & 7\\
Sat & 15 & 13\\
Sun & 20 & 13
\end{tabular}
\caption{First Week}
\label{tab:week1}
\end{subtable}
\hfill
\begin{subtable}[h]{0.33\textwidth}
\centering
\begin{tabular}{l | l | l}
Day & Max Temp & Min Temp \\
\hline \hline
Mon & 17 & 11\\
Tue & 16 & 10\\
Wed & 14 & 8\\
Thurs & 12 & 5\\
Fri & 15 & 7\\
Sat & 16 & 12\\
Sun & 15 & 9
\end{tabular}
\caption{Second Week}
\label{tab:week2}
\end{subtable}
\begin{subtable}[h]{0.33\textwidth}
\centering
\begin{tabular}{l | l | l}
Day & Max Temp & Min Temp \\
\hline \hline
Mon & 20 & 13\\
Tue & 22 & 14\\
Wed & 23 & 12\\
Thurs & 25 & 13\\
Fri & 18 & 7\\
Sat & 15 & 13\\
Sun & 20 & 13
\end{tabular}
\caption{First Week}
\label{tab:week1}
\end{subtable}
\caption{Max and min temps recorded in the first two weeks of July}
\label{tab:temps}
\end{table*}
EOD
\end{document}
Sin embargo, mi resultado para estas tres tablas se parece a la imagen de abajo.
Respuesta1
Tienes un lío en las opciones de posicionamiento del subtable
sistema operativo. Pruebe lo siguiente:
\documentclass{ieeeaccess}
\usepackage{graphicx} % <--- had to be in preamble
\usepackage{subcaption}
\usepackage{makecell}
\begin{table*}
\centering
\begin{subtable}[t]{0.3\textwidth}
\centering
\begin{tabular}{l | l | l}
Day & \makecell{Max\\ Temp} & \makecell{Min\\ Temp} \\
\hline \hline
Mon & 20 & 13\\
Tue & 22 & 14\\
Wed & 23 & 12\\
Thurs & 25 & 13\\
Fri & 18 & 7\\
Sat & 15 & 13\\
Sun & 20 & 13
\end{tabular}
\caption{First Week}
\label{tab:week1}
\end{subtable}
\hfil
\begin{subtable}[t]{0.3\textwidth}
\centering
\begin{tabular}{l | l | l}
Day & \makecell{Max\\ Temp} & \makecell{Min\\ Temp} \\
\hline \hline
Mon & 17 & 11\\
Tue & 16 & 10\\
Wed & 14 & 8\\
Thurs & 12 & 5\\
Fri & 15 & 7\\
Sat & 16 & 12\\
Sun & 15 & 9
\end{tabular}
\caption{Second Week}
\label{tab:week2}
\end{subtable}
\hfil
\begin{subtable}[t]{0.3\textwidth}
\centering
\begin{tabular}{l | l | l}
Day & \makecell{Max\\ Temp} & \makecell{Min\\ Temp} \\
\hline \hline
Mon & 20 & 13\\
Tue & 22 & 14\\
Wed & 23 & 12\\
Thurs & 25 & 13\\
Fri & 18 & 7\\
Sat & 15 & 13\\
Sun & 20 & 13
\end{tabular}
\caption{First Week}
\label{tab:week1}
\end{subtable}
\caption{Max and min temps recorded in the first two weeks of July}
\label{tab:temps}
\end{table*}
\lipsum\lipsum
\EOD % <---
\end{document}