LaTeX 帮助中的 href
我正在尝试使用 LaTeX 创建超链接。 当我使用命令 pdflatex 编译文件时,出现错误。
该文档的相关行是:
\documentclass[12pt]{article}
\usepackage{hyperref}
\begin{document}
...
\href{http://www.cs.utah.edu/dept/old/texinfo/as/gprof_toc.html}{gprof}
pdflatex 创建了一个名为 missfont.log 的文件,其中包含以下内容:
mktextfm pzdr
我做错了什么?
I am trying to create a hyperlink using LaTeX. When I use the command pdflatex to compile the file, I get an error.
The relevant lines of the document are:
\documentclass[12pt]{article}
\usepackage{hyperref}
\begin{document}
...
\href{http://www.cs.utah.edu/dept/old/texinfo/as/gprof_toc.html}{gprof}
pdflatex created a file called missfont.log, which contains this:
mktextfm pzdr
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你安装了 pzdr 字体吗? 如果您使用的是 Debian 或 Ubuntu,请尝试安装 texlive-fonts-recommulated 软件包。
Do you have the pzdr font installed? If you're on Debian or Ubuntu, try installing the texlive-fonts-recommended package.
hyperref 包是否声称可以创建指向任意网页的超链接? 我认为这只是用于文档内链接(它会自动执行)。 我会
在您的文档中格式化
URL。
添加:谢谢威尔,我不知道 href 。 但是,如果您要创建一个主要以纸张为目标媒介的文档,我认为用于格式化 URL 的 url 包是正确的选择。 但如果您认为 href 包包含 url 包,我很乐意直接说明这一点。
Does the hyperref package purport to make hyperlinks to arbitrary web pages? I thought it was just for intra-document links (which it does automatically). I would do
and
to format a URL in your document.
ADDED: Thanks Will, I didn't know that about href. But if you're creating a document that's mainly targeting paper as the intended medium, I think the url package for formatting URLs is the way to go. But if you think the href package subsumes the url package, I'd love to be set straight on that.