I'm trying to merge the three chapters of my PhD thesis using \subfile, and I want the .bib files to be added at the end of each chapter. I'm trying with only one .bib file first and it doesn't work, ie. the output doesn't take into account my input style=numeric and doesn't print any bibliography (it just prints \biblio_chap1 at the end of the document !).
\documentclass[a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{subfiles}
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{/biblio_chap1.bib}
\title{PhD thesis}
\author{Anaïs}
\date{}
\begin{document}
\chapter*{Acknowledgements}\subfile{Acknowledgements}
\chapter*{Introduction}\subfile{Intro}
\chapter{Paper 1}\subfile{chapter_1}
\printbibliography{/biblio_chap1}
\end{document}
And here is a minimal code for the chapter_1:
\documentclass{subfiles}
\begin{document}
\section{Introduction}
(CCRIF, 2017)\cite{ccrif} GDP\footnotemark{GDP 2016}
\end{document}
and for the .bib file
@techreport{ccrif,
title = {CCRIF SPC Annual Report 2016-2017},
author = {},
group = {Caribbean Catastrophe Risk Insurance Facility},
year = {2017},
institution = {CCRIF SPC},
address = {},
month = {}
}
I have changed the execution mode accordingly from bibtex.exe to biber.exe and I compile using PDFTeXify. The bibliography works fine in a separate article, with the \bibliography command.
LaTeXifywhich adds some menu items and icons for the toolbar, among which a Biber menu/icon. – Bernard Feb 22 '19 at 23:50LaTeXifymacro? – Anais Feb 22 '19 at 23:54Execution Modes(Options menu)? – Bernard Feb 23 '19 at 00:00LaTeXifymacro. I have also played with the options ofExecution Modesto swith from bibtex.exe to biber.exe. Now when I run Bibtex (after Pdflatex once) I get an error messageCannot find '/biblio_chap1.bib'!– Anais Feb 23 '19 at 10:30\footnotemark) – Anais Feb 23 '19 at 10:57Execution Modewith LaTeXifysince it adds aBiberitem in theTeXmenu (shortcut: Ctrl+Alt+B) and aBiber` icon in the toolbar. – Bernard Feb 23 '19 at 10:58\footnotemarkis unrelated to biblate+biber (normally). Again: please post a minimal example reproducing the problem. – Bernard Feb 23 '19 at 11:00LaTeXifyhas not added any icon in the toolbar... I have executed the macro script properly. I add a minimal code in my question – Anais Feb 23 '19 at 11:01