使用 pdflatex 和 bibtex,此代码给了我一个虚假的百分比符号。
\documentclass[twocolumn]{article}
\usepackage{url}
\begin{document}
hello \cite{hello}.
\bibliographystyle{plain}
\bibliography{android}
\end{document}
围兜入口:
@misc{hello,
author={{John Smith}},
title={My Title},
note={\url{http://tex.stackexchange.com/questions/4213/how-to-deal-with-bibliography-items-containing-long-urls}},
}
呈现的文档:
请注意第三行末尾的“%”。如何修复?
答案1
bibtex
限制行长,并在前面加上百分号字符来插入换行符。通常百分号是注释字符,但在 中情况并非如此\url
,其参数以逐字方式读取。
该问题已在以下版本中修复:
% ver 1.6 20-Jun-2002` % [...] ignore trailing %, [...]
url
您可能正在使用超过十年的旧版本的软件包。当前版本是ver 3.3 12-Apr-2006
。
更新软件包url
应该可以修复该问题。也可能安装了不同的版本,但首先发现的是过时的版本。