作者部分姓名后的撇号

作者部分姓名后的撇号

我尝试在作者部分下写作者姓名,就在我​​更改此特定部分的通常格式后发生了这种情况。名字后面似乎有一个撇号?但不知道为什么。有没有什么方法可以删除它。

在此处输入图片描述

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{enumitem}


\begin{document}

\title{ Architecture of the century\\
}
\author{\IEEEauthorblockN{John Doe, \IEEEauthorrefmark,
Rachael Moore,\IEEEauthorrefmark, David S,\IEEEauthorrefmark,\\
Raphael Andrew,\IEEEauthorrefmark,
Jane Dooe,\IEEEauthorrefmark,
Will Jackson,\IEEEauthorrefmark, 
Tibitabo Sandru\IEEEauthorrefmark,
}
\IEEEauthorblockA{SRH Hochschule Heidelberg\\
Heidelberg, Germany\\
Email \IEEEauthorrefmark * \{john.doe, rachael.moore, david.s, raphael.andrew, tibitabo.sandru, will.jackson\}\\
@stud.123-sandiago.com,\\
\IEEEauthorrefmark *\{ Will.jackson,Tibitabo.Sandru\}@sandiago.com
}}

答案1

\IEEEauthorrefmark错误地使用了宏。它采用单个数字参数,将自动为隶属关系或电子邮件生成匹配字符。它必须紧跟在名称之后和逗号之前。

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{enumitem}


\begin{document}

\title{ Architecture of the century
}
\author{\IEEEauthorblockN{John Doe\IEEEauthorrefmark{1},
Rachael Moore\IEEEauthorrefmark{1}, David S\IEEEauthorrefmark{1},\\
Raphael Andrew\IEEEauthorrefmark{1},
Jane Dooe\IEEEauthorrefmark{1},
Will Jackson\IEEEauthorrefmark{2}, 
Tibitabo Sandru\IEEEauthorrefmark{2},
}
\IEEEauthorblockA{SRH Hochschule Heidelberg\\
Heidelberg, Germany\\
Email \IEEEauthorrefmark{1}\{john.doe, rachael.moore, david.s, raphael.andrew, tibitabo.sandru, will.jackson\}\\
@stud.123-sandiago.com,\\
\IEEEauthorrefmark{2}\{Will.jackson,Tibitabo.Sandru\}@sandiago.com
}}
\maketitle
\end{document}

代码输出

相关内容