我正在使用会议IEEEtran
文档类,当我输入摘要时,它不是居中,而是在左栏。说明说要使用命令\IEEEtitleabstractindextext
并将其用作章节,但当我这样做时,摘要就消失了。
我该怎么办?
您能给我一个如何使用该命令的例子吗?
答案1
documentclassIEEEtran
遵循 IEEE 样式定义非常非常非常密切...幸运的是,所有内容都在IEEEtran-HOWTO.pdf
文档中进行了很好的记录,该文档与样式定义和一些示例文档一起提供。请读这个文档!它包含有关如何创建符合 IEEE 标准的论文的规则和许多有用的提示。
如第五节(摘要和索引词)所述,
IEEE 计算机学会和 IEEE 磁学学报的格式存在困难,
compsoc
期刊transmag
(但不是compsoc conference
) 论文将摘要和索引词部分以*单列格式放在作者姓名正下方,但其他 IEEE 格式将它们放在正文第一列、第一部分之前。
这就是为什么该命令仅在和模式\IEEEtitleabstractindextext
下启用,但在+模式下禁用。compsoc
transmag
compsoc
conference
文档对如何使用该命令也非常具体:必须放置以下代码前命令。此外,他们建议直接\maketitle
使用命令\IEEEdisplaynontitleabstractindextext
后 \maketitle
compsoc
- 此组合始终按照当前设置的要求排版摘要:对于和采用单列模式transmag
,对于大多数其他 采用双列模式。
% abstract and (if needed) index terms
\IEEEtitleabstractindextext{%
\begin{abstract}
We propose \lipsum[1]
\end{abstract}
}
% make the title area
\maketitle
\IEEEdisplaynontitleabstractindextext
在这个答案的底部,我提供了一个示例文档,以显示当您使用上面推荐的命令时,documentclass 设置对输出的影响。
第一张图片显示了模式的输出compsoc
,不是 conference
模式:摘要设置为单列模式。第二幅图显示了启用conference
和compsoc
模式的输出:摘要为双列模式。
\documentclass[conference,compsoc]{IEEEtran}
\usepackage{lipsum}
\begin{document}
\title{Demo of single-column abstracts}
\author{Homer J. Simpson}
\IEEEtitleabstractindextext{%
\begin{abstract}
We propose \lipsum[1]
\end{abstract}
\begin{IEEEkeywords}
Broad band networks, quality of service, WDM.
\end{IEEEkeywords}}
% make the title area
\maketitle
\IEEEdisplaynontitleabstractindextext
\section{Introduction}
\lipsum[2-7]
% that's all folks
\end{document}