I would like to generate a global bibliography with all the cited entries.
Problem: the same document uses also small bibliographies for chapters with refsection. The final \printbiblioraphy does not print anything because all citations are enclosed by refsection.
How to generate the whole bibliography while keeping the partial ones? (i.e. print all references regardless if they are inside a refsection or not)
MWE:
\documentclass{book}
\usepackage{biblatex}
\addbibresource{biblio.bib}
\begin{document}
\chapter{Test Chapter One}
\begin{refsection}
\cite{goossens93}, \cite{lamport94}, \cite{rahtz89}
\printbibliography[heading=subbibliography]
\end{refsection}
\chapter{Test Chapter Two}
\begin{refsection}
\cite{greenwade93}, \cite{patashnik88}, \cite{knuth79}
\printbibliography[heading=subbibliography]
\end{refsection}
\printbibliography[title=The whole bibliography]
\end{document}
biblio.bib
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion A",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@article{greenwade93,
author = "George D. Greenwade",
title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year = "1993",
journal = "TUGBoat",
volume = "14",
number = "3",
pages = "342--351",
url=" www.ctan.org"
}
@book{knuth79,
author = "Donald E. Knuth",
title = "Tex and Metafont, New Directions in Typesetting",
year = "1979",
publisher = "American Mathematical Society and Digital Press",
address = "Stanford"
}
@book{lamport94,
author = "Leslie Lamport",
title = "Latex: A Document Preparation System",
year = "1994",
edition = "Second",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@misc{patashnik88,
author = "Oren Patashnik",
title = "{B}ib{T}e{X}ing. Documentation for General {B}ib{T}e{X} users",
year = "1988",
howpublished = "Electronic document accompanying BibTeX
distribution"
}
@techreport{rahtz89,
author = "Sebastian Rahtz",
title = "A Survey of {T}ex and graphics",
year = "1989",
institution = "Department of Electronics and Computer Science",
address = "University of Southampton, UK",
number = "CSTR 89-7"
}
\nocite{*}? – TeXnician Jun 08 '17 at 10:34nocitewould print also entries which are not cited but present in the .bib database. I just want the cited ones. – ppr Jun 08 '17 at 10:39