标题中的脚注显示为符号(需要阿拉伯数字)

标题中的脚注显示为符号(需要阿拉伯数字)
  • 我正在使用 Overleaf 准备 LaTeX 模板。为此,我必须在标题中使用脚注,但当我在标题中使用脚注时,它们会显示为符号而不是数字。
  • 当我在正文中使用脚注时,它们会显示为数字并从 1 开始。显然,标题和正文中使用的脚注似乎彼此不同步。
  • 例如,下面的代码是一个简单的示例,用于演示我所面临的问题,
\documentclass{article}
\usepackage[paperheight=6in,
   paperwidth=5in,
   top=10mm,
   bottom=20mm,
   left=10mm,
   right=10mm]{geometry}

   
\begin{document}
\title{This is my title\footnote{Just a note.}}   
\maketitle
Hello\footnote{World}
\end{document}

我看到的输出是, 脚注未同步

在这里,我希望在标题中将脚注标记为 1,在正文中标记为 2,依此类推。我尝试了网上找到的各种方法,但似乎都不起作用。非常感谢您的支持。

答案1

在我看来,你的问题和如何在标题页上添加致谢作为编号脚注?. 链接的重复优惠好的答案,我只在这里展示两者之一答案(来自用户egreg)。

\documentclass{article}

% Copied from https://tex.stackexchange.com/questions/62447
% --- ---
  \usepackage{etoolbox}
  \makeatletter
    \patchcmd{\maketitle}{\@fnsymbol}{\@arabic}{}{}
    \patchcmd{\maketitle}{\setcounter{footnote}{0}}{}{}{}
  \makeatother
% --- ---

\begin{document}
\title{This is my title\footnote{Just a note.}}   
\maketitle
Hello\footnote{World}
\end{document}

在此处输入图片描述

相关内容