中断超链接不起作用

中断超链接不起作用

下面是我的代码,

\documentclass{article}

\usepackage[breaklinks]{hyperref}
\hypersetup{
pdfpagemode=none,%
colorlinks,%
citecolor=blue,%
filecolor=blue,%
linkcolor=blue,%
urlcolor=blue
}
\begin{document}

This a Sample, This a Sample, This a Sample, This a Sample, This i\href{http://dx.doi.org/10.1007/BF0000000}{\textbf{32}, 396 (1964)}

\end{document}

我正在使用 dvi2ps 和 ps2pdf 创建 PDF 输出,我的问题是当链接文本损坏时超链接不起作用,请指导我,

如下图所示,第一行链接不会显示为第二行文本 在此处输入图片描述

提前致谢

谢谢您的帮助

下面的代码运行良好

\documentclass{article}
\usepackage[breaklinks]{hyperref}
\usepackage{breakurl}
\usepackage{url}
\hypersetup{
pdfpagemode=none,%
colorlinks,%
citecolor=blue,%
filecolor=blue,%
linkcolor=blue,%
urlcolor=blue
}

\begin{document}

If you have any questions, at \burlalt{www.goooooggggggle.comssss}{32, 396, (1964)}

If you have any questions, at have any questions, at have have \burlalt{www.goooooggggggle.comssss}{32, 396, (1964)}

\end{document}

但现在我的小问题是我不能使用 \textbf{}

\burlalt{www.goooooggggggle.comssss}{\textbf{32},396,(1964)}

实际上我对乳胶还很陌生,所以请指导我,

答案1

来自hyperrefREADME

支持链接缠绕/断开

只有少数驱动程序支持自动换行/断开链接,例如 pdftex、dvipdfm、hypertex。其他驱动程序缺乏此功能,例如 dvips、dvipsone。

解决方法:

  • 对于目录或图表/表格列表中较长的章节或标题标题,linktocpage可以使用选项。然后页码将是一个链接,并且过长的章节标题不会被强制为一行链接,并发出过长\hbox 警告。

  • \urls 被包裹捕获breakurl

  • 该选项breaklinks仅供内部使用。但它可用于强制链接换行,例如在打印文档时。但是,当将此类文档转换为 PDF 并使用 PDF 查看器查看时,活动链接区域将错位。另一个限制:TeX 对某些惩罚进行了“优化”,因此缺少断点,尤其是在 内 \url。(请参阅 comp.text.tex 2005-09 中的线程hyperref.sty和3.2 breaklinksurl.sty)。

相关内容