├── .vscode
└── settings.json
├── README.md
├── Scenery.md
├── SimpleBlue.md
├── doc
├── Scenery.pdf
├── Scenery
│ ├── Scenery_1.jpg
│ ├── Scenery_10.jpg
│ ├── Scenery_11.jpg
│ ├── Scenery_12.jpg
│ ├── Scenery_13.jpg
│ ├── Scenery_14.jpg
│ ├── Scenery_2.jpg
│ ├── Scenery_3.jpg
│ ├── Scenery_4.jpg
│ ├── Scenery_5.jpg
│ ├── Scenery_6.jpg
│ ├── Scenery_7.jpg
│ ├── Scenery_8.jpg
│ └── Scenery_9.jpg
├── SimpleBlue.pdf
└── SimpleBlue
│ ├── SimpleBlue_1.jpg
│ ├── SimpleBlue_10.jpg
│ ├── SimpleBlue_11.jpg
│ ├── SimpleBlue_12.jpg
│ ├── SimpleBlue_13.jpg
│ ├── SimpleBlue_2.jpg
│ ├── SimpleBlue_3.jpg
│ ├── SimpleBlue_4.jpg
│ ├── SimpleBlue_5.jpg
│ ├── SimpleBlue_6.jpg
│ ├── SimpleBlue_7.jpg
│ ├── SimpleBlue_8.jpg
│ └── SimpleBlue_9.jpg
├── images
├── bg.png
├── bg1.jpg
├── bg2.jpg
├── bg3.jpg
├── bg4.jpg
├── bg5.jpg
├── bg6.jpg
├── logo.png
├── logo1.png
├── ph1.jpg
└── photo.png
└── themes
├── UCASSce.css
└── UCASSimple.css
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "markdown.marp.themes": [
3 | "https://example.com/foo/bar/custom-theme.css",
4 | "./themes/UCASSimple.css",
5 | "./themes/UCASSce.css"
6 | ]
7 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Marp-Theme-UCAS 国科大Marp 主题
2 |
3 | > 如何使用Markdown做PPT?本仓库是利用Marp实现的国科大markdown Slides
4 |
5 | 这是为国科大设计的两款 [Marp](https://github.com/marp-team/marp) 主题.
6 |
7 | 如果你想要使用这两款主题,强烈建议你先看一下生成的pdf文件。
8 |
9 | 更多使用细节,可以点击 [link](https://mdnice.com/writing/9cb2de742bed48d0b131e35d653515f2)
10 |
11 | 如果你想自定义Marp主题,可以看一下这篇教程 [link](https://zhuanlan.zhihu.com/p/449668027)
12 |
13 | ## File structure
14 |
15 | ```bash
16 | Marp
17 | |__ .vscode
18 | | |__settings.json //主题配置文件
19 | |__ doc
20 | | |__Scenery //Scenery.md 生成的PPT图片
21 | | |__SimpleBlue //SimpleBLue.md 生成的PPT图片
22 | | |__Scenery.pdf //Scenery.md 导出的Pdf
23 | | |__SimpleBlue.pdf //SimpleBlue.md 导出的Pdf
24 | |__ images //文稿和主题所用到的图片文件 可对背景和logo进行替换
25 | |__ themes
26 | | |__UCASSce.css //UCASSce主题文件
27 | | |__UCASSimple.css //UCASSimple主题文件
28 | |__Scenery.md //UCASSce主题对应的md文件
29 | |__SimpleBlue.md //UCASSimple主题对应的md文件
30 | ```
31 |
32 | ## Some Picture
33 |
34 | 
35 |
36 | 
37 |
38 | 
39 |
40 | 
41 |
--------------------------------------------------------------------------------
/Scenery.md:
--------------------------------------------------------------------------------
1 | ---
2 | marp: true
3 | theme: UCASSce
4 | paginate: true
5 | ---
6 |
7 |
10 | 
11 |
12 |
13 |
14 |
15 |
16 |
17 | # 汇报题目 h1样式
18 | ## 副标题 h2样式
19 | **BeWater 2021-12-10**
20 |
21 |
22 | ---
23 |
36 |
39 |
40 | 
41 | # 目 录
42 |
43 | ###### 1 Slide 概述
44 | ###### 2 文字展示
45 | ###### 3 代码展示
46 | ###### 4 公式展示
47 | ###### 5 表格展示
48 | ###### 6 图片展示
49 | ###### 7 其它展示
50 | ###### 8 参考文献&引用展示
51 |
52 | ---
53 |
66 |
69 |
70 | 
71 | # 目 录
72 |
73 | ###### 1 Slide 概述
74 | ###### 2 文字展示
75 | ###### 3 代码展示
76 | ###### 4 公式展示
77 | ###### 5 表格展示
78 | ###### 6 图片展示
79 | ###### 7 其它展示
80 | ###### 8 参考文献&引用展示
81 |
82 | ---
83 |
84 |
85 | 本PPT借助插件Vscode插件Marp书写而成,由markdown文档编辑,方便公式和代码的展示与排版。
86 |
87 | **环境:**
88 | - 系统:Win10
89 | - 软件:VsCode 插件:Marp
90 | - theme:自定义主题 UCASSce ,基于官方uncover主题修改
91 |
92 | **特征:**
93 | - 背景选用果壳风景,每页上方标题栏基于Marp header格式进行修改而成。
94 | - 首尾页和目录页图片基于背景得到,首尾页可根据文字内容在本页修改标题样式,目录页可根据文字内容对图片进行大小位置调整
95 |
96 | ---
97 |
98 | **h1 h2 只在首页应用 h6 只在目录页应用**
99 | ### h3 标题文字
100 | #### h4 标题文字
101 | **加粗文字**
102 | 普通文字
103 | *斜体文字*
104 | ~~删除线~~
105 |
106 |
107 | ---
108 |
109 |
110 | ### 行内代码展示
111 | 行内代码展示 `this is a code`
112 |
113 | ### 代码块展示
114 | **python code**
115 |
116 | ``` python
117 | # python code
118 | import torch
119 |
120 | def Net()
121 |
122 | ```
123 | ---
124 |
125 |
126 | **C++ code**
127 | ``` C++
128 | //c++ code
129 | #include
130 | #include
131 | using namespace std;
132 |
133 | int main(
134 | cout<<"hello world!";
135 | return 0;
136 | )
137 |
138 | ```
139 | ---
140 |
141 |
142 | 行内公式 $123$
143 |
144 | 行间公式:
145 |
146 | $$
147 |
148 | D(x) = \begin{cases}
149 | \lim\limits_{x \to 0} \frac{a^x}{b+c}, & x<3 \\
150 | \pi, & x=3 \\
151 | \int_a^{3b}x_{ij}+e^2 \mathrm{d}x,& x>3 \\
152 | \end{cases}
153 |
154 | $$
155 |
156 | 注意:行间公式的编号适配不是很好,加编号会排版错乱
157 |
158 | ---
159 |
160 |
161 | | 表头 | 表头 | 表头 |
162 | | ---- | ---- |--- |
163 | | 单元格 | 单元格 |单元格|
164 | | 单元格 | 单元格 |单元格|
165 |
166 | ---
167 |
168 | ### 普通图片
169 | 图片滤镜命令
170 |
171 | |
172 |
173 |
174 | ---
175 |
176 |
177 | ### 背景图片
178 |
179 | 
180 |
181 | ---
182 |
183 | 一些表情
184 |
185 | :+1: :-1: :smile: :heart: :cry: :sob: :a: :b: :angry: :grin: :tongue: :ru: :us: :cn:
186 |
187 | ---
188 |
194 | ### 一些参考& 进一步阅读
195 |
196 | > Marp 官方文档 [link](https://marpit.marp.app/markdown)
197 | > 分栏显示 [link](https://github.com/marp-team/marp/discussions/192)
198 | > Marp VSCode教程 [link](https://github.com/marp-team/marp-vscode)
199 | > CAI Marp详细教程博客 [link](https://caizhiyuan.gitee.io/categories/skills/20200730-marp.html#%E5%8A%9F%E8%83%BD)
200 | > theme gaia 源代码 [link](https://github.com/marp-team/marp-core/blob/main/themes/gaia.scss)
201 | > theme uncover 源代码 [link](https://github.com/marp-team/marp-core/blob/main/themes/uncover.scss)
202 |
203 | ---
204 |
213 |
214 |
217 |
218 | 
219 |
220 |
221 |
222 |
223 | # 请各位老师批评指正
224 | **BeWater 2021-12-10**
225 | 
226 |
227 |
--------------------------------------------------------------------------------
/SimpleBlue.md:
--------------------------------------------------------------------------------
1 | ---
2 | marp: true
3 | theme: UCASSimple
4 | paginate: true
5 | ---
6 |
7 |
12 |
13 |
17 |
18 | 
19 | # 汇报题目 h1样式
20 | ## 副标题 h2样式
21 |
22 | **BeWater**
23 | **2021-12-10**
24 |
25 |
26 | ---
27 |
40 |
43 |
44 | 
45 | # 目 录
46 |
47 | ###### 1 Slide 概述
48 | ###### 2 文字展示
49 | ###### 3 代码展示
50 | ###### 4 公式展示
51 | ###### 5 表格展示
52 | ###### 6 图片展示
53 | ###### 7 其它展示
54 | ###### 8 参考文献&引用展示
55 |
56 | ---
57 |
58 |
59 | 本PPT借助插件Vscode插件Marp书写而成,由markdown文档编辑,方便公式和代码的展示与排版。
60 |
61 | **环境:**
62 | - 系统:Win10
63 | - 软件:VsCode 插件:Marp
64 | - theme:自定义主题 UCASSimple ,基于官方uncover主题修改
65 |
66 | **特征:**
67 | - 背景选用简约蓝色背景,每页上方标题栏基于Marp header格式进行修改而成。
68 | - 首尾页和目录页蓝色色块基于背景得到,首尾页可根据文字内容在本页修改标题样式,目录页可根据文字内容对色块进行大小位置调整
69 |
70 | ---
71 |
72 | **h1 h2 只在首页应用 h6 只在目录页应用**
73 | ### h3 标题文字
74 | #### h4 标题文字
75 | **加粗文字**
76 | 普通文字
77 | *斜体文字*
78 | ~~删除线~~
79 |
80 |
81 | ---
82 |
83 |
84 | ### 行内代码展示
85 | 行内代码展示 `this is a code`
86 |
87 | ### 代码块展示
88 | **python code**
89 |
90 | ``` python
91 | # python code
92 | import torch
93 |
94 | def Net()
95 |
96 | ```
97 | ---
98 |
99 |
100 | **C++ code**
101 | ``` C++
102 | //c++ code
103 | #include
104 | #include
105 | using namespace std;
106 |
107 | int main(
108 | cout<<"hello world!";
109 | return 0;
110 | )
111 |
112 | ```
113 | ---
114 |
115 |
116 | 行内公式 $123$
117 |
118 | 行间公式:
119 |
120 | $$
121 |
122 | D(x) = \begin{cases}
123 | \lim\limits_{x \to 0} \frac{a^x}{b+c}, & x<3 \\
124 | \pi, & x=3 \\
125 | \int_a^{3b}x_{ij}+e^2 \mathrm{d}x,& x>3 \\
126 | \end{cases}
127 |
128 | $$
129 |
130 | 注意:行间公式的编号适配不是很好,加编号会排版错乱
131 |
132 | ---
133 |
134 |
135 | | 表头 | 表头 | 表头 |
136 | | ---- | ---- |--- |
137 | | 单元格 | 单元格 |单元格|
138 | | 单元格 | 单元格 |单元格|
139 |
140 | ---
141 |
142 | ### 普通图片
143 | 图片滤镜命令
144 |
145 | |
146 |
147 |
148 | ---
149 |
150 |
151 | ### 背景图片
152 |
153 | 
154 |
155 | ---
156 |
157 | 一些表情
158 |
159 | :+1: :-1: :smile: :heart: :cry: :sob: :a: :b: :angry: :grin: :tongue: :ru: :us: :cn:
160 |
161 | ---
162 |
168 | ### 一些参考& 进一步阅读
169 |
170 | > Marp 官方文档 [link](https://marpit.marp.app/markdown)
171 | > 分栏显示 [link](https://github.com/marp-team/marp/discussions/192)
172 | > Marp VSCode教程 [link](https://github.com/marp-team/marp-vscode)
173 | > CAI Marp详细教程博客 [link](https://caizhiyuan.gitee.io/categories/skills/20200730-marp.html#%E5%8A%9F%E8%83%BD)
174 | > theme gaia 源代码 [link](https://github.com/marp-team/marp-core/blob/main/themes/gaia.scss)
175 | > theme uncover 源代码 [link](https://github.com/marp-team/marp-core/blob/main/themes/uncover.scss)
176 |
177 | ---
178 |
187 |
188 |
192 |
193 | 
194 | # 请各位老师批评指正
195 |
196 |
197 | **BeWater**
198 | **2021-12-10**
199 |
200 |
--------------------------------------------------------------------------------
/doc/Scenery.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery.pdf
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_1.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_10.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_11.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_12.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_13.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_14.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_2.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_3.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_4.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_5.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_6.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_7.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_8.jpg
--------------------------------------------------------------------------------
/doc/Scenery/Scenery_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/Scenery/Scenery_9.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue.pdf
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_1.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_10.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_11.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_12.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_13.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_2.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_3.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_4.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_5.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_6.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_7.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_8.jpg
--------------------------------------------------------------------------------
/doc/SimpleBlue/SimpleBlue_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/doc/SimpleBlue/SimpleBlue_9.jpg
--------------------------------------------------------------------------------
/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg.png
--------------------------------------------------------------------------------
/images/bg1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg1.jpg
--------------------------------------------------------------------------------
/images/bg2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg2.jpg
--------------------------------------------------------------------------------
/images/bg3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg3.jpg
--------------------------------------------------------------------------------
/images/bg4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg4.jpg
--------------------------------------------------------------------------------
/images/bg5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg5.jpg
--------------------------------------------------------------------------------
/images/bg6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/bg6.jpg
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/logo.png
--------------------------------------------------------------------------------
/images/logo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/logo1.png
--------------------------------------------------------------------------------
/images/ph1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/ph1.jpg
--------------------------------------------------------------------------------
/images/photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BeWaterMyFriend7/Marp-Theme-UCAS/6f39966f0ee3cbf7f65d72bd964533989b59b4b7/images/photo.png
--------------------------------------------------------------------------------
/themes/UCASSce.css:
--------------------------------------------------------------------------------
1 |
2 | /* @theme UCASSce */
3 |
4 | @charset "UTF-8";
5 | @import 'uncover';
6 | @import url('https://fonts.googleapis.com/css?family=Lato:400,900|Roboto+Mono:400,700&display=swap');
7 | @import '~highlight.js/styles/sunburst';
8 |
9 | section {
10 | font-size: 25px;
11 | padding: 50px;
12 | text-align: left;
13 | font-family:Arial, Helvetica, sans-serif;
14 | background:whitesmoke;
15 | }
16 |
17 | h1 {
18 | text-align:left;
19 | color: rgb(60, 112, 198);
20 | margin-top: 150px;
21 | margin-bottom: 0px;
22 | font-size:72px;
23 | }
24 |
25 | h2 {
26 | text-align:left;
27 | color: rgb(60, 112, 198);
28 | margin-top: 0px;
29 | margin-bottom: 10px;
30 | font-size:60px;
31 | }
32 |
33 | h3 {
34 | color: rgb(60, 112, 198);
35 | font-size:36px;
36 | text-align:left;
37 | margin-top: 5px;
38 | margin-bottom: 5px;
39 | }
40 |
41 | h4 {
42 | font-size:30px;
43 | text-align:left;
44 | margin-top: 5px;
45 | margin-bottom: 5px;
46 | }
47 |
48 |
49 | h6 {
50 | text-align:center;
51 | font-size:30px;
52 | text-align:left;
53 | margin-top: 10px;
54 | margin-bottom: 10px;
55 | }
56 |
57 | header {
58 | left: 50px;
59 | right: 50px;
60 | top: 10px;
61 | height: 50px;
62 | background-image: url("./images/logo.png");
63 | background-position: right top;
64 | background-repeat: no-repeat;
65 | background-size: 200px;
66 | text-align:left;
67 | color: rgb(60, 112, 198);
68 | font-weight: bold;
69 | font-size:36px;
70 | }
71 |
72 |
73 |
--------------------------------------------------------------------------------
/themes/UCASSimple.css:
--------------------------------------------------------------------------------
1 |
2 | /* @theme UCASSimple */
3 |
4 | @charset "UTF-8";
5 | @import 'uncover';
6 | @import url('https://fonts.googleapis.com/css?family=Lato:400,900|Roboto+Mono:400,700&display=swap');
7 | @import '~highlight.js/styles/sunburst';
8 |
9 | section {
10 | font-size: 25px;
11 | padding: 50px;
12 | text-align: left;
13 | font-family:Arial, Helvetica, sans-serif;
14 | background:whitesmoke;
15 | }
16 |
17 | h1 {
18 | text-align:center;
19 | color: white;
20 | margin-top: 50px;
21 | margin-bottom: 0px;
22 | font-size:72px;
23 | }
24 |
25 | h2 {
26 | text-align:center;
27 | margin-top: 0px;
28 | margin-bottom: 50px;
29 | color: white;
30 | font-size:60px;
31 | }
32 |
33 | h3 {
34 | color: rgb(60, 112, 198);
35 | font-size:36px;
36 | text-align:left;
37 | margin-top: 5px;
38 | margin-bottom: 5px;
39 | }
40 |
41 | h4 {
42 | font-size:30px;
43 | text-align:left;
44 | margin-top: 5px;
45 | margin-bottom: 5px;
46 | }
47 |
48 |
49 | h6 {
50 | text-align:center;
51 | font-size:30px;
52 | text-align:left;
53 | margin-top: 10px;
54 | margin-bottom: 10px;
55 | }
56 |
57 | header {
58 | left: 50px;
59 | right: 50px;
60 | top: 10px;
61 | height: 50px;
62 | background-image: url("./images/logo.png");
63 | background-position: right top;
64 | background-repeat: no-repeat;
65 | background-size: 200px;
66 | text-align:left;
67 | color: rgb(60, 112, 198);
68 | font-weight: bold;
69 | font-size:36px;
70 | }
71 |
72 |
73 |
--------------------------------------------------------------------------------