typora基本用法

Posted setcreed

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typora基本用法相关的知识,希望对你有一定的参考价值。

markdown基本语法

标题

# 一级标题
## 二级标题
### 三级标题

斜体

*斜体*

加粗

**加粗**

==高亮==

==高亮==

上标2^3^

x^y^

效果: x^y^

下标 CH~4~

C~H~4

代码引用

hello world!

> hello world!

代码引入 (使用```+编程语言)

例子:

print("hello world!")

插入链接(链接显示)

https://www.cnblogs.com/setcreed/

插入链接 (显示连接描述)

[我的博客园](https://www.cnblogs.com/setcreed/)

我的博客

插入图片(本地图片)

技术图片

插入图片(网上链接)

技术图片

有序和无序列表

有序列表:

1. one
2. two
3. three

无序列表:

- one
- two
- three
  • one
  • two
  • three

分割线 (---)


删除线

~~我被删除了~~

我被删除了

表格

ctrl+/ 进入源码模式

姓名| 年龄| 身高
:-:|:-|-:
A|20|180
B|21|178
姓名 年龄 身高
A 20 180
B 21 178

数学公式

想要运用 Markdown 数学公式,必须在代码首尾加上这样一个符号$ ,对其进行特殊标注。行内公式用$代码$

  • \\(a+b\\)

上标采用$^上标内容$,下标采用$_下标内容$

  • \\(x^2\\)
  • \\(C_2H_5OH\\)

多个字符上标或下标用包裹作为一个单位

  • \\(x^2n\\)
  • \\(x_2n\\)
$\\sum^x \\to \\infty_y \\to 0\\fracxy$

\\(\\sum^x \\to \\infty_y \\to 0\\fracxy\\)

$\\frac12$

\\(\\frac12\\)

$\\sum^10_i=1f(i)\\,thanks$

\\(\\sum^10_i=1f(i)\\,thanks\\)

$$
\\sum^10_i=1f(i)\\,thanks
$$

\\[ \\sum_i=1^10f(i)\\,thanks \\]

以上是关于typora基本用法的主要内容,如果未能解决你的问题,请参考以下文章

各种STL的基本用法

Flutter AppBar基本用法、TabBar基本用法、自定义TabBar

gcc基本用法

linux 详解useradd 命令基本用法

iOS UIScrollView 的基本用法

adb logcat 基本用法