![特定のページにテーブルを入力する方法はありますか?](https://rvso.com/image/370307/%E7%89%B9%E5%AE%9A%E3%81%AE%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%AB%E3%83%86%E3%83%BC%E3%83%96%E3%83%AB%E3%82%92%E5%85%A5%E5%8A%9B%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95%E3%81%AF%E3%81%82%E3%82%8A%E3%81%BE%E3%81%99%E3%81%8B%EF%BC%9F.png)
私の論文は次のように構成されています。
\documentclass[journal]{IEEEtran}
\usepackage{...}
\title{...}
\author{...}
\maketitle
\begin{abstract} ... \end{abstract}
\vspace{\baselineskip}
\begin{IEEEkeywords} ... \end{IEEEkeywords}
その後
\section{Introduction}
...
\section{Related work}
...
\begin{table*}[!t]
\renewcommand{\arraystretch}{1.3}
\caption{Comparison with related works}
\label{table:relwor}
\centering
\begin{tabular}{cccccc}
\hline
\bfseries Reference & \bfseries ... & \bfseries ... & \bfseries ... & \bfseries ... & \bfseries ...\\
\hline\hline
\cite{...} & ... & ... & ... & ... & ...\\
\cite{...} & ... & ... & ... & ... & ...\\
...
...
\cite{...} & ... & ... & ... & ... & ...\\
Our work & ... & ... & ... & ... & ...\\
\end{tabular}
\end{table*}
\section{System model}
...
参照番号の並び替えをうまく行うために、表を関連作業セクションの最後に置く必要がありました。そのため、表は 4 ページ目の先頭に表示されます。ただし、表は 2 ページ目の先頭に表示したいのですが、2 ページ目の先頭に配置する方法はありますか? 実際、表に関するコードを関連作業セクションの前に置くと、表は 3 ページ目の先頭に表示されます。(参照番号は確かに形が崩れます)