I assume the bibliography only shows the cited sources, so the real root of the problem is with the citation, but I'm not sure. This is what I have in my latex document now.
.
.
.
\usepackage[sorting=ydnt,bibstyle=ieee]{biblatex}
\addbibresource{uni.bib}
\pagenumbering{plain}
\makeindex
\begin{document}
.
.
.
miscellaneous citation \parencite[see][page 72]{example}
\newpage
\pagenumbering{roman}
\setcounter{page}{1}
\fancyhf{}
\fancyhead[LE,RO]{Bibliography}
\fancyfoot[LE,RO]{\thepage}
\printbibheading
\printbibliography
\end{document}
And in uni.bib (same directory)
@book{example,
author = {Author, Example},
title = {Example Book},
year = {2020},
PUBLISHER = {Example Publisher}
}
This seems like it should work, but the citation reads "miscellaneous citation [example]" and the bibliography section is just an otherwise empty page that says "Bibliography". Note that "\addbibresource{uni.bib}" is shown in bold and entirely yellow (my colour for latex commands). This is probably something pretty obvious, but it still eludes me. I've looked through forums and found nothing that worked, and so I come here seeking your help.
\printbibheadingwhen you have\printbibliography. The symptoms you describe so far suggest that you failed to run Biber. The link in leandriis' comment above explains why you need to do that. https://tex.stackexchange.com/q/154751/35864 explains what you can do to make your editor run Biber for you. – moewe Mar 07 '20 at 16:40pages" in\parencite[see][page 72]{example}. Usually\parencite[see][72]{example}is better as it automatically includes a page prefix depending on your style. – moewe Mar 07 '20 at 16:44.blg(Biber's log file) and the.logfile here. – moewe Mar 11 '20 at 22:06