记一下日常见到的一些奇怪的 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\)

奇怪的 Markdown / LaTeX 笔记的更多相关文章

  1. MarkDown+LaTex 数学内容编辑样例收集

    $\color{green}{MarkDown+LaTex 数学内容编辑样例收集}$ 1.大小标题的居中,大小,颜色 [例1] $\color{Blue}{一元二次方程根的分布}$ $\color{R ...

  2. Markdown 学习笔记: Basics

    Markdown 学习笔记: Basics 原文:Basics. 了解Markdown格式化句法的要点 本页对如何使用Markdown提供了一个简单的概述.在"句法"页中对Mark ...

  3. Markdown&Latex学习笔记,qwq

    目录 推荐的文章 居中 字体 加颜色 指数 分数 根号 神奇的符号(不要多想qwq) 箭头 小于号 大括号 累加符号 累乘符号 下标 \(\phi\)&\(\varphi\) \(\equiv ...

  4. 【转载】Markdown使用笔记

    献给写作者的 Markdown 新手指南 http://www.jianshu.com/p/q81RER 「简书」作为一款「写作软件」在诞生之初就支持了 Markdown,Markdown 是一种「电 ...

  5. $\LaTeX$笔记:Section 编号方式(数字、字母、罗马)&计数器计数形式修改

    $\LaTeX$系列根目录: Latex学习笔记-序 IEEE模板中Section的编号是罗马数字,要是改投其他刊物的话可能得用阿拉伯数字,所以可以在导言部分做如下修改(放在导言区宏包调用之后): \ ...

  6. $\LaTeX$笔记:首字下沉

    $\LaTeX$系列根目录: Latex学习笔记-序 首字下沉 \IEEEPARstart{W}{ith} ,第一个参数W会变大,占用两行,第二个参数”ith”变会大写. 如代码 \IEEEPARst ...

  7. 我的 MarkDown 学习笔记

    MarkDown 一种用于写作的轻量级[标记语言].它用简洁的语法代替排版,而不像一般的文字处理软件 Word 或者 Pages 有大量的排版.字体设置等. 如果你对文章的样式没有太多要求,只注重写文 ...

  8. R+markdown+LaTeX 中文编译解决方案

    一丢丢前言 很久之前曾试图以Rmarkdown编译pdf文档,无奈怎么鼓捣都会error,搜索了很久都没能找到比较好的解决方案.在配置上将编译器调成了xeLaTeX后就不了了之.这两天心血来潮研究了一 ...

  9. Markdown & LaTex 常用语法

    目录 blog 的目录 博客园自带目录 用 javascript 自定义目录 主标题 副标题 h1,一级标题 h2,二级标题 h3,三级标题 注释 常用的符号及文本形式 如果你想在markdown中文 ...

随机推荐

  1. 【神经网络与深度学习】Leveldb的一些具体操作说明

    本文转自 http://blog.csdn.net/poweruser5956/article/details/7727325 Leveldb概述 leveldb提供了持久的键值对的存储.key和va ...

  2. 小记------查看‘阿里云机器’yarn 日志

    通过ip:8088 页面 复制正在运行的application ID    在linux客户端执行 xshell yarn logs -applicationId application_155869 ...

  3. Go语言代码结构与语法基础(二)

    任何一门语言,都是从打印 hello world 开始的. 最简单的go代码: package main // 声明 main 包,表明当前是一个可执行程序 import "fmt" ...

  4. 【6.24校内test】T2 不老梦

    [题目背景] 于万人中万幸得以相逢,刹那间澈净明通. 成为我所向披靡的勇气和惶恐,裂山海,堕苍穹. 爱若执炬迎风,炽烈而哀恸,诸般滋味皆在其中. 韶华宛转吟诵,苍凉的光荣,急景凋年深情难共. ——银临 ...

  5. POJ - 1251 Jungle Roads (最小生成树&并查集

    #include<iostream> #include<algorithm> using namespace std; ,tot=; const int N = 1e5; ]; ...

  6. 洛谷 P2023 维护序列 题解

    题面 注意一个细节,查询和更新都需要pushdown(); #include <bits/stdc++.h> #define int long long using namespace s ...

  7. 用ansible修改用户密码并给予挂载点

    --- - hosts: myjob gather_facts: false tasks: - name: chage user passwd user: name={{ item.name }} p ...

  8. 安装linux mint后要做20件事

    Linux Mint 17 Qiana Cinnamon Linux Mint 17已经发布,定名为Qiana.Mint是Linux最佳发行版之一,它定位于桌面用户,关注可用性和简洁.它携带了风格迥异 ...

  9. 定义一个Book类,有书名,价格,作者等信息。定义相应的方法来改变这些属性的值。定义一个方法来显示Book的所有信息。

    package com.fs.test; public class Test { public static void main(String[] args) { // 先声明后赋值 book b;/ ...

  10. vue使用Vuex, IE浏览器报错

    错误:  [vuex] vuex requires a Promise polyfill in this browser. 原因:因为使用了 ES6 中用来传递异步消息的的Promise,而IE低版本 ...