我的論文結構如下:
\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}
...
為了獲得良好的參考數字排序,我必須將表格放在相關工作部分的末尾。因此,該表出現在第四頁的頂部。但是,我希望該表格出現在第二頁的頂部。有什麼辦法可以把它放在第二頁的頂部嗎?實際上,如果我將有關表格的程式碼放在相關工作部分的前面,則表格會出現在第三頁的頂部。 (當然,參考數字會變形。)