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 ...
随机推荐
- ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
执行$ORACLE_HOME/bin/dbstart 启动数据库提示如下: [oracle@prim bin]$ ./dbstart ORACLE_HOME_LISTNER is not SET, u ...
- 环境配置之 Debug 和 Release - iOS
便于开发.打包中在不同环境(测试.生产)间属性的切换更加方便便捷流畅,故创建设置此方式方法,希望对大家能有所帮助. 首先,创建 Configurations Setting File(.xcconfi ...
- Vue.js与 ASP.NET Core 服务端渲染功能整合
http://mgyongyosi.com/2016/Vuejs-server-side-rendering-with-aspnet-core/ 原作者:Mihály Gyöngyösi 译者:oop ...
- STL笔记
STL的基本概念: 1-容器:是可容纳各种类型的数据结构,是 类模板. 2-迭代器:是用于依次存放容器中的元素,类似指针. 3-算法: 是用于操作容器中元素的 函数模板. sort() 用来对 vec ...
- Docker镜像浅谈
先抛出几个我在学习过程中产生的几个问题. 1. 容器镜像是什么, 和装系统时的镜像有什么关系? 2. 容器镜像的作用是什么? 3. 不同版本的ubuntu镜像有什么区别, 比如说 ubuntu:18. ...
- BZOJ2298: [HAOI2011]problem a(带权区间覆盖DP)
Time Limit: 10 Sec Memory Limit: 256 MBSubmit: 1747 Solved: 876[Submit][Status][Discuss] Descripti ...
- 学习笔记 - 中国剩余定理&扩展中国剩余定理
中国剩余定理&扩展中国剩余定理 NOIP考完回机房填坑 ◌ 中国剩余定理 处理一类相较扩展中国剩余定理更特殊的问题: 在这里要求 对于任意i,j(i≠j),gcd(mi,mj)=1 (就是互素 ...
- HTML中汉字空格占位符
== 普通的英文半角空格 == == == no-break space (普通的英文半角空格但不换行) == 中文全角空格 (一个中文宽度) == == en空格 (半个中文 ...
- Git命令行和Xcode结合使用(我来告诉你这行代码谁写的)
现在一直使用Git来管理代码,对于有强迫症的我来说,依旧选择了命令行,下面这段话可以更好的解释我为什么喜欢使用终端敲命令. There are a lot of different ways to u ...
- PHP基础1--环境搭建
主要: 环境搭建 站点配置 环境搭建 web运行流程: 1. 浏览器输入地址,回车(发送请求) 2. 根据规则找到对应web服务器.规则如下: 首先在本机hosts文件中找对应IP hosts位置: ...