我正在使用 MikTex 2.9。我希望我的文本被突出显示,并且我希望对其添加注释。但是下面的 MWE 不起作用。请帮忙
\documentclass{report}
\usepackage{graphicx}
\usepackage[a3paper,landscape]{geometry}
\usepackage{lastpage}
\usepackage{hyperref,bookmark}
\usepackage[author={Max Schlepzig}]{pdfcomment}
\usepackage[rgb]{xcolor}
\begin{document}
\pdfmarkupcomment[markup=Highlight,color=yellow]{This highlighted Text Has Tool Tip With Hyperlink.}{Highlight}
\end{document}
答案1
lastpage
之后加载pdfcomment
。
\documentclass{report}
\usepackage{graphicx}
\usepackage[a3paper,landscape]{geometry}
\usepackage[author={Max Schlezpig}]{pdfcomment}
\usepackage[rgb]{xcolor}
\usepackage{lastpage}%
\usepackage{hyperref,bookmark}
\begin{document}
\pdfmarkupcomment[markup=Highlight,color=yellow]{This highlighted Text Has Tool Tip With Hyperlink.}{Highlight}
\end{document}