赞
踩
目录
Placement([htbp]命令):调整图片等浮动体排版位置选项
有序列表(a), (b), (c)
- \begin{itemize}
- \item [(a)]
- \item [(b)]
- \item [(c)]
- \end{itemize}
无序列表
- \begin{itemize}
- \item First,
- \item Next,
- \item Then,
- \item Finally,
- \end{itemize}
- \\begin{verbatim}
- clc;clear all;
- R=1;%PD探测器探测系数
- f_RF=0e9:0.00075e9:80e9;
- c=3e8;%光速
- D_q=17.9e-6; L=5e3;%单位m;单模光纤的长度
- v1=0.9e-9;%波长间隔
- \\end{verbatim}
命令 | 作用 |
---|---|
h | 当前位置:代码所在的上下文。如果本页所剩的页面不够,这一参数将不起作用 |
t | 页面的顶部 |
b | 页面的底部 |
p | 浮动页:将图形放置在允许有浮动对象的页面上 |
! | 在决定位置时忽略限制 |
普通表格
- \begin{table}[h] % l 左 c 居中 r 对齐 | 竖线 \hline横线 || 双竖线 \hline \hline 双横线
- \centering
- \caption{table}\label{tab:tab2}
- \begin{tabular}{|c|c|}
- \hline
- a & b \\
- \hline
- c & d\\
- \hline
- e & f\\
- \hline
- \end{tabular}
- \end{table}
三线表
- \begin{table}[h]
- \centering
- \begin{tabular}{@{}lc@{}}
- \toprule
- xxxx \\
- \midrule
- xxxx \\
- \bottomrule
- \end{tabular}
- \caption{xxx}
- \label{tab:table_x}
- \end{table}
表格转latex:Create LaTeX tables online - TablesGenerator.com
一张图片
- \\begin{figure}[h]
- \\centering
- \\includegraphics[scale=0.15]{Figure/Figure_1.png}
- \\caption{xxx}
- \\label{fig:fig1}
- \\end{figure}
两图并排
- \\begin{figure}[h]
- \\begin{minipage}[t]{0.5\\linewidth}
- \\centering
- \\includegraphics[scale=0.15]{Figure/Figure_1.png}
- \\caption{caption1.}
- \\end{minipage}
- \\begin{minipage}[t]{0.5\\linewidth} %图片占用一行宽度的50%
- \\hspace{2mm}
- \\includegraphics[scale=0.15]{Figure/Figure_2.png}
- \\caption{caption2.}
- \\end{minipage}
- \\end{figure}
公式识别软件:mathpix
行内公式:由一对 $ 符号包含
行间公式
公式可自动编号(不加编号替换为{equation*})
- \\begin{equation}
- f(x)=ax+b
- \\end{equation}
罗列一系列公式,并令其按照等号对齐
- begin{equation*}
- \\begin{aligned}
- T(n) &=xxxxx\\\\
- &= xxx\\\\
- \\end{aligned}
- \\end{equation*}
矩阵:在外需要套用 \left、\right 等定界符
- \\[ \\mathbf{X} = \\left(
- \\begin{array}{cccc}
- x_{11} & x_{12} & \\ldots & x_{1n}\\\\
- x_{21} & x_{22} & \\ldots & x_{2n}\\\\
- \\vdots & \\vdots & \\ddots & \\vdots\\\\
- x_{n1} & x_{n2} & \\ldots & x_{nn}\\\\
- \\end{array} \\right) \\]
分段函数
- |x| =
- \\begin{cases}
- x & \\text{if } x < 0,\\\\
- 0 & \\text{if } x = 0,\\\\
- x & \\text{if } x > 0.
- \\end{cases}
常用数学符号
希腊字母
引用
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。