署名重叠的作者--siamltex

署名重叠的作者--siamltex

我正在尝试做同样的事情这个例子,并且在这个例子,除了现在siamltex 文档类。我尝试采用每个示例中提出的解决方案,但没有成功。

这是我想要的图像,但在文章类中,连同我用来获取它的代码。

MWE_article_class

\documentclass[final]{article}
\makeatletter
\newcommand{\specificthanks}[1]{\@fnsymbol{#1}}
\makeatother

\title{Lame title}
\author{
    Francy-pants\thanks{Germany}
    \and
    Meow-face\thanks{USA}\textsuperscript{, \specificthanks{1}}
    \and
    Sizzly-pants\thanks{another part of the USA}
    \textsuperscript{, \specificthanks{3}}
}

\begin{document}
    \maketitle
\end{document}

(我并不想要喵脸上那个带有逗号和匕首的奇怪神器,但目前这并不重要。)

当我将类更改为 siamltex 时发生的情况如下:

MWE_siamltex_class

如果您能找到独立于文档类别的解决方案,则可以获得加分。(我的多个附属机构将在未来几年里跟随我,我不希望为我申请的每本新杂志想出新的解决办法……)


更新 我有一个最有效的解决方案:

\documentclass[final]{siamltex}

\title{Lame title}
\author{
    Francy-pants\thanks{Germany}
    \and
    Meow-face\footnotemark[1]\textsuperscript{ ,}\thanks{USA}
    \and
    Sizzly-pants\footnotemark[2]\textsuperscript{ ,}\thanks{another part of the USA}
}

\begin{document}
    \maketitle
\end{document}

在此处输入图片描述

我对此解决方案的唯一抱怨是顺序不灵活。 例如,如果 Meow-face 是一个非常挑剔的人,并希望将他们的美国隶属关系列在德国隶属关系之前,那么我就不知道如何互换星号和匕首,因为和\footnotemark命令\thanks不能互换而不会出现错误。

相关内容