
Estoy intentando configurar mi entorno Hyperref para replicar el estilo de este artículo:https://iopscience.iop.org/article/10.1088/1126-6708/2000/04/018/pdf
Pero parece que no puedo entenderlo y todos los manuales de Hyperref que encuentro son bastante técnicos y no ilustrativos, ¿podrían ayudarme?
Respuesta1
¿Es esto algo parecido a lo que estás buscando? En el ejemplo que vinculó, parece que cada tipo de vínculo tiene un borde azul discontinuo alrededor, excepto las notas al pie. Hice lo mejor que pude para recrear eso sin las notas al pie, que desactivé con hyperfootnotes=false
.
En el siguiente código, pdfborderstyle
los dos números [3.5 2.5]
controlan la longitud de cada guión y el tamaño del espacio entre guiones, respectivamente, medido en unidades de puntos. El número que sigue W
es el ancho (grosor) de los guiones en unidades de puntos.
\documentclass{article}
\usepackage{amsmath}
\usepackage[hyperfootnotes=false]{hyperref}
\hypersetup{
allcolors=blue,
allbordercolors={0 0 1},
pdfborderstyle={/S/D/D[3.5 2.5]/W 1}
}
\begin{document}
\section{Hi there!}
\subsection{Nice to meet you}
\label{sec:greeting}
This is the first sentence in Section \ref{sec:greeting}.
According to some great mathematicians \cite{ExampleCitation}, it can be proved that
\begin{equation}
1 + 1 \neq -1. \tag{Amazing Lemma} \label{eq:astonishing_theorem}
\end{equation}
The \ref{eq:astonishing_theorem} has revolutionized mathematics.\footnote{Want to know a secret? This theorem is actually pretty trivial.}
\begin{thebibliography}{1}
\bibitem{ExampleCitation}
Audrey Author and Carrie Coauthor. 1999. \emph{Example citation}. Retrieved from \url{https://www.example.com}
\end{thebibliography}
\end{document}