0

I'm using the template MDPI (Multidisciplinary Digital Publishing Institute - http://www.mdpi.com/authors/latex) and I'm writing the article in Portuguese, how can I translate the automatic words such as: table, figure, appendix, references, etc.?

\documentclass[journal,article,submit,moreauthors,pdftex,10pt,a4paper,brazil]{mdpi} 

\usepackage[brazil,USenglish]{babel}


\abstract{...}

\keyword{...}


\begin{document}

\renewcommand{\tablename}{Tabela}

\renewcommand{\figurename}{Figura}

\renewcommand{\appendixname}{Apêndice}

\renewcommand{\abstractname}{Resumo}
.
.
.
\abbreviations{}

\externalbibliography{yes}

\bibliography{mybib}

\appendix

\end{document}

The renewcommand works for the tables, figures and appendix, but didn't work in the case of the abstract, keywords, abbreviations and references.

Bordaigorl
  • 15,135

1 Answers1

1

You can try changing the order of the babel package:

\usepackage[USenglish,brazil]{babel}

babel uses the last language as its default.