IEEEtran 表格格式不起作用

IEEEtran 表格格式不起作用

我对此完全陌生,所以任何见解都将不胜感激。我想使用 IEEEtran 创建文档,尽管尝试了多种操作系统和编辑器,但我似乎无法正确格式化表格。对于以下代码

\documentclass[10pt,journal,compsoc]{IEEEtran}

\begin{document}

\title{Some title}

\maketitle

\IEEEPARstart{S}{ome} text

\begin{table}[!t]
\renewcommand{\arraystretch}{1.3}
\caption{A Simple Example Table}
\label{table_example}
\centering
\begin{tabular}{c||c}
\hline
\bfseries First & \bfseries Next\\
\hline\hline
1.0 & 2.0\\
\hline
\end{tabular}
\end{table}

\end{document}  

我明白了:

在此处输入图片描述 我知道表格标题应该包含罗马数字,标题应该采用小写字母。有人知道我做错了什么吗?谢谢!

答案1

只是不要使用compsoc选项。

\documentclass[10pt,journal]{IEEEtran}

\begin{document}

\title{Some title}

\maketitle

\IEEEPARstart{S}{ome} text

\begin{table}[!t]
\renewcommand{\arraystretch}{1.3}
\caption{A Simple Example Table}
\label{table_example}
\centering
\begin{tabular}{c||c}
\hline
\bfseries First & \bfseries Next\\
\hline\hline
1.0 & 2.0\\
\hline
\end{tabular}
\end{table}

\end{document} 

相关内容