当我尝试在文档中使用footmisc
和titling
包时,作者脚注标记存在问题。脚注标记在一个点上重叠。这是我的 MWE。
\documentclass{article}
\usepackage{titling}
\usepackage[para]{footmisc}
\thanksmarkseries{arabic}
\title{Title}
\author{Author \thanks{A}\thanks{B} \and Author\thanks{C}}
\begin{document}
\maketitle
Hello everyone
\end{document}
结果如下:
参见脚注标记 1 和 2。我该如何修复它?
答案1
最简单的方法是插入一个假的脚注大小1
:
\documentclass{article}
\usepackage{titling}
\usepackage[para]{footmisc}
\thanksmarkseries{arabic}
\title{Title}
\author{Author\thanks{A}\protect\phantom{\footnotesize 1}\textsuperscript{,}\thanks{B}
\and
Author\thanks{C}}
\begin{document}
\maketitle
Hello everyone
\end{document}
你可以决定是否保持分离\textsuperscript{,}
。