I had a working file with a natbib setup, but I encoutered difficulties citing in a footnote and it seemed more broadly that biblatex was better for my field. So I switched, and now my .tex file just can't seem to find my .bib file. I have also floated back and forth between certain Biber and Bibtex settings. After four hours of googling I am waving my white flag and crawling desperately for your help.
Here is my preamble:
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{fullpage}
\usepackage{amsmath}
\usepackage[style=authoryear]{biblatex}
\addbibresource{bibston.bib}
\usepackage{url}
\usepackage{textcomp}
As for my errors, it tells me that all of my citations are undefined, and at the end it says:
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) "International RBC"
(biblatex) and rerun LaTeX afterwards.
Package logreq Info: Writing requests to '"International RBC".run.xml'.
\openout1 = `"International RBC.run.xml"'
Thank you so much for your help.
George
Bernard: In TexMaker, I do PDFLatex, Biblatex, and then a last one/two PDFLatex's. Is this correct?
– goverton2 Dec 20 '15 at 23:07biber(although you can use bibex if you specify it. withnatbib, you have to usebibtex. So in your case, the workflow to compile your document should bepdflatex>biber>pdflatex>pdflatex. biber if the program that will compile your bibliography. Is this what you are doing? – ArTourter Dec 21 '15 at 01:06natbibtobiblatex, Question mark instead of citation number for general information on running BibTeX and Biber. Finally, read Biblatex with Biber: Configuring my editor to avoid undefined citations on how to make your editor run Biber. – moewe Dec 21 '15 at 11:11pdflatex test,biber test,pdflatex test,pdflatex testin that order, assuming your file is calledtest.tex. If you get any warnings or errors make note of those from the last pdfLaTeX run and the Biber run. You should also refer to the.blgand.logfiles after all those runs. – moewe Dec 21 '15 at 11:16