IEEETran 类中的表格标题未显示在顶部

IEEETran 类中的表格标题未显示在顶部

我正在使用 IEEE Transactions 类编写日志。我使用默认设置,但表格标题仍然显示在表格底部。

我搜索了一下,大多数人遇到的问题是 Table 没有大写。在我的例子中,TABLE 是大写的,但出现在表格底部。

下面是我的设置的屏幕截图:

在此处输入图片描述

我还遵循了其他问题的解决方案并确保语言包设置为无。

答案1

IEEETran 在这里毫无意义。重要的是 的位置\caption。请比较:

\documentclass{ieeetran}

\begin{document}

\begin{table}
\caption{Table title.}
\begin{center}
\begin{tabular}{|c|c|c|l|}\hline

$4$ & $3$ & $\neq 0$ & Surface 1 \\
$4$ & $3$ & $<0$ & Surface 1 \\
$4$ & $3$ & $>0$ & Surface 1 \\
$4$ & $2$ & $<0$ & Surface 1 \\
$4$ & $2$ & $>0$ & Surface 1 \\
$3$ & $3$ & & Surface 1 \\
$3$ & $2$ & & Surface 1 \\
$3$ & $2$ & & Surface 1 \\
$3$ & $1$ & & Surface 1 \\
$2$ & $1$ & & Surface 1 \\
$2$ & $1$ & & Surface 1 \\
$1$ & $1$ & & Surface 1 \\
\hline
\end{tabular}
\end{center}
\end{table}

\begin{table}
%\caption{Table title.}
\begin{center}
\begin{tabular}{|c|c|c|l|}\hline

$4$ & $3$ & $\neq 0$ & Surface 1 \\
$4$ & $3$ & $<0$ & Surface 1 \\
$4$ & $3$ & $>0$ & Surface 1 \\
$4$ & $2$ & $<0$ & Surface 1 \\
$4$ & $2$ & $>0$ & Surface 1 \\
$3$ & $3$ & & Surface 1 \\
$3$ & $2$ & & Surface 1 \\
$3$ & $2$ & & Surface 1 \\
$3$ & $1$ & & Surface 1 \\
$2$ & $1$ & & Surface 1 \\
$2$ & $1$ & & Surface 1 \\
$1$ & $1$ & & Surface 1 \\
\hline
\end{tabular}
\caption{Table title.}
\end{center}
\end{table}

\vfill
\end{document}

在此处输入图片描述

相关内容