我正在使用 REVTeX documentclass 撰写一篇文章,并使用 hyperref。问题是,当我将 URL 添加到参考文献时,链接的标题根本没有损坏。
最小示例:
.tex 文件:
\documentclass[twocolumn]{revtex4-1}
\usepackage{hyperref}
\begin{document}
\cite{reference, reference2}
\bibliography{references}
\end{document}
参考:
@TECHREPORT{reference,
AUTHOR = {Firstname Lastname},
TITLE = {Extremely long and complicated title of something I want to reference several times in my very interesting article},
INSTITUTION = {Institution},
YEAR = {2013},
URL = {http://url/}
}
@TECHREPORT{reference2,
AUTHOR = {Firstname Lastname},
TITLE = {Regular reference},
INSTITUTION = {Institution},
YEAR = {2013},
FILE = {http://url/},
}
使用latex
、bibtex
、latex
、进行编译latex
。dvipdf
结果:
有谁知道有什么办法可以解决这个问题吗?