如何添加平等贡献(共同第一作者)?

如何添加平等贡献(共同第一作者)?

如何添加平等贡献(共同第一作者)?

这里第一作者和第二作者是共同第一作者。如何在 latex 中反映这一点?

\RequirePackage{fix-cm}
%
\documentclass{svjour3}                     % onecolumn (standard format)
\begin{document}

\title{Insert your title here%\thanks{Grants or other notes
%about the article that should go on the front page should be
%placed here. General acknowledgments should be placed at the end of the article.}
}
\subtitle{Do you have a subtitle?\\ If so, write it here}

%\titlerunning{Short form of title}        % if too long for running head

\author{First Author         \and
        Second Author \and
        Third Author
}

%\authorrunning{Short form of author list} % if too long for running head

\institute{F. Author \at
              first address \\
              \email{[email protected]}
           \and
           S. Author \at
              \email{[email protected]}
           \and
           T. Author \at
              \email{[email protected]}
}

\date{Received: date / Accepted: date}
% The correct dates will be entered by the editor


\maketitle

\begin{abstract}
Insert your abstract here. Include keywords, PACS and mathematical
subject classification numbers as needed.
\keywords{First keyword \and Second keyword \and More}
% \PACS{PACS code1 \and PACS code2 \and more}
% \subclass{MSC code1 \and MSC code2 \and more}
\end{abstract}

\section{Introduction}
\label{intro}
Your text comes here. Separate text sections with
\section{Section title}
\label{sec:1}

\subsection{Subsection title}
\label{sec:2}
as required. Don't forget to give each section
and subsection a unique label (see Sect.~\ref{sec:1}).



\end{document}
% end of file template.tex

我必须按照以下格式展示前两位作者的同等贡献:

在此处输入图片描述

我可以执行以下操作:

\author{Author 1$^*$}
\author{Author 2$^*$}
\author{Author 3}

进而:

\maketitle
\def\thefootnote{*}\footnotetext{These authors contributed equally to this work}\def\thefootnote{\arabic{footnote}}

格式看起来不像预期的屏幕截图。

答案1

标注同等贡献的格式因期刊和 LaTeX 文档类别而异。例如,在 中autart,与 类似svjour3,建议thanksref在作者姓名后添加一个元素:

\author{The Amplitwist\thanksref{equalAuth}},
\author{George P. Burdell\thanksref{equalAuth}}
\thanks[equalAuth]{Authors George P. Burdell and The Amplitwist contributed equally to this work.}

查看对有共同隶属关系的作者使用 \author 和 \thanks了解更多信息。

相关内容