在文章类别中为作者姓名添加所属关系

在文章类别中为作者姓名添加所属关系

我正在使用\documentclass{article}撰写一篇文章。如何像下图一样在作者姓名中添加所属机构?

在此处输入图片描述

而且,此文档类别的名称下有日期。我可以省略它吗?

答案1

也许authblk最好这样做:

\documentclass{article}
\usepackage{authblk}
\title{This is some thing}
\author[1]{Don Joe}
\author[2]{Smith K.}
\author[1]{Wanderer}
\author[1]{Static}
\affil[1]{TeX.SX}
\affil[2]{Both on a bus}
\date{}                     %% if you don't need date to appear
\setcounter{Maxaffil}{0}
\renewcommand\Affilfont{\itshape\small}
\begin{document}
  \maketitle
\end{document}

这样,你就可以混合隶属关系。

答案2

当我需要使用时\maketitle,我使用的一个技巧是滥用\date{}

\documentclass{article}
\title{My Title}
\author{Author One$^1$ \and Author Two$^2$}
\date{%
    $^1$Organization 1\\%
    $^2$Organization 2\\[2ex]%
    \today
}

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

输出截图

答案3

我总是用我从中学到的技巧安东尼·莱肯斯,用于显示每个作者的多个隶属关系。省略日期与使用 一样简单\date{}

\documentclass{article}
\usepackage{hyperref}
\newcommand{\footremember}[2]{%
    \footnote{#2}
    \newcounter{#1}
    \setcounter{#1}{\value{footnote}}%
}
\newcommand{\footrecall}[1]{%
    \footnotemark[\value{#1}]%
} 
\title{How to bowl properly}
\author{%
  The Dude\footremember{alley}{Holly Star Lanes Bowling Alley}%
  \and Walter Sobchak\footremember{trailer}{Probably in a trailer park}%
  \and Jesus Quintana\footrecall{alley} \footnote{Mexico?}%
  \and Uli Kunkel\footrecall{trailer} \footnote{Germany?}%
  }
\date{}
\begin{document}
\maketitle
The whole example is taken from \href{http://anthony.liekens.net/index.php/LaTeX/MultipleFootnoteReferences}{Anthony Liekens}\ldots
\end{document}

截屏

相关内容