I have a bib file, say by the name of "mybib", for which I have cited hundreds of times in this document. However, it was brought to my attention that I need to change the style to Chicago, so I attempted to do so in an ill-informed manner.
I changed the bibliography style below (which was originally just set as natbib) to biblatex-chicago. I then undid that change and am now receiving issues from compiling my bibfile stating that it finds no \citation commands, no \bibdata command and no \bibstyle command. In my original document I have the following:
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{bm}
\usepackage{mathtools}
\usepackage{cancel}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{pdfpages}
\usepackage{float}
\usepackage{breqn}
\usepackage{bbm}
\usepackage{cleveref}
\usepackage[authoryear]{natbib}
\begin{document}
blah blah blah...
\newpage
\nocite{*}
\bibliographystyle{plainnat}
\bibliography{mybib}
\end{document}
.aux,.bbl,.bcf, ...) and recompile from scratch with LaTeX, BibTeX, LaTeX, LaTeX (here "LaTeX" can be replaced with your favourite flavour of LaTeX: pdfLaTeX, LuaLaTeX, XeLaTeX, ...). The code as shown should in principle work. – moewe May 25 '20 at 19:56\refs to\labels are resolved via the.auxfile to make sure you can\refa\labeleverywhere and not only after it was set. With BibTeX/biblatexthe.bblfile contains the bibliography data in LaTeX-readable format. – moewe May 26 '20 at 05:14\labeland\refand also touches the role of the.auxfile there. https://tex.stackexchange.com/q/63852/35864 explains the basics of bibliographies with BibTeX/biblatexand mentions.bblfiles. – moewe May 26 '20 at 05:17