Latex hyperref引用的使用

\usepackage{hyperref} 
\hypersetup{
hidelinks,
colorlinks=true,
linkcolor=red,
citecolor=blue,
urlcolor = black
}

hidelinks:隐藏超链接的边框和颜色。
colorlinks=true:超链接的文本着色,而不是使用边框。
linkcolor=red:内部文档链接(e.g. 章节、公式引用)的文本颜色设置为红色。
citecolor=blue:引用链接(e.g. 参考文献引用)的文本颜色设置为蓝色。
urlcolor=black:将外部URL链接的文本颜色设置为黑色。

你可能感兴趣的:(python,深度学习)