enotez \href 问题

enotez \href 问题

\href我正在使用(hyperref 包) 和 enote (enotez 包)进行证明

 \documentclass{article}
  \usepackage[backref]{enotez}     
 \usepackage{hyperref}
 \let\footnote=\endnote

\begin{document}
     Sample text.\endnote {\href{https://www.ibm.com}} \printendnotes           
\end{document}

但是,此代码没有将 .pdf 链接到网站

为什么?

短暂性脑缺血发作

雷纳托

答案1

\href 有两个参数。使用 \url 或添加第二个参数。请注意,如果该命令在另一个命令的参数中使用,则 url 中的特殊字符(%、_ 等)可能会出现问题(但我没有测试过)。

\documentclass{article} 
\usepackage[backref]{enotez}
\usepackage{hyperref} \let\footnote=\endnote

\begin{document} Sample text.\endnote {\url{https://tex.stackexchange.com/questions/472537/enotez-href-problem}} 

\endnote{\href{https://tex.stackexchange.com/questions/472537/enotez-href-problem}{some text}}
\printendnotes
 \end{document} 

相关内容