I am writing my cv and although I only want to print some of my @unpublished and @inproceedings entries in my bibliography, I do want to print all of my @article entries.
Is there any way in which I can \nocite all entries of a specific type (@article in this case)?
Consider that I have my entries in separate files depending on its type. Here is a MWE:
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{articles.bib}
\addbibresource{talks.bib}
\addbibresource{unpublished.bib}
\begin{document}
% How do I nocite all @article entries?
\nocite{<all @article entries>}
\nocite{sometalk, someothertalk}
\nocite{someunpublished, someotherunpublished}
% This should print all articles
\printbibliography[title=Articles, type=article]
% This should print sometalk and someothertalk
\printbibliography[title=Talks, type=inproceedings]
% This should print someunpublished and someotherunpublished
\printbibliography[title=Unpublished, type=unpublished]
\end{document}
