tikzposter / authblk - 所属のインデックスフォントサイズを変更する方法

tikzposter / authblk - 所属のインデックスフォントサイズを変更する方法

私のMWEから

ポスターの作成には tikzposter を使用し、所属には authblk を使用しました。問題は、所属の最初のインデックス (MWE のアルファ研究部門のインデックス 1) が、所属の残りのフォントよりもかなり大きいことです。これを標準化したり、所属のフォント サイズを修正するにはどうすればよいでしょうか。

これが私のMWEです:

\documentclass[25pt]{tikzposter}
\usepackage{authblk} %Allows improved author and affiliation design
\usetheme{Desert}

%Set title authors and institute
\title{\parbox{\linewidth}{\centering ULTRA LONG TITLE NO ONE BOTHERS   TO    READ}}
\institute{Alpha University}

\author[1,2]{John Doe}
\author[2]{Jane Doe}
\author[2]{Jennifer Doe}
\author[3,4]{James Doe}
\author[3]{Jenna Smith}
\author[2]{John Smith}
\author[1]{Jennifer Smith}


\affil[1]{\normalsize Dept. of Alpha Research}
\affil[2]{\normalsize Beta corporation}
\affil[3]{\normalsize Gamma university}
\affil[4]{\normalsize Delta Research group}

%Make title customizer
\makeatletter
\def\maketitle{\AB@maketitle}
\makeatother

\begin{document}
\maketitle
\block{Abstract}{
Tih is an abstract to fill the MWE
} % See Section 4.2
\end{document}

答え1

\renewcommand\Affilfont{\small\color{orange!80!black}}所属ブロックのフォントを設定するために使用します。

philyeardmanTikzposterAuthblk

関連情報