IEEEtran 作者区块

IEEEtran 作者区块

我曾多次使用以下 authorblock。但现在它不起作用,我不知道我做了什么更改。

提前谢谢你,伊格纳西奥

\documentclass[conference,a4paper]{IEEEtran}
\ifCLASSINFOpdf
\usepackage[pdftex]{graphicx}
\else
\usepackage[dvips]{graphicx}
\fi
\usepackage{caption}
\usepackage{subfig}
\usepackage{amsmath}
\usepackage{array}

\begin{document}
\title{Conference title.}
\author{
\authorblockN{Author 1 {1}, Author 2 {2}.}
\authorblockA{\emph{[email protected]  [email protected]}}
\vspace{0.05in}
\authorblockA{{1} University 1.}
\authorblockA{{2} University 2.}
\vspace{0.05in}
}
\maketitle
\begin{abstract}
 Bla
\end{abstract}
{\smallskip \IEEEkeywords words}
\IEEEpeerreviewmaketitle
\section{Introduction}

Bla

\end{document}

答案1

您已修改对作者的引用并删除IEEE

\documentclass[conference,a4paper]{IEEEtran}
\ifCLASSINFOpdf
\usepackage[pdftex]{graphicx}
\else
\usepackage[dvips]{graphicx}
\fi
\usepackage{caption}
\usepackage{subfig}
\usepackage{amsmath}
\usepackage{array}

\begin{document}
\title{Conference title.}
\author{
\IEEEauthorblockN{Author 1\IEEEauthorrefmark{1}, Author 2\IEEEauthorrefmark{2}}
%\vspace{0.05in}
\IEEEauthorblockA{\IEEEauthorrefmark{1}University 1. \emph{[email protected]}}
\IEEEauthorblockA{\IEEEauthorrefmark{2}University 2. \emph{[email protected]}}
%\vspace{0.05in}
}
\maketitle
\begin{abstract}
 Bla
\end{abstract}
{\smallskip \IEEEkeywords words}
\IEEEpeerreviewmaketitle
\section{Introduction}

Bla

\end{document}

输出:

在此处输入图片描述

相关内容