如何在 Tikz 海报类中写脚注?

如何在 Tikz 海报类中写脚注?

我在 tikz 海报类中添加脚注时遇到问题?

答案1

有点麻烦,但似乎可行。不过,您需要手动跟踪哪段文本与哪个脚注对应。

在此处输入图片描述

\documentclass[a2paper]{tikzposter}
\let\thempfootnote\thefootnote%http://tex.stackexchange.com/questions/956/footnotemark-and-footnotetext-in-minipage#959
\newcommand\printfootnote[1]{% to get different numbers for different footnotes
\addtocounter{footnote}{1}%
\footnotetext{#1}}
\begin{document}
\block{Foo}{Lorem\footnotemark{} dolor}% use \footnotemark to make the number
\block{bar}{Sit\footnotemark{} consectetur }


% add the nootnotes in a node
\node [text width=10cm,above right] at (bottomleft) {% the bottomleft coordinate is defined by the class
\setcounter{footnote}{0}%
\printfootnote{ipsum} % ipsum is the text of the footnote
\printfootnote{amet}
};
\end{document}

相关内容