基础框架
\documentclass{article}
\begin{document}
Hello world!
\end{document]
- 选择文档类型
\documentclass{}
规定文档的类型,可以选择文章article,也可以选择其它类型,如book、letter等等
- 添加注释
在每一行的末尾加上%,然后就可以添加注释了,编译后注释的内容不会出现在文档中。如果文章内容中需要使用%的话,需要在%前面加上反斜杠\。
- 添加标题、作者、日期等信息
\documentclass{article}
\title{My first Latex document}
\author{Yingshan Li}
\date{8/26/2018}
\begin{document}
\maketitle
Hello world!
\end{document}
这样就可以将文章的标题、作者、日期等信息添加到文章中了,\maketitle这个控制序列可以将这些信息按照预定的格式打印出来。
- 添加目录
只需要在导言区中添加\tableofcontents就可以了
\documentclass{article}
\title{My first Latex document}
\author{Yingshan Li}
\date{8/26/2018}
\begin{document}
\maketitle
\tableofcontents
Hello world!
\end{document}
添加章节
\section{}
\subsection{}
\subsubsection{}
添加段落
\paragraph{}
\subparagraph{}
\subsubparagraph{}
添加包
当需要用到非默认存在的包时,需要在导言区中添加,如
\documentclass{article}
\usepackage{amsmath}
\title{My first Latex document}
\author{Yingshan Li}
\date{8/26/2018}
\begin{document}
\maketitle
Hello world!
\end{document}
字体设置
一般我们用fontspec包来设置字体
\usepackage{fontspec}
\setmainfont{Times New Roman}
字体大小
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\large
\LARGE
\huge
\Huge
添加数学公式
插入行内公式
$ … $
Einstein 's $E=mc^2$. %equation within line
插入行间公式
[ … ]
\[ E=mc^2. \] %equation between lines
在一行中插入多个公式
\begin{displaymath}
S_{n+1} = S_{n} + S_{n},
S_{n}=1=2^{n}
\end{displaymath}
对行间公式进行编号
\begin{equation}
...
\end{equation}
上下标
^{} %power
_{} %下标
分式
\frac{m}{n} %n分之m
开方
\sqrt{} %开平方
\sqrt[m]{n} %n开m次方
累计求和
\sum_{i=m}^{n} %从m到n求和
累计求积
\prod_{i=m}^{n} %从m到n求积
积分
\int_{i=m}^{n} %从m到n积分
向量
\vec a %a向量
\overrightarrow{AB} %A到B的向量
省略号
a+b+\cdots+z %a+b+…+z
大括号
\underbrace{a+b+\cdots+z}_{26} %a+b+…+z
横杠
\overline{m+n} %m+n公式上面加上横杠
\underline{m+n} %m+n公式下面加上横杠
来源:https://zhuanlan.zhihu.com/p/52347414