以下是我写的内容
\documentclass[12pt, a4paper]{book}
\usepackage[colorlinks=true,breaklinks]{hyperref}
\usepackage[hyphenbreaks]{breakurl}
\usepackage{xcolor}
\definecolor{c1}{rgb}{0,0,1}
\definecolor{c2}{rgb}{0,0.3,0.9}
\definecolor{c3}{rgb}{0.3,0,0.9}
\hypersetup{linkcolor={c1},citecolor={c2},urlcolor={c3}}
\begin{document}
\begin{thebibliography}{}
\bibitem{beta}BetaFunction:https://en.wikipedia.org/wiki/Beta function
\end{thebibliography}
\end{document}
当我编译文件时,参考书目中的 URL 不会以蓝色显示。我该如何修复这个问题?
谢谢。
答案1
你需要告诉 LaTeX 你正在编写一个 URL:
\url{https://en.wikipedia.org/wiki/Beta function}
但是,如果您真的想使用参考书目,那么您应该考虑使用biblatex
而不是手动输入。