我需要在文章文档的脚注中显示 unix url。一些帖子,例如如何在脚注中显示 ~(波浪号)? 非常有帮助,但是我仍有一些疑问。
我正在使用 URL 包。在我的脚注中,我尝试了类似
\url{http://www.site1.ext/~hello}
显示 unix URL,我的问题是:
1- 这会改变脚注的字体。如何确保它使用与我的其他脚注类似的默认脚注文本?
2-当我点击地址时,它没有生成正确的url。
我必须遵守一些特定的软件包和指南,因此我可能无法使用某些软件包。非常感谢任何帮助,指导我用最简单的解决方案解决这个问题。
答案1
您可以使用\urlstyle{}
来更改字体。例如,\urlstyle{rm}
使用默认的衬线字体。
\documentclass{article}
\usepackage{url}
\urlstyle{rm}
\begin{document}
This is a sentence\footnote{This is a footnote with a \url{http://www.somewhere.com/~spindles/}.}
\end{document}
如果您想要可点击的链接,您需要使用hyperref
。
\documentclass{article}
\usepackage{hyperref}
\urlstyle{rm}
\begin{document}
This is a sentence\footnote{This is a footnote with a \href{http://www.somewhere.com/~spindles/}{\url{http://www.somewhere.com/~spindles/}}.}
\end{document}