我有一个清单
\begin{enumerate}
\item This is the first post
\item This is the second post
\end{enumerated}
我想在框内的编号中添加超链接。
最简单的方法是使用我自己的编号(使用计数器或手动)
\boxed{ \href{www.google.com}{1} } This is the first post
\boxed{ \href{www.google.com}{2} } This is the first post
但是使用这种结构,我失去了“枚举”所呈现的缩进。我怎样才能保留缩进
答案1
如果我正确理解了你的问题,那么这对我有用:
\documentclass{article}
\usepackage{amsmath}
\usepackage{hyperref}
\begin{document}
\begin{enumerate}
\item This is the first post
\item[\boxed{\href{www.google.com}{2}}] This is the second post
\end{enumerate}
\end{document}