biblatex+biber를 사용하여 연도 이외의 다른 인용 필드도 클릭 가능하게 만드는 방법은 무엇입니까?

biblatex+biber를 사용하여 연도 이외의 다른 인용 필드도 클릭 가능하게 만드는 방법은 무엇입니까?

다음 MWE를 사용하여 고려하십시오 biblatex+biber.hyperref

\documentclass{article}

% create Bibliografy.bib
\usepackage{filecontents}
\begin{filecontents*}{Bibliografy.bib}
@book{strangIntroductionLinearAlgebra1993,
title = {Introduction to Linear Algebra},
author = {Strang, Gilbert and Strang, Gilbert and Strang, Gilbert and Strang, Gilbert},
date = {1993},
volume = {3},
publisher = {Wellesley-Cambridge Press Wellesley, MA}
}
@inproceedings{fohlmeisterDualKalmanFiltering2018,
  title = {Dual {{Kalman}} Filtering Based {{GNSS}} Phase Tracking for Scintillation Mitigation},
  booktitle = {2018 {{IEEE}}/{{ION Position}}, {{Location}} and {{Navigation Symposium}} ({{PLANS}})},
  author = {Fohlmeister, Friederike and Antreich, Felix and Nossek, Josef A.},
  date = {2018-04},
  pages = {1151--1158},
  issn = {2153-3598},
  doi = {10.1109/PLANS.2018.8373499},
  eventtitle = {2018 {{IEEE}}/{{ION Position}}, {{Location}} and {{Navigation Symposium}} ({{PLANS}})},
  keywords = {GNSS,Synchronization}
}

@article{rinoAngleDependenceSingly1977,
  title = {The Angle Dependence of Singly Scattered Wavefields},
  author = {Rino, CL and Fremouw, EJ},
  date = {1977},
  journaltitle = {Journal of Atmospheric and Terrestrial Physics},
  shortjournal = {Journal of Atmospheric and Terrestrial Physics},
  volume = {39},
  number = {8},
  pages = {859--868},
  publisher = {Elsevier},
  issn = {0021-9169}
}
\end{filecontents*}

% Use the biblatex package
\usepackage[style=authoryear, hyperref=true]{biblatex}
\addbibresource{Bibliografy.bib}

\usepackage[hidelinks]{hyperref}

\hypersetup{
  colorlinks   = true, %Colours links instead of ugly boxes
  urlcolor     = blue, %Colour for external hyperlinks
  linkcolor    = blue, %Colour of internal links
  citecolor   = red %Colour of citations
}

\title{My incredible title}
\date{\today}

\begin{document}
\maketitle
Hello world!

\begin{itemize}
    \item A normal citation: \cite{strangIntroductionLinearAlgebra1993}.
    \item A parenthesis citation: \parencite{fohlmeisterDualKalmanFiltering2018}. 
    \item A textual citation: \textcite{rinoAngleDependenceSingly1977}.
    \item Citing only the author's name: \citeauthor{strangIntroductionLinearAlgebra1993}.
    \item Citing only the year of publication: \citeyear{strangIntroductionLinearAlgebra1993}.
    \item Citing only the title of the source: \citetitle{rinoAngleDependenceSingly1977}.
\end{itemize}

\printbibliography
\end{document}

실행하여

  1. pdflatex -synctex=1 -interaction=nonstopmode -file-line-error main.tex
  2. biber main
  3. pdflatex -synctex=1 -interaction=nonstopmode -file-line-error main.tex
  4. pdflatex -synctex=1 -interaction=nonstopmode -file-line-error main.tex

그것은 생산한다

여기에 이미지 설명을 입력하세요

연도를 클릭할 수 있으므로 이는 매우 훌륭하지만 다른 필드(저자 이름, 제목 등)도 클릭할 수 있도록 만들고 싶습니다. 어떻게 해야 합니까?

관련 정보