CMD Markdown basic & Math Cheatsheet


I am using CMD Markdown both at work and for study.You can use it to take notes, store the output of your model, write down fantastics ideas anyttime.

It has a few advantages over word, notepad, Rmarkdown, etc:

  • It is auto-saved, you don't need to worry about losing file when your computer stuck.
  • All the file is stored online. You can access your account any where.
  • It interactives well with other formats. For example you can copy the output of Kable() in R directly to Markdown, becasue they share the same grammar.

So here I will go over some basic Markdown Grammar. It won't be thorough, but it will cover some frequectly used grammar.

Any feedback is welcomed.

Basic

1.Title

Subtitlle1

Subtitlle2

Add subtitle with more #

2. Text

  • this is italic and this is bold .
  • this is important text. and percentage signs : % and %

3. Indention & Quote Notes

Here goes your Quote

with more indentations

4. Bullet Point

  • bullets can be -, +, or *

    • 2nd Level subset: Use Tab to give you second level subset

      • 3rd Level subset

5. Code

You can speficy the lanuage you use, which will lead to differet highlight.

print("Hello World")

6. Table and Alignment

This can be very handy when you call the Markdown library like Knitr in R or markdown in python, you can simply use kable(dataframe) which will output following format. And you can then paste it in your markdown.

List Tag
1 计划
2 DeepLearning
3 Leetcode

7. Links

here is a link to my blog:小七的各种胡思乱想

8. Math Formula

  • $Formula$ gives you a formula in the line \(P(y=1|x)\)
  • $$Formula$$ starts a new line for formula $$P(y=1|x)$$

9.Page Split

Following is how you split the page by ---


Math

1. Greek Lettter

Grammar Greek
\alpha \(\alpha\)
\beta \(\beta\)
\gamma \(\gamma\)
\Gamma $ \Gamma$
\pi \(\pi\)
\Pi \(\Pi\)
\phi \(\phi\)
\Phi \(\Phi\)
\varphi $\varphi $
\mu \(\mu\)
\Delta $\Delta $
\theta $ \theta$

2. Basic Operators

Grammar Operators
\lim \(\lim\)
\exp \(\exp\)
\to \(\to\)
\infty \(\infty\)
\equiv \(\equiv\)
\bmod \(\bmod\)
\pm $\pm $
\mp $ \mp$
\leq $ \leq$
\geq $\geq $
\times \(\times\)
\div \(\div\)
\sqrt{k} $ \sqrt{k}$
\sum $ \sum $
\prod $\prod $
\int $\int $
\iint $\iint $
\cos \(\cos\)
\sin \(\sin\)

3.Theory Deduction Operator

Grammar Operators
\forall $ \forall$
\in $\in $
\exists $ \exists$
\epsilon $ \epsilon $
\propto $\propto $
\neq $ \neq$
\sim $\sim $

4 Upper and Lower Indices

Grammar Indices
k_{n+1} $k_{n+1} $
k^2 $ k^2 $
k_n^2 $k_n^2 $

And by combining this indices with the above operator, you will have all that you need.

Grammar Combination
\sum_{i=1}^{10} t_i $\sum_{i=1}^{10} t_i $
\int\limits_a^b $\int\limits_a^b $
\sqrt[n]{k} $\sqrt[n]{k} $

5 Fraction

Grammar Fraction
\frac{1}{x} \(\frac{1}{x}\)
\frac{\frac{x}{1}}{x - y} $ \frac{\frac{1}{x}}{x - y}$
^3/_7 $^3/_7 $

6. Bracket

\((a)\) \([a]\) \(|a|\) are the original one

Grammar Bracket
\langle f \rangle $\langle f \rangle $
\lfloor f \rfloor $\lfloor f \rfloor $
\lceil f \rceil $\lceil f \rceil $
| e | $ | e |$

7. Set Operator

Grammar Operator
\bigcup $\bigcup $
\bigcap $ \bigcap$
\bigvee $\bigvee $
\bigwedge $\bigwedge $
\subset $ \subset$

8 Arrow

Grammar Arrow
\implies $\implies $
\Rightarrow $\Rightarrow $
\rightarrow $\rightarrow $
\Uparrow $ \Uparrow$
\Downarrow $\Downarrow $
\Leftnarrow $\Leftarrow $
\Leftrightarrow $\Leftrightarrow $

Reference

  1. Writing Mathematic Fomulars in Markdown - Very thorough math Cheatsheet
  2. LaTeX/Mathematics - Wiki
  3. Sublime Text 2/3 Markdown Preview - Very thorough cheatsheet for everything.

CMD Markdown basic & Math Cheatsheet的更多相关文章

  1. 【转载】Cmd Markdown 公式指导手册

    目录 Cmd Markdown 公式指导手册 一.公式使用参考 1.如何插入公式 2.如何输入上下标 3.如何输入括号和分隔符 4.如何输入分数 5.如何输入开方 6.如何输入省略号 7.如何输入矢量 ...

  2. Cmd Markdown编辑器简明语法手册

    标签: Cmd-Markdown 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体. 示例: 这是 斜体,这是 粗体. 2. 分级标题 使用 === 表示一级标题,使用 --- 表示二级标题. 示 ...

  3. Cmd Markdown 高阶语法手册

    『Cmd 技术渲染的沙箱页面,点击此处编写自己的文档』 Cmd Markdown 高阶语法手册 1. 内容目录 在段落中填写 [TOC] 以显示全文内容的目录结构. [TOC] 2. 标签分类 在编辑 ...

  4. Cmd Markdown 简明语法手册

    『Cmd 技术渲染的沙箱页面,点击此处编写自己的文档』 Cmd Markdown 简明语法手册 标签: Cmd-Markdown 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体. 示例: 这是 ...

  5. 试用cmd markdown

    欢迎使用 Cmd Markdown 编辑阅读器 我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd Markdown 是我们给出的答案 -- 我们为记录思想 ...

  6. LightOj 1148 Basic Math

    1148 - Mad Counting PDF (English) Statistics Forum Time Limit: 0.5 second(s) Memory Limit: 32 MB Mob ...

  7. Cmd Markdown 学习

    [TOC] # Cmd Markdown 学习 Markdown 简明语法 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体. 2. 分级标题 在使用 = 表示一级标题,使用 - 表示二级标题.# ...

  8. cmd markdown 使用教程

    cmd markdown 使用教程 tags: 自制教程 李卓伦 目录: [TOC] 一.简介与安装 我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd M ...

  9. Cmd Markdown 编辑阅读器

    我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd Markdown 是我们给出的答案 -- 我们为记录思想和分享知识提供更专业的工具. 您可以使用 Cmd ...

随机推荐

  1. Sublime text3学习小记(macOS系统下的安装使用)

    [注:以下内容参考https://blog.csdn.net/stilling2006/article/details/54376743] 一.认识Sublime text 1.一款跨平台代码编辑器, ...

  2. Reading Notes : 180214 计算机的总线结构

    读书<计算机组成原理>,百度百科 基本上接触过计算机的人,都多少知道计算机的具体构成,但是真正能讲明白的却说了很多,本节将讲解一下计算机的基本硬件构成和一些基本信息,简单认识,以后再深入了 ...

  3. Java中的IO流(二)

    上一篇<Java中的IO流(一)>把学习IO流的字符流作了一下记录,本篇把字节流记录一下. 一,Java中的字节流 Java中的字节流的操作方式与字符流的操作方式大致相同,连方法名都是类似 ...

  4. Spring知识点小结(三)

    一.aop的简介 aop:面向切面编程    aop是一种思想,面向切面编程思想,Spring内部提供了组件对aop进行实现    aop是在运行期间使用动态代理技术实现的思想    aop是oop延 ...

  5. vue项目出现空格警告的原因及其解决办法

    原因: 因为你的Webpack 配置中大概是使用了 eslint-loader,这是用来规范代码风格的,在多人协作或大项目中推荐使用,不想要则可以在 webpack.config.js 中去掉.esl ...

  6. 将图片写入二进制文件,再从二进制文件还原图片(c++)

    #include "string" #include "iostream" #include "fstream" using namespa ...

  7. 04JavaScript语法

    1.JavaScript 语法 JavaScript 是一个脚本语言. 它是一个轻量级,但功能强大的编程语言 2.JavaScript 字面量 在编程语言中,一般固定值称为字面量,如 3.14. 数字 ...

  8. SQL Server 2012 - 动态SQL查询

    动态SQL的两种执行方式:EXEC @sql 和 EXEC sys.sp_executesql @sql DECLARE @c_ids VARCHAR(200) SET @c_ids ='1,2' - ...

  9. go语言学习(一):数组/切片

    学习区块链之后,发现还要学习加密,接触到的视频是:Go的crypto包,所以开始接触Go.因为和solidity有些相似,但是比solidity简单一些,就开始放松的心态去学习.每天翻着go菜鸟教程, ...

  10. Hbase过滤器

    Hbase过滤器简介 HBase的基本API,包括增.删.改.查等,增.删都是相对简单的操作,与传统的RDBMS相比,这里的查询操作略显苍白,只能根据特性的行键进行查询(Get)或者根据行键的范围来查 ...