第一页的贡献均等

第一页的贡献均等

我有以下代码:

\documentclass[11pt]{article}

\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{authblk}

\title{Thermodynamic of black holes}

\author{Albert Einstein$^1$}
\author{Roger Penrose$^2$}
\author{Rabindranath Tagore$^3$}


\affil{$^1$Princeton, USA
\\
$^2$Oxford, UK
\\
$^3$Delhi, India
}
\affil{Correspondence: [email protected]}

\begin{document}

看起来像

在此处输入图片描述

我怎样才能将前两位作者的句子“这些作者对这项工作做出了同等贡献。”放在通讯作者的电子邮件上方?或者,放在其他更常见的地方?(例如,在通讯作者的电子邮件之后?)

答案1

使用authblk包、命令\affil\author有一个可选参数。您不必使用$^1$

\documentclass[11pt]{article}

\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{authblk}

\title{Thermodynamic of black holes}

\author[1]{Albert Einstein}
\author[2]{Roger Penrose}
\author[3]{Rabindranath Tagore}

\affil[1]{Princeton, USA}
\affil[2]{Oxford, UK}
\affil[3]{Delhi, India}

\affil[1,2]{These authors contributed equally to this work.}

\affil[3]{Correspondence: [email protected]}

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

答案2

在此处输入图片描述

\documentclass[11pt]{article}

\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{authblk}

\makeatletter
\newcommand\@contributions{These authors contributed equally to this work.\textsuperscript{1}\textsuperscript{,2}}

\renewcommand\@maketitle{%
  \newpage
  \null
  \vskip 2em%
  \begin{center}%
  \let \footnote \thanks
    {\LARGE \@title \par}%
    \vskip 1.5em%
    {\large
      \lineskip .5em%
      \begin{tabular}[t]{c}%
        \@author
      \end{tabular}\par}%
    \vskip 0.5em%
    \@contributions% % <----
    \vskip 1.5em
    {\large \@date}%
  \end{center}%
  \par
  \vskip 1.5em}
\makeatother

\title{Thermodynamic of black holes}

\author{Albert Einstein\textsuperscript{1}}
\author{Roger Penrose\textsuperscript{2}}
\author{Rabindranath Tagore\textsuperscript{3}}


\affil{\textsuperscript{1}Princeton, USA
\\
\textsuperscript{2}Oxford, UK
\\
\textsuperscript{3}Delhi, India
}
\affil{Correspondence: [email protected]}

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

这个答案重新定义了\@maketitle使用帮助Werner 对“\thanks 在 LaTeX 文章类中如何发挥作用?”的回答。我没有注意到你手动将添加affiliations到作者中,从而简化了它。您可以通过修改值来$^1$更改条目之间的距离。\maketitle\vskip

另外,我将您的上标概念更改为$^1$\textsuperscript{1}喜欢的(我不确定这是否必不可少,但我认为这比在文本中使用数学模式更好?)。\@contributions根据需要修改中的值以更改为其他作者,希望这对您有所帮助。

相关内容