标题页上的重叠脚注

标题页上的重叠脚注

当我尝试在文档中使用footmisctitling包时,作者脚注标记存在问题。脚注标记在一个点上重叠。这是我的 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{,}

相关内容