Wie schreibt man eine Fußnote im Tikz-Posterkurs?

Wie schreibt man eine Fußnote im Tikz-Posterkurs?

Ich habe Probleme beim Hinzufügen einer Fußnote in der Tikz-Poster-Klasse?

Antwort1

Etwas fummelig, aber es scheint zu funktionieren. Sie müssen allerdings manuell nachverfolgen, welcher Text zu welcher Fußnote gehört.

Bildbeschreibung hier eingeben

\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}

verwandte Informationen