我正在使用authblk
带有以下代码的包:
\documentclass{sig-alternate}
\usepackage[english]{babel}
\usepackage{authblk}
\begin{document}
\title{The Title}
\author[1]{Alice}
\author[2]{Bob\thanks{Corresponding author}} % a footnote indicating Bob is the corresponding author
\affil[1]{University A}
\affil[2]{University B}
\renewcommand\Authfont{\large}
\renewcommand\Affilfont{\small}
\maketitle
\begin{abstract}
\end{abstract}
\end{document}
输出如下:
请注意,所属上标2
和脚注上标*
重叠,难以辨认。
有人可以建议我该怎么做才能解决这个问题,更具体地说,得到低于预期的输出?
答案1
使用以下命令消除thanks
星号,并将其保留在框中(即更改\author[2]{Bob...}
为\author[2*]{Bob...}
)。
\usepackage{etoolbox}
\makeatletter
\patchcmd{\maketitle}
{\def\@makefnmark}
{\def\@makefnmark{}\def\useless@macro}
{}{}
\makeatother