1.插入编号
\begin{enumerate}[a)]
\item input
\item input
\item input
\item input
\end{enumerate}
2.插入图片(jpg)
\begin{figure}
\centering
% Requires \usepackage{graphicx}
\includegraphics[width=8cm,height=6cm]{fone}\\
\caption{Typical Scene}\label{fig:graph}
\end{figure}
插入图片pdf
\begin{figure}
\centering
\includegraphics[width=120mm]{ftwo.pdf}\\
\caption{our approach}
\label{fig:env}
\end{figure}
3.引用编号而非手动输入(确保了编号的自动更新和前后文一致)
做法:给公式一个label,后文引用该label,这样就不会发生前后文不一致的问题
\begin{equation}\label{gauss}
\{{{X}_{1}},...,{{X}_{T}}\}=\{{{I}_{t}}(i,j):1\le t\le T\}
\end{equation}
\eqref{gauss}
4.文本中添加数学符号(使用$ $)
here $\mu_{t}(i,j)$ is the
5.公式下方说明中字母与公式一样斜体
$\emph{X}_{t}$
%\emph代表的是斜体
6.在公式中插入字母
如果是latax中没有的字母,就用{ 字母},下标用_{下标},如果是latax中已经有的,用\字母的方式,eg: \mu_{t}(i,j).备注:这里的{}可以删掉
如果在公式中加入花括号 \{ 内容\}的形式,eg:\{ \mu_{t}(i,j)\},备注:这里的{}可以删掉