使 textpos 命令透明

使 textpos 命令透明

我正在定义自己的边注命令,并且我有一个关于使命令“透明”的问题。

为了更清楚,我有以下代码:

\documentclass{article}
\usepackage[absolute]{textpos}

\newcommand{\notes}[2]{#2 \begin{textblock*}{2.5cm}[0.5,0.5](1.5cm,2cm)#1\end{textblock*}}

\begin{document}

This text is a \notes{a note}{test} in order to try something.

\end{document}

我希望它像下面这段代码一样被执行

\documentclass{article}
\usepackage[absolute]{textpos}

\newcommand{\notes}[2]{#2 \begin{textblock*}{2.5cm}[0.5,0.5](1.5cm,2cm)#1\end{textblock*}}

\begin{document}

This text is a test in order to try something.

\notes{a note}{}

\end{document}

我想让文本块环境在文本中“透明”(例如在最后编译)。

提前感谢您的回答。

相关内容