记一下日常见到的一些奇怪的 Markdown / LaTeX 用法...

Markdown

LaTeX

LaTeX 数学

1. 运算符

1.1 造运算符:

a \operatorname{sin} c | \(a \operatorname {sin} c\)

2. 特殊符号

2.1 点

语义的点:

  • \dotsc for “dots with commas” | \(a \dotsc b\)
  • \dotsb for “dots with binary operators/relations” | \(a \dotsb b\)
  • \dotsm for “multiplication dots” | \(a \dotsm b\)
  • \dotsi for “dots with integrals” | \(a \dotsi b\)
  • \dotso for “other dots” (none of the above) | \(a \dotso b\)
  • \dots output the most suitable form based on the immediate context
    • a \dots b | \(a \dots b\)
    • a + \dots + b | \(a + \dots + b\)
    • \int_{a_1}\int_{a_2} \dots \int_{a_n} | \(\int_{a_1}\int_{a_2} \dots \int_{a_n}\)

位置的点:

  • \cdots | \(a \cdots b\)
  • \vdots | \(a \vdots b\)
  • \ddots | \(a \ddots b\)
  • \ldots | \(a \ldots b\)

For example:

M
=\begin{bmatrix}
A & B & \cdots\ &C\\
D & E & \cdots\ & F\\
 \vdots   & \vdots & \ddots  & \vdots  \\
 G & H & \cdots\ & I\\
\end{bmatrix}

\[M
=\begin{bmatrix}
A & B & \cdots\ &C\\
D & E & \cdots\ & F\\
 \vdots   & \vdots & \ddots  & \vdots  \\
 G & H & \cdots\ & I\\
\end{bmatrix}
\]

2.2 分数/二项式系数

\(\TeX\) style:

  • {a \over b} | \({a \over b}\)
  • {a \atop b} | \({a \atop b}\)
  • {a \choose b} | \({a \choose b}\)
  • {a \brack b} | \({a \brack b}\)
  • {a \brace b} | \({a \brace b}\)
  • generate:
    • {a \above dimension(nullable) b}

      • dimension: xpt; 0.4pt as default; 0pt hide
      • {a \above 0.5pt b} | \({a \above 0.5pt b}\)
      • {a \above {} b} | \({a \above {} b}\) (error in mathjax...)

\(\LaTeX\) style:

  • \frac ab | \(\frac ab\)

  • \binom ab | \(\binom ab\)

  • generate:

    • {\genfrac leftdelimiter rightdelimiter dimension style numerator denominator}
    • leftdelimiter, rightdelimiter, dimension, style, numerator, denominator are all nullable, you could use {} instead
      • style (nullable):

        • 0 denotes \displaystyle
        • 1 denotes \textstyle
        • 2 denotes \scriptstyle
        • 3 denotes \scriptscriptstyle
      • \genfrac(]{0pt}{2}{a+b}{c+d} | \(\genfrac(]{0pt}{2}{a+b}{c+d}\)
      • \genfrac{}{}{0pt}{}{a+b}{c+d} | \(\genfrac{}{}{0pt}{}{a+b}{c+d}\)
  • other:

    • \dfrac: fraction in the display style | \(\dfrac ab\)
    • \tfrac: fraction in the text style | \(\tfrac ab\)

最新文章

  1. javaBean List Map json(转)
  2. 利用JAVA反射机制将JSON数据转换成JAVA对象
  3. java技术知识点
  4. Jmeter正则表达式提取器的使用方法(转)
  5. 将cocos2dx项目从Visual Studio 迁移到 xcode
  6. 隐藏或删除指定的html元素
  7. Selenium WebDriver多层表单切换
  8. swift 3.0 基础练习 面向对象 类
  9. hdu_3483A Very Simple Problem(C(m,n)+快速幂矩阵)
  10. com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database 'smvch'
  11. 第一册:lesson 105.
  12. HDU2072 tri树/map/set/字符串hash
  13. sqlalchemy学习笔记
  14. Spring Cloud(Dalston.SR5)--Feign 声明式REST客户端
  15. Number的Util
  16. STL_算法_03_拷贝和替换算法
  17. 深入理解yield(二):yield与协程
  18. Object-c 创建按钮
  19. python之爬虫_模块
  20. 2017 Bangladesh National High School Programming Contest ( National Round, Senior Group ), NHSPC 2017 题解

热门文章

  1. HDU 1176 免费馅饼 (动态规划、另类数塔)
  2. Spring MVC 中使用AOP 进行统一日志管理--XML配置实现
  3. SCP,scp linux2台机器之间如何传输文件
  4. Spring的核心思想,总结得非常好!
  5. A Dangerous Maze (期望值)
  6. python中判断字典中是否存在某个键
  7. Linux的用户与用户组(权限管理)
  8. php Excel 导入
  9. web端生成的带有echarts图表的html页面,嵌入在(javaFx)webview中显示错位问题
  10. npm切换淘宝镜像源