两种语言的标题

两种语言的标题

我需要在论文中添加两个标题,一个用我的母语,另一个用英语。两个标题都会有较长的副标题,但 \maketitle 应该只有一个作者。

我不知道这是不是一件微不足道的事情,但事实是我没有找到任何适合我的问题的答案。

这就是我想要实现的目标:

在此处输入图片描述

答案1

IEEEtran不提供任何字幕和多语言标题功能。但是,您可以\title像这样将此信息放入命令中。

\title{%
  Titulo do Artigo em Português\\
  {\Large Sub-título se necessarário em Português}\\[1ex]
  \itshape Paper Title in English\\
  {\Large Subtitle if needed in English}%
}

在此处输入图片描述

\documentclass[10pt,a4paper]{IEEEtran}
\usepackage[utf8]{inputenc}
\begin{document}
\title{%
Titulo do Artigo em Português\\
  {\Large Sub-título se necessarário em Português}\\[1ex]
  \itshape Paper Title in English\\
  {\Large Subtitle if needed in English}%
}
\author{S.O.Mebody}
\maketitle
\end{document}

相关内容