typora的一些快捷键与用法

371 阅读3分钟

typora设置字体颜色

开启内联公式

文件——>偏好设置(Ctrl+逗号)——>Markdown——>勾选“内联公式”——>重启Typora

颜色公式代码大全

$\textcolor{GreenYellow}{GreenYellow} $
$\textcolor{Yellow}{Yellow}$
$\textcolor{Goldenrod}{Goldenrod} $
$\textcolor{Dandelion}{Dandelion}$
$\textcolor{Apricot}{Apricot} $
$\textcolor{Peach}{Peach}$
$\textcolor{Melon}{Melon} $
$\textcolor{YellowOrange}{YellowOrange}$
$\textcolor{Orange}{Orange} $
$\textcolor{BurntOrange}{BurntOrange}$
$\textcolor{Bittersweet}{Bittersweet}$
$\textcolor{RedOrange}{RedOrange} $
$\textcolor{Mahogany}{Mahogany}$
$\textcolor{Maroon}{Maroon} $
$\textcolor{BrickRed}{BrickRed}$
$\textcolor{Red}{Red} $
$\textcolor{OrangeRed}{OrangeRed}$
$\textcolor{RubineRed}{RubineRed}$
$\textcolor{WildStrawberry}{WildStrawberry}$
$\textcolor{Salmon}{Salmon}$
$\textcolor{CarnationPink}{CarnationPink}$
$\textcolor{Magenta}{Magenta} $
$\textcolor{VioletRed}{VioletRed}$
$\textcolor{Rhodamine}{Rhodamine} $
$\textcolor{Mulberry}{Mulberry}$
$\textcolor{RedViolet}{RedViolet} $
$\textcolor{Fuchsia}{Fuchsia}$
$\textcolor{Lavender}{Lavender} $
$\textcolor{Thistle}{Thistle}$
$\textcolor{Orchid}{Orchid} $
$\textcolor{DarkOrchid}{DarkOrchid}$
$\textcolor{Purple}{Purple} $
$\textcolor{Plum}{Plum}$
$\textcolor{Violet}{Violet} $
$\textcolor{RoyalPurple}{RoyalPurple}$
$\textcolor{BlueViolet}{BlueViolet}$
$\textcolor{Periwinkle}{Periwinkle}$
$\textcolor{CadetBlue}{CadetBlue}$
$\textcolor{CornflowerBlue}{CornflowerBlue}$
$\textcolor{MidnightBlue}{MidnightBlue}$
$\textcolor{NavyBlue}{NavyBlue} $
$\textcolor{RoyalBlue}{RoyalBlue}$
$\textcolor{Blue}{Blue} $
$\textcolor{Cerulean}{Cerulean}$
$\textcolor{Cyan}{Cyan} $
$\textcolor{ProcessBlue}{ProcessBlue}$
$\textcolor{SkyBlue}{SkyBlue} $
$\textcolor{Turquoise}{Turquoise}$
$\textcolor{TealBlue}{TealBlue} $
$\textcolor{Aquamarine}{Aquamarine}$
$\textcolor{BlueGreen}{BlueGreen} $
$\textcolor{Emerald}{Emerald}$
$\textcolor{JungleGreen}{JungleGreen}$
$\textcolor{SeaGreen}{SeaGreen} $
$\textcolor{Green}{Green}$
$\textcolor{ForestGreen}{ForestGreen}$
$\textcolor{PineGreen}{PineGreen} $
$\textcolor{LimeGreen}{LimeGreen}$
$\textcolor{YellowGreen}{YellowGreen}$
$\textcolor{SpringGreen}{SpringGreen}$
$\textcolor{OliveGreen}{OliveGreen}$
$\textcolor{RawSienna}{RawSienna} $
$\textcolor{Sepia}{Sepia}$
$\textcolor{Brown}{Brown} $
$\textcolor{Tan}{Tan}$
$\textcolor{Gray}{Gray} $
$\textcolor{Black}{Black}$
​
​
进入开发者模式改html代码
  • 右键——>检查元素
  • 视图——>开发者工具,打开html代码调试模式
  • 按快捷键 Shift+F12
示例:
style="color:red"style="color:maroon"style="color:fuchsia"style="color:brown"style="color:blue"style="color:aqua"style="color:green"style="color:orange"style="color:purple"style="color:white;background:black;"style="background:yellow"style="background:red"style="background:orange"style="color:white;background:green"style="color:white;background:blue"

一、各级标题

一级标题对应一个 # 号; 二级标题对应两个 # 号; 以此类推。。。一共六级标题。

二、有序和无需列表

1、用"1."+空格创建有序列表
  1. 有序1
  2. 有序2
2、使用星号(*)、加号(+)或是减号(-),再加一个空格作为列表标记;
  • 无序列表

    PS:当列表分级时,使用tap进行区分
    

三、强调文本

斜体文本:可以在需要标注为斜体文本前及斜体文本结尾,输入一个星号 * 或者一个下划线 _; 粗体文本:可以在需要标注为粗体文本前及粗体文本结尾,输入两个星号 ** 或者两个下划线 _; 粗斜体文本:可以在需要标注为粗斜体文本前及粗斜体文本结尾,输入三个星号

四、超链接

[链接名称](链接地址)

五、引用

引用是在‘>’后加空格,而后书写文字

加‘>>’便是二级引用,以此类推

六、分割线

可以在一行中用三个 - 或者 * 来建立一条分隔线 类如:


七、删除线

在需要删除的文字前后各使用两个 ~ 这里删除掉

八、下划线

文字首部和尾部加上 文本

在这里划下划线

九、表格

表格使用 | 来分隔不同的单元格,使用 - 来分隔表头和其他行 如果想调整表格的左对齐、右对齐、居中对齐: :-:将表头及单元格的内容左对齐; -::将表头及单元格的内容右对齐; :-::将表头及单元格的内容居中对齐;

十、图片

十一、注脚

脚注是对文本的备注说明,脚注与链接的区别:

这是个有注脚的文本。2 点击超链接会移动至下

[2]  注脚内容 第二条

这是个有注脚的文本。1

[1]  注脚1

十二、代码块

一行内使用直接用两个反引号引用‘``’

比如说这样我引用了这个代码

多行引用需要在所引用代码的 上一行 和 下一行 分别加上三个反引号 `

Ctrl+Shift+K

十三、快捷键

  • 加粗 Ctrl + B
  • 斜体 Ctrl + I
  • 引用 Ctrl + Q
  • 插入链接 Ctrl + L
  • 插入代码 Ctrl + K
  • 插入图片 Ctrl + G
  • 提升标题 Ctrl + H
  • 有序列表 Ctrl + O
  • 无序列表 Ctrl + U
  • 横线 Ctrl + R
  • 撤销 Ctrl + Z
  • 重做 Ctrl + Y

十四、Typora快捷键 (for Windows)

功能快捷键
标题CTRL + 数字
加粗CTRL+B
倾斜CTRL+I
下划线CTRL+U
删除线Alt+Shift+5
表格CTRL+ T
生成目录输入[TOC]后回车
选中整行CTRL+L
选中字符CTRL+D
选中同格式CTRL+E
跳至开头CTRL+Home
跳至结尾CTRL+End
查找搜索CTRL+F
查找替换CTRL+H
代码块CTRL+Shift+
插入图片CTRL+Shift+I
插入链接CTRL+K
选中同格式CTRL+E
跳至开头CTRL+Home
跳至结尾CTRL+End
查找搜索CTRL+F
查找替换CTRL+H
代码块CTRL+Shift+
插入图片CTRL+Shift+I
插入链接CTRL+K

\