Please refresh the page if equations are not rendered correctly.
---------------------------------------------------------------
@
1. 在markdown文件内跳转
目标点插入:
跳转到这里
起始点插入:
目标点插入:跳转到这里
[点击这里跳转](#跳转目标名称)
显示效果如下:
目标点插入:跳转到这里
起始点插入:点击这里跳转
此时Ctrl + 点击后者可以跳转到前者
2. 字体颜色
This text has the font Courier, is Blue, and 20px.
效果:
This text has the font Courier, is Blue, and 20px.
CSDN似乎不支持。完整方法来自;
Latex字体颜色:
\frac{d}{d x}\left( \textcolor{red}{k \frac{d T}{d x} }\right)+S=0
详细颜色设置见: Latex中如何设置字体颜色(3种方式) - Tsingke - 博客园
3. 分页
<div style="page-break-after: always; break-after: page;"></div>
插入以上代码后,之后的内容将从新的一页开始。
4. 自动插入目录
[TOC]
5. MarkDown中的有序列表和无序列表
无序列表 un-ordered list
可以使用“-”或者“*”均可:
* Red
* Green
* Blue
效果如下:
- Red
- Green
- Blue
有序列表 ordered list
1. Red
2. Green
3. Blue
效果如下:
- Red
- Green
- Blue
待办任务列表
- [ ] a task list item
- [ ] list syntax required
- [ ] normal **formatting**, @mentions, #1234 refs
- [ ] incomplete
- [x] completed
- [ ] Sublist 1
- [ ] Sublist 2
效果如下:
- a task list item
- list syntax required
- normal formatting, @mentions, #1234 refs
- incomplete
- completed
- Sublist 1
- Sublist 2
【Typora中也同样支持上面的子列表。】
- Sublist 2
6. 块注释 “>”
此处为块注释
第二行注释... ...
7. 鼠标悬停显示注释
首先对方程(2)中的[时间项进行对速度U关于时间t的欧拉全隐离散](## "fvm::ddt(U)")有......
效果- 当鼠标悬停在[ ]中的内容之上时显示文字注释(## "注释内容")内容:
首先对方程(2)中的时间项进行对速度U关于时间t的欧拉全隐离散有......
8. 在markdown中画流程图
查看链接:flowchart.js
8-嵌入B站视频
相比官方嵌入式代码,视频可以自适应屏幕,调节视频质量,关闭弹幕且避免非刻意的跳转B站。代码如下:
<iframe src="//player.bilibili.com/player.html?aid=19141078&bvid=BV1pW411J7s8&cid=31220967&page=1&danmaku=0&high_quality=0.5" allowfullscreen="allowfullscreen" width="100%" height="500" scrolling="no" frameborder="0" sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts">
代码解释:
BILIBILI 地址PC端参数
- &high_quality=1 (1=最高画质 0=最低画质)
- &danmaku=0 (1=打开弹幕 0=关闭弹幕)
iframe 参数
- allowfullscreen="allowfullscreen" #移动端全屏
- sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts" #禁止弹出网页
Comments NOTHING