国際会議(SIAM)のテンプレートで,2カラム指定の文章と1カラムのテーブルを1ページに収める方法をご教授いただけないでしょうか?
空白のスペースは十分にあると思うのですが,どうしてもテーブルが2ページ目に来てしまいます.
国際会議で指定しているテンプレートは以下になります.
https://www.siam.org/Portals/0/Conferences/Proceedings/soda2e_031819.zip
以下texのソースになります.
\documentclass[twoside,leqno,twocolumn]{article}
\usepackage[letterpaper]{geometry}
\usepackage{ltexpprt}
\begin{document}
\title{Table test}
\author{Author1}
\date{}
\maketitle
\fancyfoot[R]{\scriptsize{Copyright \textcopyright\ 20XX by SIAM\\
Unauthorized reproduction of this article is prohibited}}
\begin{abstract}
This is an abstract.
\end{abstract}
\section{Test1.}
Table~\ref{tbl:test} is a test table.
\begin{table*}[htbp]
\centering
\caption{Test table.}
\label{tbl:test}
\begin{tabular}{ c|c|c|c|c } \hline
& t1 & t2 & t3 & t4 \\ \hline
a & b & c & d & e \\ \hline
\end{tabular}
\end{table*}
\end{document}
テンプレートとtexファイルと生成されたpdfを添付ファイルにも含めました.
以上,よろしくお願いいたします.