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}

관련 정보