参照を url-doi リンクに変換する

参照を url-doi リンクに変換する

履歴書を更新しようとしていますが、通常使用していたスクリプトが機能しなくなりました。

私の CV は awesome-CV テンプレートに基づいており、awesome cls を使用しています。ただし、標準クラスとは異なる点として、参考文献を論文へのハイパーリンクとして表示したいと考えていました。そのために、次のような MWE を使用しました。

\documentclass[11pt, a4paper]{awesome-cv}
\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
\hypersetup{colorlinks,linkcolor=darkblue,urlcolor=darkblue}
\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
\fontdir[fonts/]

\newbibmacro{string+doiurl}[1]{%
  \iffieldundef{doi}
    {\iffieldundef{url}
       {#1}
       {\href{\thefield{url}}{#1}}}
    {\href{https://doi.org/\thefield{doi}}{#1}}}

\makeatletter
\def\blx@driver#1{%
  \ifcsdef{blx@bbx@#1}
    {\usebibmacro{string+doiurl}{\csuse{blx@bbx@#1}}}
    {\ifcsdef{blx@bbx@*}
       {\blx@warning{%
          No driver for entry type '#1'.\MessageBreak
          Using fallback driver}%
        \usebibmacro{string+doiurl}{\csuse{blx@bbx@*}}}
       {\blx@error
          {No driver found}
          {I can't find a driver for the entry type
           '\abx@field@entrytype'\MessageBreak
           and there is no fallback driver either}}}}
\makeatother

\begin{filecontents}{references.bib}
@article{test,
title = {Book's title},
author = {Author, Some},
location = {The City},
publisher = {Publisher},
date = {2005},
}
\end{filecontents}

\addbibresource{references.bib}

%-------------------------------------------------------------------------------
\begin{document}

\begin{refsection}
    \nocite{test}
    \printbibliography[title={Journal Articles},
    heading=subbibliography]
\end{refsection}


%-------------------------------------------------------------------------------
\end{document}

しかし、問題はこれが機能しなくなり、代わりに次のエラーが発生することです。

(pdf backend): \pdfextension endlink cannot be used in vertical mode

私が使用しているマクロはオンラインで見つけたもので、どのように機能するのかよくわからない(そして、今はもう機能していないようだ)ので、私が望むことを実行するよりスマートで標準的な方法があることを願っています。

関連情報