The following MWE compiles on Overleaf, but it does not on my local MiKTeX installation. It works without the \newrefsection commands. With them, I get undefined citation warnings as well as the warning "Please (re)run BibTeX on the file(s): (biblatex) minimal1-blx (biblatex) minimal2-blx (biblatex) and rerun LaTeX afterwards." Here, minimal.tex was the file name of the MWE on my machine. How do I run BibLaTeX on those files and how can I automate it so that it works for any number of sections?
\documentclass{beamer}
\usepackage[backend=bibtex, style=authoryear]{biblatex}
\begin{filecontents}{biblio.bib}
@article{A:2022,
author = {A},
title = {xx},
year = {2022},
journal = {zz}}
@article{B:2022,
author = {B},
title = {yy},
year = {2022},
journal = {zz}}
\end{filecontents}
\addbibresource{biblio.bib}
\begin{document}
\section{First Section}\newrefsection
\begin{frame}
\textcite{A:2022}
\end{frame}
\begin{frame}
\printbibliography[heading=none]
\end{frame}
\section{Second Section}\newrefsection
\begin{frame}
\textcite{B:2022}
\end{frame}
\begin{frame}
\printbibliography[heading=none]
\end{frame}
\end{document}
backend=bibtex? Without this, your code would use the much more powerful and modern biber. – samcarter_is_at_topanswers.xyz Jul 10 '22 at 10:54biblatexfeatures (not only data model customisation, but also full Unicode support) if you use Biber. – moewe Jul 10 '22 at 11:37biblatexis not the main factor when it comes to compatibility with classical BibTeX styles. The standard data model is the same whether you usebiblatexwith Biber or BibTeX. For the most part.bibfiles for classical BibTeX styles will work OK withbiblatex, but you may only be able to usebiblatex's potential to the fullest if you optimise your.bibfiles. ... – moewe Jul 10 '22 at 18:06urlfield, so there people often usehowpublishedas workaround.) – moewe Jul 10 '22 at 18:06