Background: I'm writing a paper, in which I study a corpus of references (they are all entries matching a particular keyword on Scopus).
I have thus two .bib files: the one I use all the time with every papers I've ever read (main.bib), and the one with all extracted entries (extracted.bib). Of course, I don't want to merge them.
Question: How to generate a bibliography with all entries of extracted.bib only?
Since I know how to create several bibliographies using bibunits, and how to use BibTeX to make a list of references without having citations in the body of the document; I think my real question is how to \nocite all entries of one .bib file only?
(Since extracted.bib has 100+ entries, \nocite-ing each entry is not an option (-;).
\nociteonly one.bibfile if you want to use multiple files in the same refsection. See \nocite{*} for single bibdatasources with biblatex/biber, issue #228 at thebiblatexbug tracker, as well as Is it possible to add entries to the bibliography based on keyword using Biblatex/Biber and within the document code? – moewe Apr 21 '16 at 14:16\begin{refsection}[main.bib] <whole paper> \printbibliography \end{refsection}\begin{refsection}[extracted.bib] \nocite{*} \printbibliography \end{refsection}works (I've used a dummy databas)! Thx(-:! Do you want to answer, or we flag my question as duplicate of \nocite{*} for single bibdatasources with biblatex/biber? – ebosi Apr 21 '16 at 14:39refsections with designated files. – moewe Apr 21 '16 at 14:41