在 tikzposter 中使用 authblk 包自定义脚注

在 tikzposter 中使用 authblk 包自定义脚注

我想在 tikzposter 文档类中使用 authblk,以及像这篇文章中一样的自定义脚注节点:authblk 包中的自定义脚注

按照以下代码更改 documentclass 会导致符号 ∗ 和 † 被数字 3 和 34 替换。在我看来,这看起来像是 tikzposters 中某些符号的定义方式不同,但我不知道如何更改它。我很乐意提供任何帮助。

\documentclass[25pt, a0paper, landscape]{tikzposter}
\usepackage[affil-it]{authblk}
\usepackage[english]{babel}
\usepackage{blindtext}

\title{An efficient method for exploiting midichlorians}

\author[1,2]{Darth Vader\footnote{Contributed equally.}}

% The order may be wrong on these next two:
\newcommand\CoAuthorMark{\footnotemark[\arabic{footnote}]} % get the current value
\author[2,3]{Darth Sidious\protect\CoAuthorMark
  \thanks{Electronic address: \texttt{[email protected]}; Corresponding author}}

\affil[1]{%
  Office of the Supreme Commander of the Imperial Forces, 
  The Galactic Empire, The Bridge, Executor}
\affil[2]{%
  Order of the Sith Lords, LiMerge Power Building, The Works, Coruscant}
\affil[3]{%
  Office of the Emperor of the Galaxy, The Galactic Empire, 
  1000 Imperial Palace, 2 Main St. Coruscant}


\date{\today}

\begin{document}

\maketitle
\blindtext
\end{document}

在此处输入图片描述

相关内容