我正在使用模板 MDPI(多学科数字出版研究所 -http://www.mdpi.com/authors/latex) 我用葡萄牙语写文章,如何翻译表格、图表、附录、参考文献等自动生成的单词?
\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}
renew命令适用于表格、图表和附录,但不适用于摘要、关键词、缩写和参考文献。
答案1
您可以尝试改变包的顺序babel
:
\usepackage[USenglish,brazil]{babel}
babel
使用最后一种语言作为默认语言。