如何在乳胶中为 tikzpicture 内的文本添加脚注?
谢谢。
答案1
您可以在 TikZ 图片中添加脚注,方式与在表格或图形中添加脚注相同,即,您可以使用\footnotemark
内部和\footnotetext
外部,或者将文本换行,minipage
将脚注直接放在页面中间的下方。
\documentclass{article}
\usepackage{tikz}
\setlength{\textheight}{3cm} % only for demo!
\begin{document}
\begin{tikzpicture}[every node/.style={
draw=red, rectangle, rounded corners
}]
\node (a) {Hello world!\footnotemark};
\node [below of=a] (b) {%
\begin{minipage}{5cm}
foobar\footnote{This footnote is inside the picture}
\end{minipage}%
};
\end{tikzpicture}
\footnotetext{This footnote is outside the picture}
\end{document}