For assignment I am writing I need to write a brief review of each reference and have it in the references section (indented by one tab on left hand side and blank line to next reference} after the reference itself. It is for me to justify why included this reference in the assignment.
With biblatex how can I a new field - ie 'Review' after each reference in the Bibliogrphy.
References CTAN 2006 .... Can this be added in Reference Section
...
Is there a field I can use to do this or is this best done some other way?
Here is the basic biblatex schema I use.
\documentclass[a4paper,11pt]{report}
\usepackage{filecontents}
\begin{filecontents}{reference.bib}
@Online{ctan,
Title = {CTAN},
Url = {http://www.ctan.org},
Year = {2006},
Subtitle = {The {Comprehensive TeX Archive Network}},
Urldate = {2006-10-01},
Label = {CTAN},
Review = {Can this be added in Reference Section}
}
\end{filecontents}
\usepackage[style=authoryear,natbib, backend=biber]{biblatex}
\DefineBibliographyStrings{english}{%
urlseen = {accessed on},
}
\addbibresource{reference.bib}
\begin{document}
\citet{CTAN}
\printbibliography[title=References]
\end{document}
abstractfield and something like\renewbibmacro*{finentry}{\setunit{\par}\printfield{abstract}\finentry}. – moewe Oct 14 '15 at 10:39