Filter Bibliography – Use Multiple Keywords in \printbibliography to Filter the Bibliography

biblatexkeywords

Is there a way to filter \printbibliography using multiple keywords that are present in the .bib file entries ?

For exemple, I'd like the command \printbibliography[keyword={key_1,key_2,key_3}] to print ONLY the entries that combines the keywords like key_1 AND key_2 AND key_3.

Best Answer

The right syntax is:

\printbibliography[keyword={key_1}, keyword={key_2}, keyword={key_3}]

And for omitting those specific keywords the syntax is:

\printbibliography[notkeyword={key_1}, notkeyword={key_2}, notkeyword={key_3}]


Same works with category and notcategory.

Related Question