取消引用

取消引用

我想使用缩写而不是数字作为标签来引用参考书目文章。

在互联网上我找到了下面的命令来执行此操作。

现在的问题是输出的是我不想要的粗体标签。我怎样才能取消所有引用的粗体?

PS,我知道还有另一个主题开放,但它与 amsproc 类有关,而我正在使用简单的书籍类。

\documentclass[11pt]{book} 

%These commands serve to cite with abbreviations instead of numbers
\usepackage[backend=biber,url=true,style=alphabetic]{biblatex}
\usepackage{filecontents}
\addbibresource{biblatex-examples.bib}
\DeclareLabelalphaTemplate{
  \labelelement{
    \field[final]{citekey}
  }
}

\begin{document}

... allow us to prove theorems 3.1 and 4.1 of \cite{author};

\begin{thebibliography}{1}
\bibitem{author} Authorname
\end{thebibliography}

\end{document}

答案1

我相信你想要

\printbibliography

这是一个完整的 MWE,带有arara指令(仅作为示例)。

% arara: pdflatex
% arara: biber
% arara: pdflatex
\documentclass[11pt]{book} 

%These commands serve to cite with abbreviations instead of numbers
\usepackage[backend=biber,url=true,style=alphabetic]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{cmh.bib}
@online{author,
title="minimum working example",
}
\end{filecontents}
\addbibresource{cmh.bib}
\DeclareLabelalphaTemplate{
  \labelelement{
    \field[final]{citekey}
  }
}

\begin{document}

... allow us to prove theorems 3.1 and 4.1 of \cite{author};

\printbibliography

\end{document}

相关内容