pdflatex使用宏中的hyperref包生成的额外“file://”前缀

时间:2010-08-10 16:12:38

标签: latex hyperref

LaTeX hyperref软件包在几个方面让我感到困惑。这是我的特殊问题。

在我的文档中,命令

\footnote{
\url{http://www.boston.com/news/science/articles/2010/04/25/new_atlas_shows_the_state_of_nature_as_well_as_the_nature_of_states/}
}

工作正常 - pdflatex只生成有效链接。

但命令

\newcommand{\webref}[1]{\footnote{\url{#1}}}

\webref{http://www.boston.com/news/science/articles/2010/04/25/new_atlas_shows_the_state_of_nature_as_well_as_the_nature_of_states/
}

生成链接

file:///C|/eb/qrbook/%20http://www.boston.com/news/science/articles/2010/04/25/new_atlas_shows_the_state_of_nature_as_well_as_the_nature_of_states/

有人可以告诉我额外的“file:// ...”来自哪里,以及如何摆脱它?

1 个答案:

答案 0 :(得分:0)

狂野猜测:你确定你没有在任何地方引入任何无关的空间吗?如果我在#1之前引入换行符,我可以重现这种行为。 (专业提示:在多行命令中的最后一个字符后面加上%,因此LaTeX不处理换行符。)