I want to cite articles of bibliography using abbreviations as labels instead of numbers.
Looking in the Internet I found the commands below to do that.
The problem now is that the outputs are bold labels which I do not want. How can I unbold all the citations?
P.S. I know that there is another topic open but it is related to amsproc class while I am using the simple book class.
\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}
biblatexdoes nothing at all if you directly include athebibliographyenvironment. – egreg Sep 16 '17 at 11:00biblatex. – egreg Sep 17 '17 at 09:57biblatexand have to do everything manually withthebibliography; or you usebiblatexand dropthebibliographyin favour of\printbibliographyyou will have to compile with Biber in that case, see Question mark or bold citation key instead of citation number and Biblatex with Biber: Configuring my editor to avoid undefined citations. – moewe Sep 17 '17 at 10:05