脚注中的字体大小不同

脚注中的字体大小不同

我的摘要模板有问题。出于某些原因,我要执行自己的命令,而不是仅使用amsart类。

如您所见,当我使用\underline{}来识别说话者时,使用的字体\footnote{}(用于通过机构)是不同的。比较数字 1 和 2。

\underline

在此处输入图片描述

没有\underline

在此处输入图片描述

这是最小代码

\documentclass{amsart}

\newcommand{\thetitle}{}
\newcommand{\Title}[1]{%
 \renewcommand{\thetitle}{#1}%
}

\newcommand{\MakeTitle}{%
 \thispagestyle{plain}%
 \begin{center}%
 {\textsc{\Large\thetitle}}\\[2ex]%
 {\large\theauthors}%
 \end{center}%
}

\newcommand{\theauthors}{}
\newcommand{\Authors}[2][]{%
 \renewcommand{\theauthors}{#2}%
}

\newcommand{\Institute}[1]{\footnote{#1}}
\newcommand{\Email}[1]{\texttt{#1}}

\begin{document}

\Title{Insert title here}

\Authors%
[Jakob Bernoulli \and Leonhard Euler]%
{Jakob Bernoulli%
\Institute{University One. \Email{[email protected]}}%
\and%
\underline{Leonhard Euler}%
\Institute{University Two. \Email{[email protected]}}%
}

\MakeTitle

\end{document}

答案1

下划线?那是什么?请不要这样做。

问题在于的内容\Authors被多次修改并且\underline使用了数学模式,所以导致上标的字体设置错误。

如果您加载以下内容,那么您会更幸运soul

\usepackage{soul}

并使用

\ul{Leonhard Euler}

相关内容