文档
指定该annotation
领域,甚至提到它在带注释的参考书目中的用途:
注释字段(文字)此字段在实现带注释的参考书目样式时可能很有用......
问题是,我不知道如何使用来调用带注释的参考书目“样式” biblatex
。
如果没有 biblatex 似乎你可以使用
\bibliographystyle{annotate}
,但尝试使用它时biblatex
会引发“\bibliographystyle 无效”。
我想实现同样的目标这个答案,但biblatex
最好利用它的annotation
领域。
我所拥有的.bib
是:
@misc{kyber,
author = {Leon Botros and Matthias J. Kannwischer and Peter Schwabe},
title = {Memory-Efficient High-Speed Implementation of Kyber on Cortex-M4},
howpublished = {Cryptology ePrint Archive, Report 2019/489},
year = {2019},
note = {\url{https://ia.cr/2019/489}},
annotation = {Crystals-Kyber PQC spec (one of the NIST PQC finalists).}
}
答案1
bilatex
带注释的参考书目提供的标准样式是reading
,可以使用 来设置bibstyle
:
\documentclass{article}
\usepackage[bibstyle=reading]{biblatex}
\begin{filecontents}[overwrite]{\jobname.bib}
@misc{kyber,
author = {Leon Botros and Matthias J. Kannwischer and Peter Schwabe},
title = {Memory-Efficient High-Speed Implementation of Kyber on Cortex-M4},
howpublished = {Cryptology ePrint Archive, Report 2019/489},
year = {2019},
note = {\url{https://ia.cr/2019/489}},
annotation = {Crystals-Kyber PQC spec (one of the NIST PQC finalists).}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}