我正在尝试使用 tikzposter 类创建海报。有没有办法在作者所属机构下方显示作者的电子邮件地址?
标签\title,\author, \institute
在 tikzposter 中已经存在,但没有类似 的\email
。您可以按照手册以以下方式自定义标题:
\settitle{
\centering
\vbox{
\vspace*{2em}
\centering
{\bfseries\sffamily\fontsize{80pt}{96pt}\selectfont\@title\par}
\vspace*{1em}{\huge\sffamily \@author \par}
\vspace*{1em}{\Large\sffamily \@institute\par}
%\@titlegraphic \\
%[\TP@titlegraphictotitledistance]
}}
因此我想所需要做的就是定义类似的东西\@email
。
答案1
最简单的解决方法是将电子邮件添加为 的一部分\institute
,因为您希望它立即位于隶属关系下方。
\documentclass{tikzposter}
\title{Something or other}
\author{A Bloke}
\institute{Department of Complete Nonsense\\[0.5cm] \url{[email protected]}}
\usepackage{url}
\begin{document}
\maketitle
\end{document}