IEEE 双栏会议论文中的作者姓名问题

IEEE 双栏会议论文中的作者姓名问题

我在 IEEE 双栏会议模板中输入作者信息时遇到问题,可以在此处找到https://www.ieee.org/conferences/publishing/templates.html 。我想在作者姓名中提到两点,第一,“同等贡献”和第二,“通讯作者”。我已经使用了\感谢{同等贡献},它在页面底部显示均匀分布。但是,作者姓名上没有显示任何符号,例如星号(*)。然后,我尝试了\footnote{平等贡献},什么事都没有发生。然后我用\footnote[*]{平等贡献},它在作者姓名旁边显示一个星号(带有一些错误和警告),但是,它没有在页面底部显示“平等贡献”文本。我需要在第一位作者后面显示一些符号(例如 *)并在页面底部或姓名附近显示“平等贡献”文本。谢谢。由于我无法上传 cls 文件,因此下面给出了示例代码。

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{float}
\usepackage{hyperref}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}

\title{Paper title here.}

\author{\IEEEauthorblockN{John Albert\thanks{equal contribution}, Author two, Author three, Author Four}
\IEEEauthorblockA{\textit{Dept. of CS} \\
 \textit{YYY University}\\
 City, Country \\
 [email protected], [email protected], [email protected] \\ [email protected] }
}

答案1

由于整个作者区块都是以表格形式实现的,因此无论如何您都需要\footnotemark\footnotetext。但由于\thanks会关闭正常的脚注,因此您必须改用\IEEEauthorrefmark\IEEEcompsocitemizethanks\IEEEcompsocthanksitem

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{float}
\usepackage{hyperref}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

\title{Paper title here.}

\author{\IEEEauthorblockN{John Albert\IEEEauthorrefmark{1}}
\IEEEcompsocitemizethanks{\IEEEcompsocthanksitem\IEEEauthorrefmark{1}equal contribution}
\IEEEauthorblockA{\textit{Dept. of CS} \\
 \textit{YYY University}\\
 City, Country \\
 [email protected]}
\and
\IEEEauthorblockN{author2} \\
\IEEEauthorblockA{[email protected]}
\and
\IEEEauthorblockN{author3} \\
\IEEEauthorblockA{[email protected]}
\and
\IEEEauthorblockN{autor4} \\
\IEEEauthorblockA{[email protected]}
}

\begin{document}
\maketitle

\end{document}

相关内容