Initial commit
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
# 项目名称
|
||||
|
||||
*这里写项目的各类介绍信息、背景、动机等内容*
|
||||
|
||||
## 项目受众
|
||||
|
||||
*注:这里写你的项目所面向的受众,本项目能给他们带来什么,对他们的基础能力要求有哪些*
|
||||
|
||||
## 目录
|
||||
*这里写你的项目目录,已完成的部分用添加上跳转链接*
|
||||
- [第1章](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter1/chapter1.md)
|
||||
- [第2章](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter2)
|
||||
- [2.1 我是2.1的标题](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter2/chapter2_1.md)
|
||||
- [2.2 我是2.2的标题](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter2/chapter2_2.md)
|
||||
- [第3章](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter3)
|
||||
- [3.1 我是3.1的标题](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter3/chapter3_1)
|
||||
- [3.1.1 我是3.1.1的标题](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter3/chapter3_1/chapter3_1_1.md)
|
||||
- [3.1.2 我是3.1.2的标题](https://github.com/datawhalechina/repo-template/blob/main/docs/chapter3/chapter3_1/chapter3_1_2.md)
|
||||
- 3.2 我是3.2的标题
|
||||
- 第4章
|
||||
- 4.1 我是4.1的标题
|
||||
- 4.2 我是4.2的标题
|
||||
|
||||
## 贡献者名单
|
||||
|
||||
| 姓名 | 职责 | 简介 |
|
||||
| :----| :---- | :---- |
|
||||
| 小明 | 项目负责人 | 一个理想主义者 |
|
||||
| 小红 | 第1章贡献者 | 小明的朋友 |
|
||||
| 小强 | 第2章贡献者 | 小明的朋友 |
|
||||
|
||||
*注:表头可自定义,但必须在名单中标明项目负责人*
|
||||
|
||||
## 参与贡献
|
||||
|
||||
- 如果你发现了一些问题,可以提Issue进行反馈,如果提完没有人回复你可以联系[保姆团队](https://github.com/datawhalechina/DOPMC/blob/main/OP.md)的同学进行反馈跟进~
|
||||
- 如果你想参与贡献本项目,可以提Pull request,如果提完没有人回复你可以联系[保姆团队](https://github.com/datawhalechina/DOPMC/blob/main/OP.md)的同学进行反馈跟进~
|
||||
- 如果你对 Datawhale 很感兴趣并想要发起一个新的项目,请按照[Datawhale开源项目指南](https://github.com/datawhalechina/DOPMC/blob/main/GUIDE.md)进行操作即可~
|
||||
|
||||
## 关注我们
|
||||
|
||||
<div align=center>
|
||||
<p>扫描下方二维码关注公众号:Datawhale</p>
|
||||
<img src="https://raw.githubusercontent.com/datawhalechina/pumpkin-book/master/res/qrcode.jpeg" width = "180" height = "180">
|
||||
</div>
|
||||
|
||||
## LICENSE
|
||||
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://img.shields.io/badge/license-CC%20BY--NC--SA%204.0-lightgrey" /></a><br />本作品采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议</a>进行许可。
|
||||
|
||||
*注:默认使用CC 4.0协议,也可根据自身项目情况选用其他协议*
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
- 第1章 [我是第1章的标题](chapter1/chapter1)
|
||||
- 第2章 我是第2章的标题
|
||||
- [2.1 我是2.1的标题](chapter2/chapter2_1)
|
||||
- [2.2 我是2.2的标题](chapter2/chapter2_2)
|
||||
- 第3章 我是第3章的标题
|
||||
- 3.1 我是3.1的标题
|
||||
- 3.1.1 [我是3.1.1的标题](chapter3/chapter3_1/chapter3_1_1)
|
||||
- 3.1.2 [我是3.1.2的标题](chapter3/chapter3_1/chapter3_1_2)
|
||||
@@ -0,0 +1,24 @@
|
||||
# 我是第1章的标题
|
||||
我是第1章的正文,下面给出插入图片的两种方式,分别为markdown语法和html语法。
|
||||
|
||||
markdown语法代码如下:
|
||||
```markdown
|
||||

|
||||
```
|
||||
效果如下:
|
||||

|
||||
|
||||
markdown语法简洁明了,但是其无法控制图片的大小,因此有图片缩放需求时可使用html语法,html语法代码如下:
|
||||
```html
|
||||
<div align=center>
|
||||
< img width="300" src="./images/1_1.jpeg"/>
|
||||
</div>
|
||||
<div align=center>图1.1 我是图片名称</div>
|
||||
```
|
||||
效果如下:
|
||||
<div align=center>
|
||||
<img width="300" src="./images/1_1.jpeg"/>
|
||||
</div>
|
||||
<div align=center>图1.1 我是图片名称</div>
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
@@ -0,0 +1 @@
|
||||
111
|
||||
@@ -0,0 +1,2 @@
|
||||
# 我是2.1的标题
|
||||
我是2.1的正文
|
||||
@@ -0,0 +1,2 @@
|
||||
# 我是2.2的标题
|
||||
我是2.2的正文
|
||||
@@ -0,0 +1,2 @@
|
||||
# 我是3.1.1的标题
|
||||
我是3.1.1的正文
|
||||
@@ -0,0 +1,2 @@
|
||||
# 我是3.1.2的标题
|
||||
我是3.1.2的正文
|
||||
Reference in New Issue
Block a user