如何在 IEEE 交易乳胶文件中插入从业人员须知部分

如何在 IEEE 交易乳胶文件中插入从业人员须知部分

我们使用著名的 IEEETran.cls 类文件

以下是我尝试创建的摘要,后面跟着另一个名为“从业者须知”的部分,该部分必须具有与摘要部分完全相同的风格。

\documentclass[journal]{IEEEtran}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}

\title{Bare Demo of IEEEtran.cls for Journals}

\author{Michael~Shell,~\IEEEmembership{Member,~IEEE,}
        John~Doe,~\IEEEmembership{Fellow,~OSA,}
        and~Jane~Doe,~\IEEEmembership{Life~Fellow,~IEEE}% <-this % stops a space
\thanks{M. Shell is with the Department
of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta,
GA, 30332 USA e-mail: (see http://www.michaelshell.org/contact.html).}% <-this % stops a space
\thanks{J. Doe and J. Doe are with Anonymous University.}% <-this % stops a space
\thanks{Manuscript received April 19, 2005; revised January 11, 2007.}}

\maketitle

\begin{abstract}
\blindtext
\end{abstract}

Note to Practitioners:
\begin{abstract}
\blindtext
\end{abstract}
\end{document}

但是,我希望结果看起来像这样:

在此处输入图片描述

有人遇到过同样的困难吗?任何建议都会有帮助。

答案1

您可以重新定义\abstractname以更改单词的名称抽象的, 例如:

\documentclass[journal]{IEEEtran}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}

\begin{abstract}
\blindtext
\end{abstract}

\def\abstractname{Note to Practitioners}
\begin{abstract}
\blindtext
\end{abstract}
\end{document}

在此处输入图片描述

相关内容