Latex学习(一)

news/2024/11/29 8:04:14/

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=1Nfi,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} xlim

  • 开方:\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| 111xyzzmdx2y2z2

  • 分段函数:\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}

http://www.ppmy.cn/news/691920.html

相关文章

四旋翼空气阻力估计

空气阻力计算式: F 1 2 c ρ S v 2 F \frac{1}{2} c\rho Sv^2 F21​cρSv2 其中, c c c 为空气阻力系数,与物体表面形状有关,现代汽车一般为 0.28-0.4,自己装的四旋翼,气动外形一般,取 c 0…

overleaf在线使用LaTeX踩坑与解决方案

1、刚开始导入后编译就不通过, 报错: This compile didn’t produce a PDF. This can happen if: There is an unrecoverable LaTeX error. If there are LaTeX errors shown below or in the raw logs, please try to fix them and compile again. The …

YOLO v5与双目测距结合,实现目标的识别和定位测距

YOLO v5与双目测距结合,实现目标的识别和定位测距 1、首先安装YOLO v52、数据集的标定3、双目测距代码的单独运行调试4、YOLO v5与双目测距的代码的结合5、最终识别测距效果6、代码下载调试运行7、最终演示视频欢迎各位点赞投币收藏哦🤣🤣&am…

中科亿海微FPGA

国产FPGA中,紫光、安路、高云称得上是三小龙,其他的半斤八两,中科亿海微也算是其中之一。 其产品为亿海神针系列,如下: 可见其最小规模也有9.2KLUT,最大竟有136K之多了,对比其他国产&#xff0…

第十八届智能汽车竞赛智能视觉组数据集发布

各位参赛同学你们好,第十八届智能汽车竞赛智能视觉组数据集分为蔬菜、粮食水果三大类,15个小类,和去年相比,将去年的交通工具和动物更换成了农业主题的蔬菜和粮食,保留了水果,组委会及赞助单位NXP委托“逐飞…

LaTex 中表格过宽越界的解决办法

调试Latex表格会遇见表格出界的问题,我们可以让其自动调整字体的大小。 例: \begin{table}[] \begin{tabular}{|l|l|l|l|l|} \hline 价格 & 备注 & 工期 & 物流 & 图…

玩家堂2009年巨献,27款12CM风扇大型横评(1)--- 风扇参数

/* from: http://www.itocp.com/htmls/68/n-268.html */ 整理一下风扇的参数 1. 安耐美火蝠 1500RPM转速下,最大风量为69.15CFM(实测为60.5CFM),最大风压为1.4mmH2O(实测为1.47mmH2O),噪音为18d…

胡乱捣鼓03——PID定身12cm直线追踪小车做起来~

目录 1.通俗理解PID1.1PID是什么呢?1.2 P、I、D (用来干嘛?) 2.小车搭建3.PID代码不过12行4.调参与分析5.视频 1.通俗理解PID 本项目的小车用到位置式PID,所以主要描述位置式PID的用法,通过这个简单的例子…