Connect Zotero to BlaBLaTeX
In BlaBLaTeX, open Integrations, then Zotero. Sign in to your Zotero account and authorize BlaBLaTeX to access your library.
Import your Zotero library into a LaTeX project in BibTeX or BibLaTeX format.
Zotero lets you collect and organize bibliographic references. BlaBLaTeX lets you connect a Zotero library to a LaTeX project and import it as a .bib file.
The file can be created in BibTeX or BibLaTeX format. References remain managed in Zotero and can then be updated in the project using Refresh.
In BlaBLaTeX, open Integrations, then Zotero. Sign in to your Zotero account and authorize BlaBLaTeX to access your library.
Once your Zotero account is connected, the library can be added directly from your LaTeX project.
Open Add files, then select From Zotero.
Select your Zotero library and specify the name of the .bib file.
Select BibTeX or BibLaTeX, then create the file.
Add files
Import a BibTeX file from your Zotero account
The available format can be BibTeX or BibLaTeX. Your personal library and the Zotero group libraries accessible to your account can be used.
Each reference in the zotero.bib file has a
citation key. This key can be used with \cite{...} in the LaTeX document.
zotero.bib file@book{knuth_introduction_2026,
title = {Introduction to {LaTeX} with {BlaBLaTeX}},
author = {Knuth, Donald},
year = {2026},
}
\documentclass{article}
\begin{document}
Donald Knuth \cite{knuth_introduction_2026}.
\bibliographystyle{plain}
\bibliography{zotero}
\end{document}
In this example, knuth_introduction_2026 is the
citation key found in zotero.bib. The bibliography
is generated from this file when the document is compiled.
References in the imported file are managed in Zotero. After making changes to your library, open the .bib file in BlaBLaTeX and click Refresh.
The file is then updated from Zotero. Recompile the document to include the updated references.
@book{knuth_introduction_2026,
title = {Introduction to {LaTeX} with {BlaBLaTeX}},
author = {Knuth, Donald},
year = {2026},
}
To learn more about Zotero and bibliographic reference management, see the official documentation.