IEEE アクセス形式の 5 つのサブテーブルを描画します

IEEE アクセス形式の 5 つのサブテーブルを描画します

IEEE 形式の論文 (2 列) 用に 5 つのサブテーブル (テキスト幅ごとに 3 つ) を描画しようとしています。ただし、描画方法を Google で検索し、過去 1 時間コードをいくつか試してみましたが、うまく描画できませんでした。

私のサブテーブルコード:

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

ただし、これら 3 つのテーブルの出力は次の図のようになります。 出力画像

答え1

配置オプションが間違っていますsubtable。以下を試してください。

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

ここに画像の説明を入力してください

関連情報