Biblatex : ajout et suppression de champs
Je dois afficher des références bibliographiques dans le style APA.
Aussi, le champs urldate doit être afficher, affiché, mais ce n'est pas le cas.
Et le champs annotation est afficher, affiché, mais il ne le faut pas.
Merci de vos suggestions.
\documentclass{book}
\begin{filecontents*}{\jobname.bib}
@misc{aubineau_cloud_2021,
title = {Cloud Storage},
author = {Aubineau, Bernard and Maury, Jean-Claude and Cl\'ement, Alain},
date = {2021-04-26},
publisher = {{Techniques de l'ing\'enieur}},
url = {https://www.techniques-ingenieur.fr/base-documentaire/technologies-de-l-information-th9/gestion-de-contenus-numeriques-42311210/cloud-storage-h6010/},
urldate = {2023-06-08},
langid = {french},
annotation = {R\'ef. : H6010 V1}
}
\end{filecontents*}
% Bibliography
\usepackage{csquotes}
\usepackage[%
backend=biber,
sorting=nyt,%
block=ragged,%
style=apa%
]{biblatex}%
\DeclareLanguageMapping{french}{french-apa}
\addbibresource{\jobname.bib}
\begin{document}
\chapter{test}
\nocite{*}
\printbibliography
\end{document}