答案1
pdfborderstyle={/S/U/W 1}
根据手册,您的文档中的某处(或您正在使用的模板文件中)可能会有带下划线的链接hyperref
:
链接可以用下划线代替默认的矩形或选项
colorlinks
,frenchlinks
。这可以通过选项 来实现pdfborderstyle={/S/U/W 1}
。
要么用 替换它hidelinks
,要么如果找不到它,请\hypersetup{hidelinks}
按照@PhelypeOleinik 所说的在序言中添加它。以下是供您使用的示例代码:
\documentclass{article}
\usepackage{hyperref}
\bibliographystyle{unsrt}
% \hypersetup{pdfborderstyle={/S/U/W 1}} % <-------- You have
\hypersetup{hidelinks} % <-------- You want
\begin{document}
\tableofcontents
\section{Intro}\label{sec}
\cite{article-full}, see section~\ref{sec}.
\bibliography{xampl}
\end{document}
输出如承诺的那样,没有下划线: