如何在文本上叠加标注框?

如何在文本上叠加标注框?

图像

我希望实现以下目标。这可能有很多变体。

答案1

如果您可以接受 PDF 注释:

\documentclass{article}
\usepackage{pdfcomment}
\newcommand*\callout[2]%
{%
  \pdfmarkupcomment[color={ 0.3 0.3 0.3 },opacity=0]{\textbf{#1}}{#2}%
}%
\begin{document}
\callout{If}{If shows the cause ...} it can be detected ...
\end{document}

例子

相关内容