En las citas numéricas, quiero que los caracteres [
y ]
sean negros y el número 12
en azul, por favor.
The debate on alternatives to null hypothesis significance tests based
on p-values [63] has led to a renewed interest in the Bayesian alternative
known as the Bayes factor. Advantages of such Bayesian tests include the
ability to provide evidence in favor of both the null and the alternative
hypotheses [12].
\item \label{Boscoe}
{Boscoe, A., Paramore, C., & Verbalis, J. G. (2006). Cost of illness of
hyponatremia in the United States. Cost effectiveness and resource
allocation : C/E, 4, 10. https://doi.org/10.1186/1478-7547-4-10}
Respuesta1
Supongo que construyes la bibliografía de tu documento a mano. Si esta suposición es correcta, todo lo que necesita hacer para lograrlo es (a) usarlo \bibitem
en lugar de \item
en el thebibliography
entorno, (b) cargar el cite
paquete de administración de citas y usar \cite
comandos para generar llamadas de citas de estilo numérico, y ( c) cargue el hyperref
paquete y configure la opción del paquete citecolor=blue
.
\documentclass{article}
\usepackage[noadjust]{cite}
\usepackage{xcolor}
\usepackage{xurl} % to typeset URL strings
\usepackage[colorlinks,citecolor=blue,urlcolor=red]{hyperref}
\hyphenation{hypo-na-tremia} % optional
\begin{document}
\noindent
\cite{Boscoe}
\begin{thebibliography}{99}
\setcounter{enumiv}{11} % just for this example
\bibitem{Boscoe} Boscoe, A., Paramore, C., \& Verbalis, J. G. (2006). Cost
of illness of hyponatremia in the United States. Cost Effectiveness and
Resource Allocation: C/E, 4, 10. \url{https://doi.org/10.1186/1478-7547-4-10}
\end{thebibliography}
\end{document}