CMD Markdown basic & Math Cheatsheet
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
importanttext. 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
- 2nd Level subset: Use Tab to give you second 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
- Writing Mathematic Fomulars in Markdown - Very thorough math Cheatsheet
- LaTeX/Mathematics - Wiki
- Sublime Text 2/3 Markdown Preview - Very thorough cheatsheet for everything.
CMD Markdown basic & Math Cheatsheet的更多相关文章
- 【转载】Cmd Markdown 公式指导手册
目录 Cmd Markdown 公式指导手册 一.公式使用参考 1.如何插入公式 2.如何输入上下标 3.如何输入括号和分隔符 4.如何输入分数 5.如何输入开方 6.如何输入省略号 7.如何输入矢量 ...
- Cmd Markdown编辑器简明语法手册
标签: Cmd-Markdown 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体. 示例: 这是 斜体,这是 粗体. 2. 分级标题 使用 === 表示一级标题,使用 --- 表示二级标题. 示 ...
- Cmd Markdown 高阶语法手册
『Cmd 技术渲染的沙箱页面,点击此处编写自己的文档』 Cmd Markdown 高阶语法手册 1. 内容目录 在段落中填写 [TOC] 以显示全文内容的目录结构. [TOC] 2. 标签分类 在编辑 ...
- Cmd Markdown 简明语法手册
『Cmd 技术渲染的沙箱页面,点击此处编写自己的文档』 Cmd Markdown 简明语法手册 标签: Cmd-Markdown 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体. 示例: 这是 ...
- 试用cmd markdown
欢迎使用 Cmd Markdown 编辑阅读器 我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd Markdown 是我们给出的答案 -- 我们为记录思想 ...
- LightOj 1148 Basic Math
1148 - Mad Counting PDF (English) Statistics Forum Time Limit: 0.5 second(s) Memory Limit: 32 MB Mob ...
- Cmd Markdown 学习
[TOC] # Cmd Markdown 学习 Markdown 简明语法 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体. 2. 分级标题 在使用 = 表示一级标题,使用 - 表示二级标题.# ...
- cmd markdown 使用教程
cmd markdown 使用教程 tags: 自制教程 李卓伦 目录: [TOC] 一.简介与安装 我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd M ...
- Cmd Markdown 编辑阅读器
我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd Markdown 是我们给出的答案 -- 我们为记录思想和分享知识提供更专业的工具. 您可以使用 Cmd ...
随机推荐
- Maven项目改为spring boot项目的方法
目录树 新建Maven项目及步骤 修改方法 启动测试 新建Maven项目及步骤 我这里是从创建开始讲,使用的工具是Idea2017版本.如果是已经创建了Maven,想改为spring boot项目的请 ...
- 修改本机默认的jdk版本
因为开发需要使用多个jdk,在修改jdk版本时遇到了一些问题 在系统变量的%JAVA_HOME%中修改了jdk的路径,但是重启后java -version版本并没有改变. 在网上找到一篇文章,修改了注 ...
- Oracle行转列,pivot函数和unpivot函数
pivot函数:行转列函数: 语法:pivot(任一聚合函数 for 需专列的值所在列名 in (需转为列名的值)):unpivot函数:列转行函数: 语法:unpivot(新增值所在列的列名 for ...
- C++ 内存、new与malloc分配内存区别?
一关于内存 1.内存分配方式 内存分配方式有三种: (1)从静态存储区域分配.内存在程序编译的时候就已经分配好,这块内存在程序的整个运行期间都存在.例如全局变量,static变量. (2)在栈上创建. ...
- python2.7+PyQt4+eric6 界面开发环境配置
1.安装环境: python2.7 PyQt4-4.11.4-gpl-Py2.7-Qt4.8.7-x64.exe eric6-18.12.zip 2.安装步骤: 1.安装python2.7的过程略 2 ...
- table表单制作个人简历
应用table表单,编程个人简历表单,同时运用了跨行rowspan和跨列colspan. <!DOCTYPE html> <html> <head> <met ...
- core dump文件分析和调试
core介绍 当程序运行的过程中异常终止或崩溃,操作系统会将程序当时的内存状态记录下来,保存在一个文件中,这种行为就叫做Core Dump(中文有的翻译成"核心转储").我们可以认 ...
- python3 练习题100例 (四)
题目四:输入某年某月某日,判断这一天是这一年的第几天? #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ 题目四:输入 ...
- Python学习:9.模块的安装以及调用模块
什么是模块 在Python中,模块其实也就是包含python代码的文件,我们为什么要使用模块?在我们以后写代码的时候,我们会发现有很多功能需要经常使用,那我们想要使用这些功能怎么办,要再把那些代码在敲 ...
- C语言经典程序100例
-------------------------------------------------------------------------------- [程序1] 题目:古典问题:有一对兔子 ...