首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >CMD Markdown basic & Math Cheatsheet

CMD Markdown basic & Math Cheatsheet

作者头像
风雨中的小七
发布于 2022-05-11 10:29:34
发布于 2022-05-11 10:29:34
47500
代码可运行
举报
运行总次数:0
代码可运行

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.

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
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

2. Basic Operators

3.Theory Deduction Operator

4 Upper and Lower Indices

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

5 Fraction

6. Bracket

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

7. Set Operator

8 Arrow

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.
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-01-29,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
暂无评论
推荐阅读
编辑精选文章
换一批
Convolution_model_Step_by_Step_v2a
Welcome to Course 4's first assignment! In this assignment, you will implement convolutional (CONV) and pooling (POOL) layers in numpy, including both forward propagation and (optionally) backward propagation.
列夫托尔斯昊
2020/08/25
1.8K2
Convolution_model_Step_by_Step_v2a
Emojify_v2a
Welcome to the second assignment of Week 2. You are going to use word vector representations to build an Emojifier.
列夫托尔斯昊
2020/08/25
1.6K0
Emojify_v2a
CentOS系统下多种图片压缩方案
在文章《使用TinyPNG来优化您的网站图片》介绍过TinyPNG提供的压缩服务,效果非常棒。ImgURL 图床也是使用TinyPNG来提供图片压缩,不过TinyPNG有免费次数限制。于是xiaoz寻找了Linux系统下的其它图片压缩方案,希望后期能够用到。
星哥玩云
2022/08/13
6040
CentOS系统下多种图片压缩方案
Tree - Information Theory
This will be a series of post about Tree model and relevant ensemble method, including but not limited to Random Forest, AdaBoost, Gradient Boosting and xgboost.
风雨中的小七
2019/09/10
4590
Tree - Information Theory
torch.nn.functional
原文链接:https://pytorch.org/docs/stable/nn.functional.html
狼啸风云
2019/09/19
1.9K0
数论-GCD、LCM、扩展欧几里得
给定若干区间的GCD,试还原原数组。 贪心乘最小的数使得区间内每个数是ans[i]的倍数(LCM),最后再检查一遍。
唔仄lo咚锵
2020/09/15
5290
将Shiny APP搭建为独立的桌面可执行程序 - Deploying R shiny app as a standalone application
某天,我发现了Shiny这个东西,当时兴冲冲的尝试官网上各种各样的例子,最后发现这个东西似乎只能充当一个“玩具”。如果要在本地运行,它需要一个完整的R环境,这对相当一部分用户来说是极度不友好的。另外,Rstudio主张将Shiny部署在https://www.shinyapps.io/,但是看到这个价格以及资源限制以后进一步被劝退了。
huofo
2022/03/17
6.2K1
将Shiny APP搭建为独立的桌面可执行程序 - Deploying R shiny app as a standalone application
腾讯云TKE-日志案例: 基于fluentbit、elasticsearch、kibana日志解决方案
本文介绍利用在腾讯云TKE应用市场中的三款软件 fluentbit,elasticsearch和kibana搭建一套适用于kubernetes环境的云原生一站式日志解决方案。
朱瑞卿
2020/11/02
2.2K0
腾讯云TKE-日志案例: 基于fluentbit、elasticsearch、kibana日志解决方案
小白也能看懂的BP反向传播算法之Surpass Backpropagation
上篇文章小白也能看懂的BP反向传播算法之Further into Backpropagation中,我们小试牛刀,将反向传播算法运用到了一个两层的神经网络结构中!然后往往实际中的神经网络拥有3层甚至更多层的结构,我们接下来就已一个三层的神经网络结构为例,分析如何运用动态规划来优化反向传播时微分的计算!
desperate633
2018/08/23
8960
Doing basic classifications with Decision Trees使用决策树做基本分类
In this recipe, we will perform basic classifications using Decision Trees. These are very nice models because they are easily understandable, and once trained in, scoring is very simple.
到不了的都叫做远方
2019/11/27
4140
Basic debugging using logging for iOS apps
今天周末时间关系,此文只完成了部分内容,后续完整内容请移步到博客(kunnan.blog.csdn.net)
公众号iOS逆向
2021/01/18
5620
Basic debugging using logging for iOS apps
Face_Recognition_v3a
In this assignment, you will build a face recognition system. Many of the ideas presented here are from FaceNet. In lecture, we also talked about DeepFace.
列夫托尔斯昊
2020/08/25
1.2K0
Face_Recognition_v3a
05.序列模型 W2.自然语言处理与词嵌入(作业:词向量+Emoji表情生成)
这些结果反映了某些性别歧视。例如,“computer 计算机”更接近“man 男人”,“literature 文学”更接近“woman 女人”。
Michael阿明
2021/02/19
7900
【SAP FICO系列】SAP ABAP的替代和校验
前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适。 正文部分 以下内容请参考,懒得翻译了 I. Creating, activating and transporting valida
matinal
2020/11/14
2K0
【SAP FICO系列】SAP ABAP的替代和校验
TKE上搭建EFK日志采集系统
需要创建一个SC,用来后续ES创建时候动态挂载PVC,在腾讯云中,如果挂载了卷,又起了多个pod,可以采用自动动态挂载PVC
聂伟星
2020/06/10
9370
深度学习-Faster RCNN论文笔记
在本文中,我们展示了算法的变化——用深度卷积神经网络计算区域提议——导致了一个优雅和有效的解决方案,其中在给定检测网络计算的情况下区域提议计算接近领成本。为此,我们引入了新的区域提议网络(RPN),它们共享state-of-the-art目标检测网络的卷积层。通过在测试时共享卷积,计算区域提议的边际成本很小(例如,每张图像10ms)。
肉松
2020/08/06
9620
深度学习-Faster RCNN论文笔记
Theme preview
This is a paragraph. I am still part of the paragraph.
caoayu
2020/09/23
4280
Theme preview
如何将TKE/EKS集群事件日志持久化
腾讯云上的tke集群和eks集群的事件日志默认只会保留一个小时,有的时候,服务出现了问题,需要根据历史事件日志来进行排查下,因为历史事件日志只有1个小时,这样给我们排查带来了极大不便。腾讯云上默认是支持将集群的事件日志采集到cls,但是cls是需要收费的,而且很多人习惯用Elasticsearch来查询日志。 下面我们通过开源的eventrouter来将日志采集到Elasticsearch,然后通过kibana来查询事件日志。 eventrouter介绍说明:https://github.com/heptiolabs/eventrouter
聂伟星
2022/04/30
1.3K9
【目录】Hexo+NexT+Gemini 搭建博客拥抱舒爽
首先在配置Hexo+NexT之前,最好阅读一下 Hexo官方文档 和 NexT使用文档
零式的天空
2022/03/27
2.3K0
【目录】Hexo+NexT+Gemini 搭建博客拥抱舒爽
Autonomous_driving_application_Car_detection_v3a
Welcome to your week 3 programming assignment. You will learn about object detection using the very powerful YOLO model. Many of the ideas in this notebook are described in the two YOLO papers: Redmon et al., 2016 and Redmon and Farhadi, 2016.
列夫托尔斯昊
2020/08/25
1.6K0
Autonomous_driving_application_Car_detection_v3a
推荐阅读
相关推荐
Convolution_model_Step_by_Step_v2a
更多 >
LV.4
这个人很懒,什么都没有留下~
作者相关精选
交个朋友
加入腾讯云官网粉丝站
蹲全网底价单品 享第一手活动信息
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档