Biblatex/biber를 사용하여 각 전체 참고문헌 항목을 클릭 가능한 하이퍼링크로 만드는 방법은 무엇입니까?

Biblatex/biber를 사용하여 각 전체 참고문헌 항목을 클릭 가능한 하이퍼링크로 만드는 방법은 무엇입니까?

최근에 아주 비슷한 질문을 했어요여기bibtex및 을 사용합니다 natbib. cas-sc.cls와 함께 파일을 사용하도록 요청한 저널의 조판 담당자에게 연락하여 biblatex/biber공식 지원 포털을 알려 주었습니다.여기사용하라는 조언을 반복합니다 biblatex/biber.

요구 사항은 각 참고문헌 항목(예: 전체 줄 항목)이 클릭 가능한 하이퍼링크가 되어야 한다는 것입니다(사용 가능한 경우 doi 필드를 사용하고 그렇지 않으면 bib 파일에 있는 관련 키의 url 필드를 사용). 또한 doiurl필드는 참고문헌에 조판되어서는 안 됩니다.

제가 사용하고 싶은 참고문헌 스타일 파일은 다음과 같습니다.모델1-번호-이름.bst

다음은 작동하지 않는 최소한의 예입니다.

\documentclass{cas-sc}
\newdimen\bibsep 
\addbibresource{model1-num-names.bst} % please download the file from the gist URL (see question)

\begin{document}

\title[mode=title]{My paper title}
\tnotemark[1,2]

\tnotetext[1]{Title footnote 1: This document presents the results of the research project funded by the National Science Foundation: Placeholder. Replace with your own text.}

\tnotetext[2]{Title footnote 2: For example, a dedication. The second title footnote which is a longertext matter to fill through the whole text width andoverflow into another line in the footnotes area of thefirst page.}

%%% Authors' names, affiliations, physical addresses, email addresses & footnotes %%%%
\author[1]{First Author}[orcid=0000-0001-7511-2910]
\fnmark[1] 
\ead{firstemail_id@insti_1.edu}
\ead[url]{www.inst1.edu/author1}
\address[1]{Address of author with affiliation `a'}

\author[2]{Second Author}
\fnmark[2] 
\ead{secondemail_id@insti_2.edu}
\ead[url]{www.inst2.edu/author2}
\address[2]{Address of author with affiliation `b'}

\author[3]{Third Author} 
\fnmark[1,3]
\ead{thirdemail_id@insti_3.edu}
\ead[url]{www.inst3.edu/author3}

\address[3]{Utopia, Mars}

\fntext[fn1]{This is a footnote.}
\fntext[fn2]{Another author footnote, this is a very long footnote and it should be a really long footnote. But this footnote is not yet sufficiently long enough to make twolines of footnote text.}
\fntext[fn3]{Yet another author footnote.}

\begin{abstract}
    The abstract of the paper goes here. 
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. 
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{abstract}

% Research highlights
\begin{highlights}
\item Research highlight 1
\item Research highlight 2
\end{highlights}

\begin{keywords}
    % Keywords go here in the form:  keyword \sep keyword
    Keywords \sep in \sep American \sep English
\end{keywords}

\maketitle

\section{Introduction}{\label{sec:intro}}
Blah

\section{Results and discussion}{\label{sec:results}}
Blah blah

\nocite{*}
% Command to typeset bibliography using biblatex/biber

\end{document}

다음과 같은 턱받이 콘텐츠가 사용될 수 있습니다(이것을 호출하겠습니다 manuscript_references.bib.

@article{sigfridsson,
  author       = {Sigfridsson, Emma and Ryde, Ulf},
  title        = {Comparison of Methods for Deriving Atomic Charges from the
                  Electrostatic Potential and Moments},
  journal      = {Journal of Computational Chemistry},
  year         = 1998,
  volume       = 19,
  number       = 4,
  pages        = {377-395},
  doi          = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
@misc{elk,
  author  = {Anne Elk},
  title   = {A Theory on {Brontosauruses}},
  year    = {1971},
  url     = {https://example.edu/~elk/bronto.pdf},
}
@book{nussbaum,
  author       = {Nussbaum, Martha},
  title        = {{Aristotle's} {`De Motu Animalium'}},
  year         = 1978,
  publisher    = {Princeton University Press},
  address      = {Princeton},
}

관련 정보