我正在使用以下代码:
\documentclass[10pt, conference, letterpaper]{IEEEtran}
\begin{document}
\begin{table}
\begin{tabular}{|c|c|c|c|}
\hline
Algorithm & Space & Query / Update time & Some other metric \tabularnewline
\hline
\hline
A & 1 & 1 & 11 \tabularnewline
\hline
\end{tabular}
\caption{Why like this?}
\end{table}
\end{document}
并得到以下结果:
请注意“表 I”的顶部与上面的相交\hline
。
我怎样才能使“TABLE I”向下一点,这样它就不会与表格相交?
答案1
使用
\makeatletter
\def\@IEEEtablestring{figure}
\makeatother
这样,您对表格和图形使用的空间定义就相同了。