在文章的作者字段中添加“代表......”行

在文章的作者字段中添加“代表......”行

我正在使用标准类编写会议论文集article

为了排版作者及其所属机构,我使用验证码包装,我真的很满意。

然而,撰写论文的人只是一个更大团队的一部分,因此,在作者姓名后面,我想显示一行代表 NameOfTheTeam(然后才是从属关系)。

举个例子:

替代文本

我该如何实现?我应该修改\maketitle宏吗?还是修改 authblk 包中的某些内容?

答案1

我宁愿对 authblk您正在使用的软件包进行如下修补:

\documentclass[11pt]{article} 
\makeatletter
\usepackage{authblk}

\def\@author{}
\renewcommand\@author{\ifx\AB@affillist\AB@empty\AB@author\else
      \ifnum\value{affil}>\value{Maxaffil}\def\rlap##1{##1}%
    \AB@authlist \\*[0.3cm]On behalf of a great Team!\\[\affilsep]\AB@affillist
    \else  \AB@authors\fi\fi}
\makeatother

\title{Brief Article}
\author[1]{author1}
\author[1]{author2}
\affil[1]{Institute of Nowhere}
\author[2]{author3}
\affil[2]{Institute of Somewhere}


\begin{document}
\maketitle


\end{document}

调整间距等以适应!

答案2

这是实现此目的的一种方法。

\documentclass{article}
\usepackage[margin=0pt]{geometry}

\newcommand*\andnewline{%
        \end{tabular}
        \\[\bigskipamount]
        \begin{tabular}[t]{c}
}
\title{Paper Title}
\author{Author \#1\textsuperscript{2,5} \and
        Author \#2\textsuperscript{2,4} \and
        Author \#3\textsuperscript{2}   \and
        Author \#4\textsuperscript{2}   \and
        Author \#5\textsuperscript{1,3,5}\andnewline
  on behalf of the Biggest Team Ever\andnewline
        \textsuperscript{1}Affiliation \#1; \and
        \textsuperscript{2}Affiliation \#2; \and
        \textsuperscript{3}Affiliation \#3; \and
        \textsuperscript{4}Affiliation \#4; \and
        \textsuperscript{5}Affiliation \#5}
\begin{document}
\maketitle
\end{document}

geometry包只是为了将所有作者放在一行上。需要说明的是,这不是必需的,并且不应使用 0 pt 边距。我使用它来区分我的答案和 Herbert 的答案,后者依赖于让一位作者换行到下一行。

答案3

你是指这样的吗?

\documentclass{article}

\title{Paper Title}
\author{Author \#1\textsuperscript{2,5} \and
        Author \#2\textsuperscript{2,4} \and
        Author \#3\textsuperscript{2}   \and
        Author \#4\textsuperscript{2}   \and
        Author \#5\textsuperscript{1,3,5}\\[\bigskipamount]
  on behalf of the Biggest Team Ever\\[1cm]~}
\date{\textsuperscript{1}Affiliation \#1; 
      \textsuperscript{2}Affiliation \#2;
      \textsuperscript{3}Affiliation \#3;
      \textsuperscript{4}Affiliation \#4;
      \textsuperscript{5}Affiliation \#5}
\begin{document}
\maketitle

\end{document}

答案4

涉及titling打包并重新定义\maketitlehookb(或任何)工作?

相关内容