The journal I am submitting to wants datasets to be listed in the reference as
[dataset] Authors; Year; Dataset title; Data repository or archive; Version (if any); Persistent identifier (e.g. DOI),
where "[dataset]" at the beginning is literal. The type of other references (articles, books, etc) does not need to be prefixed in this way.
biblatex has a @dataset entry type, and I have gotten close to the target using this:
\documentclass{article}
\usepackage[style=apa]{biblatex}
\begin{filecontents}{\jobname.bib}
@dataset{test,
author = {The Author},
title = {Very Big and Important Dataset},
year = {2020},
doi = {XX.XXXX/XXX.XXXX.XXXXXXXX},
publisher = {Dryad}}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Text \parencite{test}.
\printbibliography
\end{document}
This looks pretty good, but how can I get the [dataset] added to the beginning?

![[Dataset] Author, T. (2020). Very big and important dataset. Dryad. https://doi.org/XX.XXXX/XXX.XXXX.XXXXXXXX](../../images/8968dd58e68195729963f46ee3a90f68.webp)
biblatexsolution, double check with the journal that they can acceptbiblatexsubmissions.biblatexrequires a different workflow than classical BibTeX orthebibliographyand may not be supported by all publishers. See https://tex.stackexchange.com/q/12175/35864 – moewe Mar 13 '20 at 14:44