41# 标题1
2## 标题2
3...
4###### 标题6
求解过程中,为使得生成的加速度时程曲线偏于保守,会在设计反应谱上乘以一个系数,一般在原有基础上增大10%,即放大系数取1.1。生成的加速度时程的反应谱则以放大放大后的设计谱为目标进行迭代,下图中生成的加速度反应谱与放大后的设计反应谱几乎重合。
在每一行前面加上>
,多个>
号则为多级引用。
51>This is a blockquote with three paragraphs. This is first paragraph.
2>This is second paragraph.
3>
4>This is third paragraph.
5>>Paragraph with two '>' charaters.
效果:
This is a blockquote with three paragraphs. This is first paragraph.
This is second paragraph.
This is third paragraph.
Paragraph with two '>' charaters.
* 列表项
、+ 列表项
、- 列表项
表示无序列表,1. 列表项
为有序列表:
41## 无序列表
2* ListItem1
3+ ListItem2
4- ListItem3
它看起来像这样:
41## 无序列表
21. ListItem1
32. ListItem2
44. ListItem3
它看起来像这样:
41## 列表里面添加引用
21. ListItem1
3 > Blockquote.
43. ListItem2
它看起来像这样:
ListItem1
This is a blockquote.
ListItem2
使用- [ ]
或者-[x]
来表示未完成或者完成:
31- A task item
2- [x] A completed item
3- normal **formatting**
它看起来像这样:
A task item
A completed item
normal formatting
由```
包围的内容为代码区块:
51```
2function test() {
3 console.log("Hello world");
4}
5```
也可以在第一个```
后面写上语言的名称:
51```Javascript
2function test() {
3 console.log("Hello World");
4}
5```
它看起来像这样:
31function test() {
2 console.log("Hello World");
3}
在Markdown里,表格写起来像这样:
41| First Header | Second Header |
2| ------------ | ------------- |
3| cell 1 1 | cell 1 2 |
4| cell 2 1 | cell 2 2 |
它看起来像这样:
First Header | Second Header |
---|---|
cell 1 1 | cell 1 2 |
cell 2 1 | cell 2 2 |
在第二行(横虚线)可以通过冒号(:)来设置居左、居右、居中:
41| First Header | Second Header | Third Header |
2| :----------- | ------------- | -----------: |
3| cell 1 1 | cell 1 2 | cell 1 3 |
4| cell 2 1 | cell 2 2 | cell 2 3 |
它看起来像这样:
First Header | Second Header | Third Header |
---|---|---|
cell 1 1 | cell 1 2 | cell 1 3 |
cell 2 1 | cell 2 2 | cell 2 3 |
31## 语法
2眼睛是心灵的窗户[脚注1].
3[^脚注1]:窗户,在建筑学上是指墙或屋顶上建造的洞口,用以使光线或空气进入室内。
它看起来像这样:
眼睛是心灵的窗户1.
***
或者---
将绘制一条水平直线。
要链接的文字使用[]
包围,后面紧接()
,内部为要链接的地址。
11This is [an example](http://example.com "Title") link with title.
它看上去像这样:
This is an example link with title.
类似于锚。
11这个[链接](#水平线)将导航到**水平线**章节,无论多少级标题都只写一个#号。
它看上去像这样:
这个链接将导航到水平线章节。
参考链接的使用如下:
51This is [an example][id] reference link.
2This is [an other][] reference link.
3other document text...
4[id]:http://example.com "Optional title"
5[an other]: http://example.com "Optional title"
它看起来像这样:
This is an example reference link. This is an other reference link. other document text...
插入普通的链接路径,使用一对尖括号<>
。
11欢迎访问<www.example.com>。
欢迎访问www.example.com。
插入图片的语法:
31
2
3
使用*
或者_
表示强调,推荐使用*
号。他们在HTML中生成<em>
标签:
21*single asterisks*
2_single underscores_
它看起来像这样:
single asterisks single underscores
使用**
或者__
表示强调,推荐使用**
号,他们在HTML中生成<strong>
标签:
21**double asterisks**
2__double underscores__
它看起来像这样:
double asterisks double underscores
使用`
来包含行内的代码。
使用~~
来绘制删除线:
~~要删除的字~~
显示为要删除的字
<u>下划线</u>
显示为 下划线