Nas chamadas de citação numérica, quero que os caracteres [
e ]
sejam pretos e o número 12
em 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}
Responder1
Presumo que você construa a bibliografia do seu documento manualmente. Se esta suposição estiver correta, tudo o que você precisa fazer para alcançar seu objetivo é (a) usar \bibitem
em vez de \item
no thebibliography
ambiente, (b) carregar o cite
pacote de gerenciamento de citações e usar \cite
comandos para gerar chamadas de citação em estilo numérico e ( c) carregue o hyperref
pacote e defina a opção de pacote 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}