![Tikz ポスタークラスで脚注を書くにはどうすればいいですか?](https://rvso.com/image/348189/Tikz%20%E3%83%9D%E3%82%B9%E3%82%BF%E3%83%BC%E3%82%AF%E3%83%A9%E3%82%B9%E3%81%A7%E8%84%9A%E6%B3%A8%E3%82%92%E6%9B%B8%E3%81%8F%E3%81%AB%E3%81%AF%E3%81%A9%E3%81%86%E3%81%99%E3%82%8C%E3%81%B0%E3%81%84%E3%81%84%E3%81%A7%E3%81%99%E3%81%8B%3F.png)
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}