我已执行的Latex代码,插入电子邮件作为脚注,我想在作者姓名下插入或与附属关系在同一行。我也插入了所需格式的图像。
\documentclass[a4,12pt,twosided,reqno]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{authblk}
\title{More than one Author with different Affiliations}
\author[1]{Sadique Ahmad\thanks{ahmad01.shah@gmail.com}}
\author[1]{Awais Adnan\thanks{awaisadnan@gmail.com}}
\affil[1]{Department of Computer Science, IM|Sciences Peshawar}
\affil[2]{Department of Computer Science, IM|Sciences Peshawar}
\renewcommand\Authands{ and }
\begin{document}
\maketitle
\end{document}
答案 0 :(得分:4)
很容易劫持UIApplicationDelegate
宏,或直接设置\date
:
\@date
由于我已将\documentclass{article}
\title{More than one Author with different Affiliations}
\makeatletter
\renewcommand\@date{{%
\vspace{-\baselineskip}%
\large\centering
\begin{tabular}{@{}c@{}}
First Author\textsuperscript{1} \\
\normalsize first.author@email.com
\end{tabular}%
\quad and\quad
\begin{tabular}{@{}c@{}}
Second Author\textsuperscript{2} \\
\normalsize second.author@email.com
\end{tabular}
\bigskip
\textsuperscript{1}Some Department, Some University\par
\textsuperscript{2}Some Department, Some University
\bigskip
\today
}}
\makeatother
\begin{document}
\maketitle
\end{document}
设置为包含段落(包含空行和/或显式\@date
),因此必须使用\par
定义; \long
默认执行此操作。
使用\renewcommand
实现与联盟的假联想。