Referenz in Latex in blauer Farbe zitieren

Referenz in Latex in blauer Farbe zitieren

Bei numerischen Zitationsaufrufen möchte ich, dass die Zeichen [und ]schwarz und die Zahlen 12blau sind.

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}

Antwort1

Ich gehe davon aus, dass Sie die Bibliographie Ihres Dokuments manuell erstellen. Wenn diese Annahme richtig ist, müssen Sie zum Erreichen Ihres Ziels nur (a) in der Umgebung \bibitemanstelle von verwenden, (b) das Zitatverwaltungspaket laden und Befehle verwenden, um Zitationsaufrufe im numerischen Stil zu generieren, und (c) das Paket laden und die Paketoption festlegen .\itemthebibliographycite\citehyperrefcitecolor=blue

Bildbeschreibung hier eingeben

\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}

verwandte Informationen