1
@Book{Schouten2001,
abstract = {... De Natuur Als Beeld In Religie, Filosofie En Kunst eerste druk is een boek van M.G.C. Schouten uitgegeven bij Knnv Uitgeverij. 
Er is tastbare natuur: de concrete werkelijkheid van aarde, rots, water, planten en dieren, die we kunnen zien, die we kunnen aanraken, van de landschappen waarin we kunnen wandelen. En er is ook ons beeld van de natuur. In onze beleving van de natuur maken we haar tot drager van onze mythen, symbolen en herinneringen, tot spiegel van onze emoties. ... $\backslash$n},
author = {M.G.C. Schouten},
booktitle = {De natuur als beeld in religie, filosofie en kunst},
isbn = {978-90-5011-206-4},
title = {De natuur als beeld in religie, filosofie en kunst},
%publisher = {KNNV Uitgeverij},
url = {http://www.google.com},
%2001
year = {2001}
}
2
  • Welcome to TeX.SE! Please add a minimal example that reproduces your problem: tex.meta.stackexchange.com/questions/4407/…, thank you!
    – CarLaTeX
    Commented May 1, 2023 at 10:01
  • What exactly is your aim here? I.e. why do you talk about a special command \citewithabstract? It would be fairly easy to have the abstract field shown for all entries in the bibligraphy, but then a special command would not make sense. Do you want the abstract only shown for some entries?
    – moewe
    Commented May 1, 2023 at 14:03

1 Answer 1

3

If you put the abstract information in a field called note, it will be printed with the citation. For instance:

\documentclass{article}
\usepackage{filecontents}

\usepackage[style=apa, backend=biber]{biblatex}
\bibliography{bron.bib}
\addbibresource{bron.bib}

\begin{filecontents*}{bron.bib}
    @book{schouten2001,
        note  = {... De Natuur Als Beeld In Religie, Filosofie En Kunst eerste druk is een boek van M.G.C. Schouten uitgegeven bij Knnv Uitgeverij. 
        Er is tastbare natuur: de concrete werkelijkheid van aarde, rots, water, planten en dieren, die we kunnen zien, die we kunnen aanraken, van de landschappen waarin we kunnen wandelen. En er is ook ons beeld van de natuur. In onze beleving van de natuur maken we haar tot drager van onze mythen, symbolen en herinneringen, tot spiegel van onze emoties. ... $\backslash$n},
        author  = {Schouten, M. G. C.},
        booktitle = {De natuur als beeld in religie, filosofie en kunst},
        isbn  = {978-90-5011-206-4},
        title = {De natuur als beeld in religie, filosofie en kunst},
        %publisher = {KNNV Uitgeverij},
        url = {http://www.google.com},
        %2001
        year = {2001}
    }
\end{filecontents*}

\begin{document}
Sentence with \textcite{schouten2001}.
\printbibliography
\end{document}

It will work the same for your document class.

enter image description here

2
  • Thank You very much, it's working perfectly! Commented May 3, 2023 at 7:18
  • 1
    Happy to hear that! You can accept my answer by clicking the check mark at left.
    – BlueIris
    Commented May 3, 2023 at 9:54

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .