파란색 라텍스의 참고문헌 인용

파란색 라텍스의 참고문헌 인용

숫자 인용 설명에서 []문자는 검은색으로, 숫자는 12파란색으로 표시하고 싶습니다.

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}

답변1

나는 문서의 참고문헌을 손으로 작성한다고 생각합니다. 이 가정이 맞다면 목표를 달성하기 위해 해야 할 일은 (a) 환경 대신 사용하고 , \bibitem( b) 인용 관리 패키지를 로드하고 명령을 사용하여 숫자 스타일 인용 콜아웃을 생성하고, ( c) 패키지를 로드하고 패키지 옵션을 설정합니다 .\itemthebibliographycite\citehyperrefcitecolor=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}

관련 정보