[Tex/LaTex] Is it possible to use biblatex instead of BibTeX for MDPI paper

biblatexbibliographiesbibtexmdpi

The citation style guide of MDPI suggests to use BibTeX for citations and the bibliography (see: https://www.mdpi.com/authors/references).
Is it also possible to use biblatex instead of BibTeX for an MDPI paper?

Since biblatex is an alternative of BibTeX, it would be interesting to know.

Best Answer

Avoid going against the express advice of the venue to which you want to submit.

The guidelines from https://www.mdpi.com/authors/references mentioned in the question are

For LaTeX users we strongly recommend to prepare references with BibTeX. If references are prepared manually, the authors should check them for completeness and correctness.

Knowing the differences between biblatex and BibTeX for the citation workflow (see Biblatex: submitting to a journal) that already strongly suggests biblatex is out (even if you use BibTeX instead of Biber as backend).

A search for MDPI LaTeX template leads to https://www.mdpi.com/authors/latex where one can download a .zip file containing template.tex showcasing manual thebibliography and BibTeX, but not biblatex.

%=====================================
% References, variant A: internal bibliography
%=====================================
\reftitle{References}
\begin{thebibliography}{999}
% Reference 1
\bibitem[Author1(year)]{ref-journal}
Author1, T. The title of the cited article. {\em Journal Abbreviation} {\bf 2008}, {\em 10}, 142--149.
% Reference 2
\bibitem[Author2(year)]{ref-book}
Author2, L. The title of the cited contribution. In {\em The Book Title}; Editor1, F., Editor2, A., Eds.; Publishing House: City, Country, 2007; pp. 32--58.
\end{thebibliography}

% The following MDPI journals use author-date citation: Arts, Econometrics, Economies, Genealogy, Humanities, IJFS, JRFM, Laws, Religions, Risks, Social Sciences. For those journals, please follow the formatting guidelines on http://www.mdpi.com/authors/references
% To cite two works by the same author: \citeauthor{ref-journal-1a} (\citeyear{ref-journal-1a}, \citeyear{ref-journal-1b}). This produces: Whittaker (1967, 1975)
% To cite two works by the same author with specific pages: \citeauthor{ref-journal-3a} (\citeyear{ref-journal-3a}, p. 328; \citeyear{ref-journal-3b}, p.475). This produces: Wong (1999, p. 328; 2000, p. 475)

%=====================================
% References, variant B: external bibliography
%=====================================
%\externalbibliography{yes}
%\bibliography{your_external_BibTeX_file}

Furthermore mdpi.cls loads natbib and uses \bibliographystyle, and is therefore completely incompatible with biblatex.

On the technical side it might be possible to patch the mdpi.cls class in such a way that it can be used with biblatex even though it loads natbib. But that requires dangerous manual interventions, see Is it possible to load biblatex with a class that has already loaded natbib?, biblatex instead of natbib in elsarticle, how?, How to use biblatex with Wiley templates?, elsarticle.cls and multiple bibliographies. And it is very doubtful that the journal will be happy with the required changes to their workflow should you submit with biblatex.


I'd like to echo Paul Stanley's comment. For most intents and purposes BibTeX (which has been stable for years) works absolutely fine. There is some fancy stuff only biblatex can do (or at least, can do easily), but in the STEM fields BibTeX still provides almost everything people need. The relative stability of BibTeX and its workflow mean that BibTeX is often much more compatible across systems than biblatex, which is actively being developed.

Related Question