【Latex笔记】标题页

整体结构

模板结构如下:

\documentclass{book}
% 导言区,加载宏包和各项设置,包括参考文献、索引等
\usepackage{makeidx} % 调用makeidx 宏包,用来处理索引
\makeindex % 开启索引的收集
\bibliographystyle{plain} % 指定参考文献样式为plain
\begin{document}
\frontmatter % 前言部分
\maketitle % 标题页
\include{preface} % 前言章节preface.tex
\tableofcontents
\mainmatter % 正文部分
\include{chapter1} % 第一章chapter1.tex
\include{chapter2} % 第二章chapter2.tex
...
\appendix % 附录
\include{appendixA} % 附录A appendixA.tex
...
\backmatter % 后记部分
\include{prologue} % 后记prologue.tex
\bibliography{books} % 利用BibTeX 工具从数据库文件books.bib 生成参考文献
\printindex % 利用makeindex 工具生成索引
\end{document}

book 文档类的文档结构示例

\title{Test title}
\author{ Mary\thanks{E-mail:*****@***.com}
\and Ted\thanks{Corresponding author}
\and Louis}
\date{\today}

【Latex笔记】标题页_第1张图片
为标准文档类指定了titlepage 选项后,使用\maketitle 命令生成的标题页
就是一个titlepage 环境。

\renewcommand{\maketitle}{\begin{titlepage}
... % 用户自定义命令
\end{titlepage}}

你可能感兴趣的:(Latex,论文,笔记)