Latex学习(一)
Latex插入公式
常用的希腊字母编辑
常用的符号
-
使用
^
和_
表示上标和下标如,使用\sum
作为求和符号:TF_{i} = 1+log \sum_{j=1}^N f_{i,j}
:
T F i = 1 + l o g ∑ j = 1 N f i , j TF_{i} = 1+log \sum_{j=1}^N f_{i,j} TFi=1+logj=1∑Nfi,j -
使用
{}
作为幂指数的分组
x^{y^z}
:
x y z x^{y^z} xyz
-
使用
\frac{}{}
作为分数符号,IDF_{i} = log (\frac{N}{n_{i}})
:
I D F i = l o g ( N n i ) IDF_{i} = log (\frac{N}{n_{i}}) IDFi=log(niN)
-
聚合和积分:
\prod
:
∏ \prod ∏
\int
:
∫ \int ∫
\iint
:
∬ \iint ∬
iiint
:
∭ \iiint ∭
\bigcup
:
⋃ \bigcup ⋃
bigcap
:
⋂ \bigcap ⋂ -
极限
\lim_{x \to \infty}
:
lim x → ∞ \lim_{x \to \infty} x→∞lim -
开方:
\sqrt{}
:
x 3 \sqrt{x^3} x3 -
运算符:
$\pm$ $\times$ $\div$ $\cdot$ $\cap$ $\cup$ $\geq$ $\leq$ $\neq$ $\approx$ $\equiv$
:
± × ÷ ⋅ ∩ ∪ ≥ ≤ ≠ ≈ ≡ \pm\times \div \cdot \cap\cup\geq \leq \neq \approx \equiv ±×÷⋅∩∪≥≤=≈≡ -
矩阵:
\begin{matrix}...\end{matrix}
:
( 1 x x 2 1 y y 2 1 z z 2 ) \left( \begin{matrix} 1 & x & x^2 \\ 1 & y & y^2 \\ 1 & z & z^2 \\ \end{matrix} \right) ⎝⎛111xyzx2y2z2⎠⎞ -
行列式:
\begin{matrix}...\end{matrix}
:
∣ 1 x ⋯ x 2 1 y ⋯ y 2 ⋮ ⋮ ⋱ ⋮ 1 z z m d z 2 ∣ \left| \begin{matrix} 1 & x &\cdots& x^2 \\ 1 & y & \cdots & y^2 \\ \vdots & \vdots & \ddots&\vdots \\ 1 & z & z_{md}&z^2 \\ \end{matrix} \right| ∣∣∣∣∣∣∣∣∣11⋮1xy⋮z⋯⋯⋱zmdx2y2⋮z2∣∣∣∣∣∣∣∣∣ -
分段函数:
\begin{cases}...\end{cases}
:
f ( n ) = { n / 2 , if n is even 3 n + 1 , if n is odd f(n)= \begin{cases} n/2, &\text{if $n$ is even}\\ 3n+1,& \text{if $n$ is odd } \end{cases} f(n)={n/2,3n+1,if n is evenif n is odd
- 方程组:
\begin{array}...\end{array}
:(注意大括号{}用来分组,需要转义)
{ n / 2 , if n is even 3 n + 1 , if n is odd \left\{ \begin{array}{c} n/2, &\text{if $n$ is even}\\ 3n+1,& \text{if $n$ is odd } \end{array} \right. {n/2,3n+1,if n is evenif n is odd
latex的排版方式:
-
行间公式
$...$
: -
块间公式
$$...$$
:默认居中显示。
latex插入图片
首先导入包:
\usepackage{float}
\usepackage{graphicx}
定义图片的位置,图片大小,标题名称:
\begin{figure}[H]
% [H]:当前位置 [t]:顶部 [b]:底部 [p]:浮动页
\center{\includegraphics[width=12cm,height=12cm]{tf_idf.png}}
\caption {文档集的TF、IDF权重散点图}
\end{figure}