I am writing a large report in TeXshop and have decided to use subfiles for each chapter, and have created a .bib bibliography. However, now that I have separated the chapters into subfiles, the footcites I was using are no longer working (e.g. they put a footnote that says "Key", instead of with the actual citation).
Is there a way to only address the bibliography in my main.tex, rather than having to run through it in every subfile? Or am I better off switching to \include or just keeping everything in one long document?
%mybib.bib:
@book{Key,
title={Nothing},
author={Nobody},
year={2013},
publisher={Springer}
}
%chapter1.tex:
\documentclass[main.tex]{subfiles}
\begin{document}
\chapter{Chapter 1}
I would like a citation in the footnotes, so I try using \footcite{Key}
\end{document}
%main.tex:
\documentclass{report}
\usepackage{subfiles}
\usepackage{biblatex-chicago}
\addbibresource{mybib.bib}
% !BIB TS-program = biber
\begin{document}
\tableofcontents
\subfile{Chapter1}
\printbibliography
\nocite{*}
\end{document}
biblatexcitations should work absolutely fine even if you split your document up into sub files. This makes me think something more is going on here. Please try and reproduce the problem in an MWE and make sure to also post the relevant warnings and errors from the log files. – moewe Feb 26 '16 at 06:01subfilesandbiblatexcan work together smoothly. – moewe Feb 26 '16 at 17:30