LaTeX是一个强大的排版软件,有十分清晰的编辑界面和明确的写作格式,能够以一种简介且严谨的方式生成复杂表格和数学公式,因此非常适用于生成高印刷质量的科技和数学类文档,是各种英文论文写作的首选。
在进行数学类论文,尤其是数学建模论文写作时,经常会用到的LaTeX命令如下:
1、在主文件开头位置导入超链接包,以生成相应格式的超链接:
\usepackage[colorlinks,linkcolor=black,anchorcolor=blue,citecolor=green]{hyperref}
可根据需要修改包的参数,上述代码规定链接颜色为黑色,链接锚颜色为蓝色,引用标记颜色为绿色。
2、分点语句:
\begin{itemize}
\item On the one hand.
\item On the other hand.
\end{itemize}
3、不带编号与带编号的数学公式:
\begin{displaymath}
r_{1} + r_{2} + r_{3} = \sum_{i=1}^{3}r_{i}
\end{displaymath}
\begin{equation}
r_{1} + r_{2} + r_{3} = \sum_{i=1}^{3}r_{i}
\end{equation}
4、 分式:
$\rho = \frac{m}{V}$
5、多行数学公式(公式很长,一行放不下的情况):
\[
\begin{split}
F(t) = 41.68 − 16.38\cos(t\omega) − 18.59\cos(2t\omega) + 3.572\cos(3t\omega) + 7.876\cos(4t\omega)...\\
− 0.5048\cos(t\omega) − 2.970\cos(6t\omega) + 0.2518\cos(7t\omega) + 0.5785\cos(8t\omega)...\\
+ 12.53\sin(t\omega) + 0.6370\sin(2t\omega) − 13.67\sin(3t\omega) + 0.4378\sin(4t\omega)...\\
+ 6.930\sin(5t\omega) + 0.4869\sin(6t\omega) − 1.554\sin(7t\omega) − 0.5871\sin(8t\omega)
\end{split}
\]
6、分段函数:
\[W_1=\begin{cases}
\frac{\int_0^24\int_0^t 3600(F(\tau)-Bs)dtd\tau}{n}& F(\tau)> Bs,\\
0& F(\tau) < Bs.
\end{cases}\]
7、 大小写罗马数字:
\uppercase\expandafter{\romannumeral4}
\romannumeral15
8、 分别用于句子和字母的上、下划线:
$\overline{The\; parameter\; is\; x.}$ \quad $\underline{The\; parameter\; is\; x.}$\\
$\bar{x}$ \quad $\underbar{x}$\\
9、二阶微分与二阶偏导:
$\frac{d^{2}y}{dx^{2}}$\\
$\frac{\partial^{2}y}{\partial x^{2}}$\\