To elaborate a bit more, let's say I have a tex file like this:
\documentclass{article}
\usepackage[style=ieee,backend=biber]{biblatex}
\addbibresource{references-global.bib}
\begin{document}
\cite{myref1,myref2}
\printbibliography
\end{document}
In its folder, there is no references-global.bib file, so naturally I have an error when biber is called:
ERROR - Cannot find 'references-global.bib'!
My question therefore is: can I place this references-global.bib in a location where it would be found by biber regardless of where my tex file is located (much like a package or so)
references-global.bib? E.g.\addbibresource{C:\\User\blah\references-global.bib}? – confusedandbemused Jun 26 '19 at 14:57