如何在latex中写代码,使得作者的信息显示在名字下一行,而不是脚注的形式出现
时间: 2024-11-27 08:24:32 浏览: 11
要在LaTeX中将作者的信息(如机构和电子邮件地址)显示在名字下方,而不是以脚注形式出现,可以使用`IEEEtran`类提供的特殊命令。具体方法如下:
### 使用 `IEEEtran` 类
1. **导入 `IEEEtran` 文档类**:确保你在文档的开头已经指定了 `IEEEtran` 类,并且选择了合适的选项,例如 `conference` 或 `journal`。
```latex
\documentclass[journal]{IEEEtran}
```
2. **使用 `\IEEEauthorblockN` 和 `\IEEEauthorblockA` 命令**:这两个命令分别用于设置作者的名字和联系信息。
```latex
\author{
\IEEEauthorblockN{Author Name}
\IEEEauthorblockA{
Department of Electrical Engineering\\
University of Example\\
City, Country\\
Email: email@example.com
}
}
```
3. **完整示例**:
```latex
\documentclass[journal]{IEEEtran}
\title{Sample Article Using IEEEtran Class}
\author{
\IEEEauthorblockN{Author Name}
\IEEEauthorblockA{
Department of Electrical Engineering\\
University of Example\\
City, Country\\
Email: email@example.com
}
}
\begin{document}
\maketitle
\begin{abstract}
This document describes the most common article elements and how to use the IEEEtran class with LATEX to produce files that are suitable for submission to the IEEE.
\end{abstract}
\section{Introduction}
This file is intended to serve as a “sample article file” for IEEE journal papers produced under LATEX using IEEEtran.cls.
\end{document}
```
### 解释
- **`\IEEEauthorblockN`**:用于指定作者的名字。
- **`\IEEEauthorblockA`**:用于指定作者的联系信息,包括部门、机构、城市、国家和电子邮件地址。
- **`\maketitle`**:生成标题、作者和摘要部分。
通过这种方式,作者的信息会直接显示在名字的下方,而不会以脚注的形式出现在页面底部。这在许多期刊和会议论文中是常见的格式。
阅读全文