美文网首页
laTex数学公式

laTex数学公式

作者: sorry510 | 来源:发表于2020-04-12 22:01 被阅读0次

公式前后用$$包裹

  • 上标^
    x^2 -> $x^2$
  • 下标
    x_1 -> $x_1$
    x_{n+1} -> $x_{n+1}$
  • 根号
    \sqrt2 -> $\sqrt2$
  • 三角函数
    \sin(x) -> $\sin(x)$
  • 分数
    \frac{1}{2} -> $\frac{1}{2}$
  • 求和
    \sum_{i=1}^n i -> $ \sum_{i=1}^n i $
  • 求积
    \prod_{i=1}^n i -> $ \prod_{i=1}^n i$
  • 极限
    \lim_{x\to0}x^2 -> $\lim_{x\to0}x^2 $
  • 积分
    \int_{a}^{b}x^2 dx -> $\int_{a}^{b}x^2 dx $
  • 箭头
    \leftarrow -> \leftarrow
    \rightarrow -> \rightarrow
    \uparrow -> \uparrow
    \downarrow -> \downarrow
    \underrightarrow{x+y+z} -> $\underrightarrow{x+y+z}$
    \overleftarrow{x+y+z} -> $\overleftarrow{x+y+z}$
    \tilde{x} -> $ \tilde{x}$
    \acute{x} -> $ \acute{x}$
  • 括号
    \left\right自动匹配
    f\left( \left[ \frac{ 1+\left\{x,y\right\} }{ \left( \frac{x}{y}+\frac{y}{x} \right) \left(u+1\right) }+a \right]^{3/2} \right) \tag{1.2}
$$
f\left(
   \left[ 
     \frac{
       1+\left\{x,y\right\}
     }{
       \left(
          \frac{x}{y}+\frac{y}{x}
       \right)
       \left(u+1\right)
     }+a
   \right]^{3/2}
\right)
\tag{1.2}
$$
  • 无穷
    \infty -> $\infty$
  • 矩阵


    1586699847(1).jpg

\begin{matrix} 0 & 1 \\ 1 & 0 \end{matrix}

$ \begin{matrix}
0 & 1 \\
1 & 0 
\end{matrix} $  
  • 希腊字母
    小写输入为\alpha, \beta, \gamma, ... 大写输入为\Gamma, \Delta
    \alpha \Gamma

  • a \cdot b -> $a \cdot b$

相关文章

  • 2020-02-01 latex便捷资源

    LaTeX Tables Generator数学公式识别神器—Mathpix Snip在线latex编辑 over...

  • iOS 数学公式的展示(latex、mathjax)

    一般都是用 webview 加载数学公式。 latex 公式 如果确定数学公式是 latex 的表达式,可以使用以...

  • 2018-01-03

    数学公式编辑器 http://latex.codecogs.com/svg.latex?%5Cfn_cs%20%5...

  • 在简书中使用markdown编辑数学公式和uml图

    测试在简书中使用latex/uml 编辑数学公式 直接使用latex语法 使用在线latex公式编辑器 但是在简书...

  • 库s

    数学公式在线编辑http://www.codecogs.com/latex/eqneditor.php

  • LaTex支持

    针对LaTex排版主要有两个问题: 1.数学公式的显示 支持LaTex比较好的JS库是:KaTex 支持LaTex...

  • 2020-02-06

    Latex常用公式整理 目录 常用 常用数学公式 常用希腊字母 说明:博客园中的Latex编辑是以

  • Markdown中输入数学公式及LaTex常用数学符号整理

    本文主要内容为Markdown中的数学公式以及LaTex常用数学符号的整理Markdown中输入数学公式及LaTe...

  • 笔记工具

    步骤 用jupyter notebook写笔记文字笔记:markdown(文字+插入图片) + latex数学公式...

  • LaTex 数学符号 for markdown

    TeX 系统是公认的数学公式排得最好的系统。LaTeX ,是一种基于 TeX 的排版系统。 LaTeX 是 Te...

网友评论

      本文标题:laTex数学公式

      本文链接:https://www.haomeiwen.com/subject/ckkimhtx.html