答案1
基本概念解释如下使用 TikZ 在图像上绘图。在名为 TikZ 的文件夹中添加图像node
,并放置与该图像相关的内容。(当您知道文本应该位于角落时,无需使用scope
该问题答案中看到的环境中的花哨内容。)
要允许换行,请设置用于保存文本的节点的text width
和/或,如下例所示。在这种情况下,节点的行为有点像我认为,因此脚注将最终出现在节点的底部,而不是页面的底部。使用和是一种解决方法,但使用浮动数字(如果您使用它)会导致它们自己的问题。align
minipage
\footnotemark
\footnotetext
\documentclass{article}
\usepackage{tikz,graphicx}
\begin{document}
\begin{tikzpicture}
\node (img) {\includegraphics[width=8cm]{demo}};
\node [below left,text width=3cm,align=center] at (img.north east){Lorem ipsum dolor sit amet consectetur and then a bunch more stuff that no one remembers.\footnotemark};
\end{tikzpicture}
\footnotetext{Sure about this?}
\end{document}