Desenhe 5 subtabelas para formato de acesso IEEE

Desenhe 5 subtabelas para formato de acesso IEEE

Estou tentando desenhar 5 subtabelas (3 para cada largura de texto) para meu papel no formato IEEE (colunas duplas). No entanto, pesquisei no Google como desenhá-lo, tentei algum código na última hora, mas não consegui desenhá-lo com sucesso.

Meu código de subtabela:

\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}

No entanto, minha saída para essas três tabelas é semelhante à imagem abaixo. imagem de saída

Responder1

Você tem uma bagunça nas opções de posicionamento subtabledo sistema operacional. Experimente o seguinte:

\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} 

insira a descrição da imagem aqui

informação relacionada