[Tex/LaTex] Bibliography Style with abstract and numbered references

biblatex

How to get a bibliography style that generates numeric-style citation call-outs and typesets the contents of the abstract fields of bibliographic entries?

Best Answer

You seem to want a numeric style, biblatex offers some variations on your classical version, namely numeric-comp and numeric-verb.


The abstract field is by default not included in the bibliography output, but we can easily add it using

\DeclareFieldFormat{abstract}{\par\small#1}
\renewbibmacro*{finentry}{\printfield{abstract}\finentry}

Where the first line takes care of a nice formatting.

MWE

\documentclass{article}
\usepackage[style=numeric]{biblatex}

\addbibresource{biblatex-examples.bib}

\DeclareFieldFormat{abstract}{\par\small#1}
\renewbibmacro*{finentry}{\printfield{abstract}\finentry}

\begin{document}
\cite{sigfridsson,kastenholz}

\printbibliography
\end{document}

enter image description here