我想添加通讯作者\谢谢,但是作者左上角的星星消失了,如何添加星星?
以下是我的乳胶代码:
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{verbatim}
\usepackage{xurl}
\usepackage{subfigure}
\usepackage{booktabs}
\begin{document}
\title{A Good Name is the Half of a Good article}
\author[1]{Author B}
\author[2]{Author C \thanks{* is the corresponding author.}}
\affil[1]{Department of Computer Science, \LaTeX\ University}
\affil[2]{Department of Mechanical Engineering, \LaTeX\ University}
\renewcommand*{\Affilfont}{\small\it}
\renewcommand\Authands{ and }
\maketitle
\begin{abstract}
Hello, Hello
\end{abstract}
\end{document}
答案1
看看 MWE 是否能解决您的问题。
由于您正在使用conference
类模式IEEEtran
,因此我使用了\IEEEauthorblockN{}
和\IEEEauthorblockA{}
命令以便更轻松地正确格式化作者姓名和所属机构。
为了将作者所属符号更改为数字,我使用了以下代码片段:回答。
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{lipsum}
% Changes author affiliation symbols into numbers
\DeclareRobustCommand*{\IEEEauthorrefmarkNum}[1]{%
\raisebox{0pt}[0pt][0pt]{\textsuperscript{\footnotesize #1}}%
}
\begin{document}
\title{A Good Name is the Half of a Good article}
\author{
\IEEEauthorblockN{%
Author A\IEEEauthorrefmarkNum{1}, Author B\IEEEauthorrefmarkNum{1}, Author C\IEEEauthorrefmarkNum{2}\IEEEauthorrefmark{1}\thanks{\IEEEauthorrefmark{1}is the corresponding author.}
}
\IEEEauthorblockA{%
\IEEEauthorrefmark{2}Department of Computer Science, \LaTeX\ University\\
\IEEEauthorrefmark{3}Department of Mechanical Engineering, \LaTeX\ University
}
} % end author
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\begin{IEEEkeywords}
Author footnote
\end{IEEEkeywords}
\section{Introduction}
\lipsum[1-7]
\end{document}
第一页: