我的文档中有几处\href
我想在脚注中显示。我该怎么做?
答案1
我通常会写类似这样的内容,因此条目会以超链接的形式在屏幕上阅读,但也会有一个指向纸质输出 URL 的脚注。
\documentclass{article}
\usepackage{hyperref}
\newcommand\fnurl[2]{%
\href{#2}{#1}\footnote{\url{#2}}%
}
\begin{document}
hello \fnurl{Google}{www.google.com}
\end{document}