LaTeX 帮助中的 href

发布于 2024-07-10 04:00:03 字数 357 浏览 5 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

厌味 2024-07-17 04:00:03

你安装了 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.

牵你手 2024-07-17 04:00:03

hyperref 包是否声称可以创建指向任意网页的超链接? 我认为这只是用于文档内链接(它会自动执行)。 我会

\usepackage{url}

在您的文档中格式化

\url{http://foo.com}

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

\usepackage{url}

and

\url{http://foo.com}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文