删除最后一位作者之前的和并正确指定标题和摘要的通讯作者

删除最后一位作者之前的和并正确指定标题和摘要的通讯作者

我使用以下内容,我想知道是否有可能摆脱作者 B 和作者 C 之间,并正确指定相应的作者。目前它变为 * a ,因为我正在使用thanks,有没有办法正确地将相应的作者指定为 a,*?

\documentclass[notitlepage]{article}
\usepackage{authblk}
\begin{document}

\author[a]{Author A\thanks{[email protected]}}
\author[a,b]{Author B}
\author[a]{Author C}
\affil[a]{University A}
\affil[b]{University B}

\date{}

\maketitle
\begin{abstract}
bunch of stuff
\end{abstract}
\end{document}

答案1

这应该有效:

\documentclass[notitlepage]{article}
\usepackage{authblk}

\renewcommand\Authands{, } % To remove "and"

\begin{document}

\title{}

\author[a]{Author A}
\renewcommand\Authsep{\thanks{[email protected]}, } % To show "a*"
\author[a,b]{Author B}
\author[a]{Author C}
\affil[a]{University A}
\affil[b]{University B}

\date{}

\maketitle
\begin{abstract}
bunch of stuff
\end{abstract}
\end{document}

答案2

在此处输入图片描述

\documentclass{article}
\usepackage[left=3.00cm, right=3.00cm, top=2.00cm, bottom=2.00cm]{geometry}
\usepackage{authblk}

\renewcommand*{\Authsep}{, }
\renewcommand*{\Authand}{, }%<---------------remove and
\renewcommand*{\Authands}{, }
\renewcommand*{\Affilfont}{\normalsize}
%\renewcommand*{\Authfont}{\bfseries}    % make author names boldface    
\setlength{\affilsep}{2em}   % set the space between author and affiliation

\title{Aa Article Title}
\author[a]{Author A\thanks{[email protected]}}
\author[a,b]{Author B}
\author[a]{Author C}
\affil[a]{University A}
\affil[b]{University B}
\date{}    

\begin{document}
\maketitle

This is an article.
\end{document}

相关内容