[Tex/LaTex] How to choose a Journal name in MDPI LaTeX template

journal-publishingmdpitemplates

At first, I want to clarify that this question is not related to the bibliography or references.

I've downloaded the latex template of MDPI.

I am able to work with the LaTeX template and my journal manuscript is ready. The only problem is I'm unable to edit the footnote where it says Submitted to Journal Not Specified, pages…

I know that the MDPI may edit it themselves after I submit the manuscript. However, I want to submit it as a perfectly formatted manuscript. I tried to search the footnotes keyword in all the available .tex files (template.tex, journalnames.tex, and mdpi.cls), however, it went on vain. I want to submit my manuscript to the Sensors and I can see its name and other details in the journalnames.tex file. However, I could not edit the footnotes for the Sensors.

Best Answer

You have to pass the corresponding option to the \documentclass. You said yourself you found the entry of the Sensors journal in the journalnames.tex file:

\DeclareOption{sensors}{\gdef\@journal{sensors}\gdef\@journalshort{Sensors}\gdef\@journalfull{Sensors}\gdef\@doiabbr{s}\gdef\@ISSN{1424-8220}}

so you can see that the declared option name is sensors (all lower case), so you have to use:

\documentclass[sensors]{mdpi}