如何在超链接框外面制作上标数字?

如何在超链接框外面制作上标数字?

这是一个最小的工作示例(在 XeLaTeX 中):

\documentclass[12pt]{ctexart}
\usepackage{circledsteps, hyperref}
\usepackage{lipsum}
\begin{document}
This is \hyperlink{1}{the first link}.

\lipsum[1] 

This is the second link:\hyperlink{2}{$$1+1=2.$$}

\lipsum[2] 

\begin{itemize}
\item[\Circled{1}] This is \hypertarget{1}{the first target}.
\item[\Circled{2}] This is \hypertarget{2}{the second target}.
\end{itemize}
\end{document}

其实,链接就是需要更多解释的文字,目标就是相关的解释,如果链接很多,而且链接不是可点击的,比如打印在A4纸上,那么数字就需要人们知道每个链接对应的解释。

我想在链接框旁边放置一个带圆圈的数字上标。数字可以自动设置,但我更喜欢手动设置。任何帮助都非常感谢。

相关内容