内容符号
- 波浪号 ~:$ \sim $
- 加减号 ±:$ \pm$
- 点 ·:$ \cdot $
- 乘号 ∗:$ \ast $
- 约等于 ≈:$ \approx $
- ≤ : $ \le $
- ≥ : $ \ge $
数学表示
- 下箭头 ↓ \downarrow ↓ :$ \downarrow $
- 上箭头 ↑ \uparrow ↑: $ \uparrow $
- 1 i \frac{1}{i} i1:$ \frac{1}{i} $
- x ^ \hat{x} x^ : $ \hat{x} $
- x i x_i xi : $ x_i $
- z i ~ \tilde{z_i} zi~ : $ \tilde{z_i} $
文献连引用
- \cite{}
- 连续引用,需要加一个命令 [1-3]
\usepackage[numbers,sort&compress]{natbib}
画图
- 两栏中的一栏图
\begin{figure}[t] \centering # 居中\includegraphics[width=\linewidth]{xx.png} #导 入\caption{title.}} # 标题\label{fig:speech_production}
\end{figure}
- 两栏图
\begin{figure*}[t] \centering # 居中\includegraphics[width=\linewidth]{xx.png} #导 入\caption{{title.}} # 标题\label{fig:speech_production}
\end{figure*}
画表
直接用 https://tablesgenerator.com/# 画
几个表格常用修饰命令:
- 设置表格列宽:\setlength{\tabcolsep}{3.6mm}
- 设置表格行宽:\renewcommand{\arraystretch}{2}
- 表格线断开:\cmidrule( r ){3-5}
- 表格数据加粗: \textbf{}