Following various examples, here here my current (relevant) code:
in %Preamble%
\usepackage[backend=biber, style=numeric, sorting=none, defernumbers=true]{biblatex}
\addbibresource{Pages/bibliography.bib}
And at the vary end of the document: \nocite{*} \chapter{Bibliography} \printbibliography %Prints bibliography
Bibliography is not showing, what am I missing or doing wrong?
I trimmed down and anonimsed the code for testing, still not working:
File main.tex
%Preamble
\documentclass[a4paper,french,oneside,openright]{book}
\usepackage[backend=biber, style=numeric, sorting=none, defernumbers=true]{biblatex}
\addbibresource{Pages/bibliography.bib}
\begin{document}
\nocite{*}
\input{Pages/xx-Bibliography.tex}
\end{document}
File xx-Bibliography.tex
\chapter{Bibliography}
\printbibliography %Prints bibliography
or
\chapter{Bibliography}
\printbibliography
File Pages/bibliography.bib : sample found on https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004"
}
@book{latexcompanion,
author = "Michel Goossens and Frank Mittelbach and Alexander Samarin",
title = "The \LaTeX\ Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@misc{knuthwebsite,
author = "Donald Knuth",
title = "Knuth: Computers and Typesetting",
url = "http://www-cs-faculty.stanford.edu/~{}uno/abcde.html"
}
Also tried Pages/xx-Bibliography.tex:
\chapter{Bibliography}
\printbibliography[keyword={physics},heading=none,resetnumbers=true]
\nocite{*}command just after the\begin{document}. If you also want to see specific reference documents without citing you may use\nocite{}like this:\nocite{<your-key-word>}. – Onur Gürdoğan Jun 11 '21 at 06:19\usepackage[backend=biber, style=numeric, sorting=none, defernumbers=true]{biblatex}. – Onur Gürdoğan Jun 11 '21 at 06:22\printbibliographylike this:\printbibliography[keyword={<your-key-word>},heading=none,resetnumbers=true]. Because with all these configuration I have a working copy.. – Onur Gürdoğan Jun 11 '21 at 06:25\printbibliography[keyword={physics},heading=none,resetnumbers=true]– TTT Jun 11 '21 at 06:29\printbibliographyfirst before you worry about advanced stuff like\printbibliography[keyword={physics},heading=none,resetnumbers=true]. Unrelated to your problem, but you shouldn't need to\chapter{Bibliography}before\printbibliography.biblatexautomatically typesets an appropriate bibliography heading. – moewe Jun 11 '21 at 07:02