我正在使用\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
答案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}