为什么 doi 包在 TRB overleaf 模板上不起作用?

为什么 doi 包在 TRB overleaf 模板上不起作用?

我补充道\usepackage{doi}在 hyperref 包中添加了TRB 模板但似乎不起作用。为什么 doi 包在某些模板上有效,而在其他模板上无效?

我有以下 MWE。

\documentclass[numbered]{trbunofficial}
\usepackage{graphicx}
\usepackage{moreverb,url}
\usepackage[colorlinks]{hyperref}
\usepackage{doi}

\begin{document}
\maketitle

\section{Abstract}
We will have max 200 words abstract here.

\hfill\break%
\noindent\textit{Keywords}: Blah blah
\newpage


\section{Introduction}
Let me cite this guy here \cite{theguy}.

\bibliographystyle{trb}
\bibliography{trb_template}

\end{document}

假设我有一个名为 trb_template.bib 的 bib 文件,其中包含以下条目:

@article{theguy,
  title={What a great work he has done!},
  author={Guy, The},
  journal={Top Journal},
  volume={1},
  pages={1--10},
  year={2022},
  doi = {12.2022/jrnl.abbr.2022.01.01}
}

相关内容