2列の論文の付録

2列の論文の付録

論文に図と表の付録を作成したいのですが、以下のような結果になりました。使用するコードは次のとおりです。

\appendix
\appendix[Table index ]
\begin{table*}[h!]
    \centering
    \caption{classification of the Arab world's economies in 2014}
    \label{classification of the Arab world's economies in 2014}
    \begin{tabular}{IIIIIII}
        \includegraphics[width=.7\textwidth, height=6cm]
            {classificationOftheAraWorld'seconomiesIn2014.PNG}
    \end{tabular}
\end{table*}
\appendix
\end{document}

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

答え1

実際に機能する MWE が提供されていないため、私が作成しました。おそらく、これがあなたが探しているものだと思います。図と表を含む非常に基本的な 2 ページの記事です。付録は、ここにマクロを追加するだけです。

\documentclass[twocolumn]{article}
\usepackage{graphicx}
\usepackage{caption} 

\begin{document}
\begin{figure}
\centering
\includegraphics[width=5cm]{example-image-a}
\caption{Figure A}
\end{figure}

\begin{figure}
\centering
\includegraphics[width=.3\textwidth]{example-image-b}
\caption{Figure B}
\end{figure}

\begin{figure}
\centering
\includegraphics[width=.3\textwidth]{example-image-c}
\caption{Figure C}
\end{figure}

\begin{figure}
\centering
\includegraphics[width=.3\textwidth]{example-image}
\caption{Figure 1}
\end{figure}

\begin{table}
\centering
\caption{Table 1}
\begin{tabular}{ll}
\hline 
 Random & Text \\ 
\hline 
 Any & Text \\ 
 \hline
 Any & Text \\ 
\hline 
\end{tabular} 
\end{table}

\begin{table}
\centering
\caption{Table 2}
\begin{tabular}{ll}
\hline 
 Random & Text \\ 
\hline 
 Any & Text \\ 
 \hline
 Any & Text \\ 
\hline 
\end{tabular} 
\end{table}

\begin{table}
\centering
\caption{Table 3}
\begin{tabular}{ll}
\hline 
 Random & Text \\ 
\hline 
 Any & Text \\ 
 \hline
 Any & Text \\ 
\hline 
\end{tabular} 
\end{table}

\begin{table}
\centering
\caption{Table 4}
\begin{tabular}{ll}
\hline 
 Random & Text \\ 
\hline 
 Any & Text \\ 
 \hline
 Any & Text \\ 
\hline 
\end{tabular} 
\end{table}


\end{document}

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

関連情報