나는 사용하고있다
\usepackage[colorlinks=true,linkcolor=black,linktoc=page]{hyperref}
인용은 녹색으로 표시되고 목차의 페이지 번호, 그림 및 방정식 번호는 파란색으로 표시됩니다. 제가 이해하는 바로는 이것이 표준 색상입니다.
내가 어떻게 할단지인용을 위해 녹색을 유지하고 다른 모든 색상을 비표준 색상으로 변경하시겠습니까? 마치 진한 파란색.
답변1
\hypersetup
명령을 사용하거나 의 선택적 인수로 다양한 색상을 설정할 수 있습니다 \usepackage[...]{hyperref}
.
의견을 반영하여 MWE를 확장했습니다.
\documentclass{article}
\usepackage[svgnames]{xcolor}
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
linkcolor =LightSkyBlue,
anchorcolor = red,
citecolor = blue,
urlcolor = blue
}
\begin{document}
\begin{equation}\label{One}1+1=2\end{equation}
Isn't \ref{One} a nice equation?
\end{document}
이는 다음을 생성합니다.
참조하이퍼참조 매뉴얼가능한 옵션에 대한 자세한 내용은