1. 插入公式:
$ 具体公式 $2. 文字在整行居住对齐:
\begin{center} 数据娃掘\end{center}
3. 带编号的公式:
\begin{eqnarray} r_k^{max}=arg \ max \ S(m_k^{r_k},u_{y})\end{eqnarray}
4. 半角空格:
AB \ CD
5.可以引用汉字
头部引用:\usepackage{ctex}
6.插入图片
头部引用:\usepackage{graphicx}
在需要插入图片的地方如下这样:
\begin{figure}[!hbt]
\centering %居中对其
\includegraphics[width = 80 mm, height = 48 mm]{lstm.png} %相对路径下的图片名
\caption{Schematic of LSTM unit.} %图片的描述,默认在图片下方
\label{fig:id} %figure 1
\end{figure}
注:
\begin{figure*} %这个星号就是让你的图占满一行,不加这个星号就是占一半 \centering \includegraphics[width=.95\linewidth]{./Figures/xxxx.eps} \caption{State transitions in the model.} \label{fg:state} \end{figure*} %这里也要
7.针对单字母/单词强调
$\mathit{k}$
8.表格
(1)表格单元格里内容对齐方式
这一行最后一个参数c改成l,还可以改成r:
c:center
r:right
l:left
(2)表格在放置位置
通过设置 [htbp]参数:h:放在此处
t:放在顶端
b:放在底端
p:在本页
例:
\begin{table*}[!h]
\centering
\begin{tabular}{|c|r|}
\hline \bf Hyper-Parameters & \bf Value \\
\hline LSTM state size & 160 \\
\hline LSTM layer & 8 \\
\hline Learning rate & 0.001 \\
\hline Epochs & 60 \\
\hline Dropout & 0.5 \\
\hline Mini-batch size & 20 \\
\hline
\end{tabular}
\caption{Parameters values used for experiments}
\end{table*}
(3)针对表格中添加注脚(表格caption元素除外)
\begin{tabular}{|c|c|c|}
\hline
类型名称&占用空间&表示范围\\
\hline
real&6字节\footnotemark[3]&$2.9 \times 10^{-39} \sim 1.7 \times 10^{38}$\\
\hline
single&4字节&$1.5 \times 10^{-45} \sim 3.4 \times 10^{38}$\\
\hline
double&8字节&$5.0 \times 10^{-324} \sim 1.7 \times 10^{308}$\\
\hline
extended&10字节&$3.4 \times 10^{-4932} \sim 1.1 \times 10^{4932}$\\
\hline
\end{tabular}
\footnotetext[3]{xxxxxxxxxxxxx}
9.特殊字体-常用(大写)
(1) $\mathcal{QDAqp}$(2)$\mathit{apq}$
(3)如果在url链接中含有~这个字符,必须使用 %7e 进行替换: http://cs.nyu.edu/~kcho/DMQA =》 http://cs.nyu.edu/%7ekcho/DMQA