Format for creating submissions to Multidisciplinary Digital Publishing Institute (MDPI) journals. Adapted from https://www.mdpi.com/authors/latex.
Usage
mdpi_article(
...,
keep_tex = TRUE,
latex_engine = "pdflatex",
pandoc_args = NULL,
citation_package = "natbib"
)
mdpi_journals()
Arguments
- ...
Additional arguments to
rmarkdown::pdf_document()
- keep_tex
Keep the intermediate tex file used in the conversion to PDF. Note that this argument does not control whether to keep the auxiliary files (e.g.,
.aux
) generated by LaTeX when compiling.tex
to.pdf
. To keep these files, you may setoptions(tinytex.clean = FALSE)
.- latex_engine
LaTeX engine for producing PDF output. Options are "pdflatex", "lualatex", "xelatex" and "tectonic".
- pandoc_args
Additional command line options to pass to pandoc
- citation_package
The LaTeX package to process citations,
natbib
orbiblatex
. Usedefault
if neither package is to be used, which means citations will be processed via the commandpandoc-citeproc
.
Details
Possible arguments for the YAML header are:
title
title of the manuscriptauthor
list of authors, containingname
,affil
, andorcid
(optional)affiliation
list containingnum
,address
, andemail
for definingauthor
affiliationsauthorcitation
string with last name and first intial of authors as expected to be shown in a referencefirstnote
can includefirstnote
througheightnote
that correspond to footnote marks inaffil
correspondence
contact information of the corresponding authorjournal
short name (case sensitive) of the journal (see list in template or withmdpi_journals()
).type
usually "article" but see template for optionsstatus
usually "submit"simplesummary
optional, may depend on specific journalabstract
abstract, limited to 200 wordskeywords
3 to 10 keywords seperated with a semicolonacknowledgement
acknowledgement backmatter (optional)authorcontributions
report authorship contributions (optional)funding
research funding statementinstitutionalreview
IRB statements (optional)informedconsent
Informed consent statements for human research (optional)dataavailability
Links to datasets or archives (optional)conflictsofinterest
Conflict of interest statement (see journal instructions)sampleavailability
Sample availability statement (optional)supplementary
Supplementary data statement, see template for example (optional)abbreviations
list of abbreviations containingshort
andlong
bibliography
BibTeX.bib
fileappendix
name of appendix tex fileendnote
boolean, ifTRUE
will print list of endnotes if included in text (optional)header-includes
: custom additions to the header, before the\begin{document}
statementinclude-after
: for including additional LaTeX code before the\end{document}
statement