tikzposter 中的作者及其电子邮件以及名称中的所属索引

tikzposter 中的作者及其电子邮件以及名称中的所属索引

我正在使用 tikzposter 作为基础自定义主题。我这里的作者都有一些共同的从属关系,电子邮件与从属关系看起来不太好,因为会混淆从属关系标记和电子邮件之间的关系(一封电子邮件可能与两个作者有关,而这并不是我想要的)。如果我将电子邮件放在姓名后面并加换行符,从属关系符号将出现在电子邮件中,而不是姓名中。我当前的 MWE 如下。我如何才能在作者中保留电子邮件,但在姓名后面保留标记从属关系?

\documentclass[a0paper, landscape]{tikzposter}

\usepackage{authblk}

\makeatletter
\renewcommand\TP@maketitle{%
    \hspace{3em}
    \begin{minipage}{0.7\linewidth}
         %\centering
         \color{titlefgcolor}
         {\bfseries \Huge \sc \@title \par}
         \vspace*{1em}
         {\LARGE \@author \par}
         \vspace*{1em}
         {\LARGE \@institute}
    \end{minipage}%
    \hfill
}

\makeatother

\makeatletter
\def\maketitle{\AB@maketitle}
\renewcommand\AB@affilsepx{\quad\protect\Affilfont} % put affiliations 
into one line
\makeatother
\renewcommand\Affilfont{\Large}

\usetheme{Wave}


\title{ \begin{minipage}{\textwidth}
Super long long long long long long long long long long long long long 
long long title
\end{minipage}}

\author[1]{Homer Simpson \\ [email protected]}
\author[1,2]{Marge Simpson}
\author[3]{Lisa Simpson}
\author[4]{Bart Simpson}

\affil[1]{\normalsize University of North}
\affil[2]{\normalsize Scientific Center of the north}
\affil[3]{\normalsize The University of Love}
\affil[4]{\normalsize University of Life}



\begin{document}
\maketitle
\block{hi}{example}
\end{document}

相关内容