All of the threads I can find about Citations and LaTeX are about citing directly in LaTeX. I'm using a template to convert Obsidian markdown files to PDF via LaTeX (and Pandoc).
Is there a way to e.g. use \cite{@citekey} from Zotero so LaTeX automatically handles citations?
So that I'd write text in Obsidian, "quote bla bla"^[@Smith2022, 15] and it gets rendered via LaTeX and the Libary.bib file as something like "quote bla bla"^[Smith 2022, 15] (with "^[]" being a footnote here).
Optimally, this would then also create a full note in Chicago author-date format in the Bibliography section. Similar to how the Microsoft Word plugin that creates a bibliography from used citations.
Edit: My test .latex file:
\begin{filecontents}{foo.bib}
@article{foo,
author={dingle},
tile={Foo is funny},
year={2022},
}
@article{anotherkey,
author = {Writer, A.},
year = {2011},
title = {Headline},
publisher = {Publication},
}
\end{filecontents}
\documentclass{article}
% Load BibLaTeX and set the style to Author-Year
\usepackage[style=authoryear]{biblatex}
% Tell BibLaTeX to use the file example.bib for the bibliography database
\addbibresource{foo.bib}
\begin{document}
Cite a reference \cite[]{foo}
Force a citation to be made via footnote \footcite{anotherkey}
\printbibliography
\end{document}
foo.bib is in the same folder as my .latex file, and currently includes:
@article{foo,
author={foo},
tile={Foo is funny},
year={2022},
}
@article{anotherkey,
author = {Writer, A.},
year = {2011},
title = {Headline},
publisher = {Publication},
}
@ARTICLE{Gill,
author = "A. E. Gill",
title = "Some Simple Solutions for Heat-Induced Tropical Circulation",
journal = "Quart. J. R. Met. Soc.",
volume = 106,
year = 1980,
pages = "447-462",
}

I've tried following along this post because it seems similar to your solution: https://andreasmhallberg.github.io/managing-citations-in-latex/
But I've still got nothing. I'll edit my post to add the entirety of my current test .latex file. Thank you so much for your help!
– ReaderGuy42 Dec 07 '22 at 11:13LaTeX Warning: Empty bibliography on input line 30.`
Does that help?
– ReaderGuy42 Dec 07 '22 at 12:18