我想在 PDF 文件中留下评论,为此,该pdfcomment
包似乎是一个有用的选项。但是,当我尝试\pdfmarkupcomment
在标题中使用时,我的评论没有显示在 PDF 文件中(至少,我在文件中的任何地方都找不到)。您能帮我如何在标题中达到所需的效果吗?我的 MWE 如下:
\documentclass{article}
\usepackage{hyperref}
\usepackage{pdfcomment}
\begin{document}
\pdfmarkupcomment[markup=Highlight]{Text}{Stupid comment.}
\begin{figure}
\caption{\pdfmarkupcomment[markup=Highlight]{Caption}
{Another stupid comment, which is not displayed in the PDF file.}}
\label{fig:lab}
\end{figure}
Fig.~\ref{fig:lab} is a blank figure.
\end{document}