BibLaTeX : définir un filtre avec un mot-clé contenant un espace.
\documentclass{article}
\begin{filecontents}{bib}
\begin{filecontents*}{\jobname.bib}
@online{apqcAPQCProcessClassification2025,
title = {{{APQC Process Classification Framework}} (PCF) – Cross-Industry - {{PDF Version}} 6.1.1},
author = {{APQC}},
keywords = {business {{business process modelling,framework,process}
modelling}}
}
\end{filecontents}
\end{filecontents*}
\usepackage{biblatex}
\addbibresource{\jobname.bib}
% Define biblatex filter.
\defbibfilter{si}{ keyword={cartography} or keyword={{business process modelling}}}%
\begin{document}
\nocite{*}
\printbibliography[title={Système d'information},filter={si}]%
\end{document}
\usepackage{biblatex}
% Define biblatex filter.
\defbibfilter{si}{ keyword={cartography} or keyword={{business process modelling}}}%
\begin{document}
\printbibliography[title={Système d'information},filter={si}]%
\end{document}