Как написать сноску в классе постеров 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}

Связанный контент