I created a .bib file for my footnotes and bibliography but everytime I want to cite an item in the footnote the bibliographic information is not rendered, only the key.
Here is my MWE:
\documentclass[letterpaper,12pt]{book}
\usepackage[hmargin={1in},vmargin=1in]{geometry}
\usepackage{polyglossia}
\usepackage{fontspec}
\usepackage{biblatex}
\usepackage{csquotes}
\addbibresource{diss.bib}
\setmainlanguage[variant=us]{english}
\setmainfont{Times New Roman}
\begin{document}
\chapter{Palaeographical Profile}
\section*{Introduction}
Blah blah
\section*{Style of the Hand}
MOre blah blah Bob Lob Law\footcite{metzger2005text}
\end{document}
The following is my .bib file:
@book{metzger2005text,
title={The text of the New Testament: its transmission, corruption, and restoration},
author={Metzger, Bruce Manning and Ehrman, Bart D},
year={2005},
publisher={Oxford University Press}
}
\addbibresource{diss.bib}means the bib file is in the same directory, you can put a full path to the file if it is somewhere else, or copy the bib file there. – David Carlisle Jan 21 '22 at 22:29C:/Users/etcbut relative paths the to the main tex file (e.g.../DisTeX/diss.bib) and remember that life is easier without spaces in directory and file names. Note also that I typed / instead of \ in the paths. – Fran Jan 21 '22 at 23:21