有没有方法可以输入表格的特定页面?

有没有方法可以输入表格的特定页面?

我的论文结构如下:

\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 页的顶部。(当然,参考数字会变形。)

相关内容