Skip to content

Commit 4800a70

Browse files
Zzzzepinglee
authored andcommitted
rewrite ustcbeamer
1 parent e09a16a commit 4800a70

18 files changed

Lines changed: 294 additions & 205 deletions

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
main.pdf
2-
32
## Core latex/pdflatex auxiliary files:
43
*.aux
54
*.lof
@@ -66,6 +65,9 @@ acs-*.bib
6665
# changes
6766
*.soc
6867

68+
# comment
69+
*.cut
70+
6971
# cprotect
7072
*.cpt
7173

@@ -204,9 +206,16 @@ pythontex-files-*/
204206
# todonotes
205207
*.tdo
206208

209+
# vhistory
210+
*.hst
211+
*.ver
212+
207213
# easy-todo
208214
*.lod
209215

216+
# xcolor
217+
*.xcp
218+
210219
# xmpincl
211220
*.xmpi
212221

Makefile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
MAIN = main
2+
NAME = ustcbeamer
3+
STYFILES = $(NAME).sty
4+
5+
SHELL = bash
6+
LATEXMK = latexmk -xelatex
7+
8+
.PHONY : main sty clean all FORCE_MAKE
9+
10+
main : $(MAIN).pdf
11+
12+
all : main
13+
14+
sty : $(STYFILES)
15+
16+
$(MAIN).pdf : $(MAIN).tex $(STYFILES) FORCE_MAKE
17+
$(LATEXMK) $<
18+
19+
clean : FORCE_MAKE
20+
$(LATEXMK) -c $(MAIN).tex
21+
22+
distclean :
23+
$(LATEXMK) -C $(MAIN).tex

README.md

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1-
# USTC Beamer 模板
1+
# 中国科学技术大学Beamer模板
22

3-
生成文档:
4-
```
5-
latexmk
6-
```
3+
本项目是基于 [thomasWeise/ustcSlides](https://github.com/thomasWeise/ustcSlides) 修改而来,加了几种不同的颜色主题。
74

8-
清理临时文件:
9-
```
10-
latexmk -c
11-
```
5+
科大官网上有与之对应的[USTC公用PPT模板](http://lswhw.ustc.edu.cn/public/inc/editer/attached/file/20181106/20181106152958_72346.zip)
6+
7+
## 使用说明
8+
9+
`beamer.tex` 文件运行 `xelatex` 即可。模板 ustcbeamer 中定义了五个选项供选择:`ustcblue`, `ustcred`, `black`, `violet`, `blue`;分别对应了五种主题颜色。
10+
11+
建议使用 `ustcblue``ustcred`,两者均为[科大党委宣传部](http://lswhw.ustc.edu.cn/index.php/index/info/3370)规定的校徽标准红蓝配色。两个标准配色分别为:蓝 `cmyk(100,80,0,0)`、红 `cmyk(0,100,100,0)`,在 LaTeX 中使用需要除以 100。
12+
13+
本模板参考了 [thomasWeise/ustcSlides](https://github.com/thomasWeise/ustcSlides) 的,故而保留了 Thomas Weise 先生的原始配色(blue)。
14+
15+
此外,个人不太建议使用黑色(black),看上去像讣告。
16+
17+
18+
## 下载地址
19+
20+
- GitHub Releases:https://github.com/ustctug/ustcbeamer/releases
21+
22+
23+
## 其他
24+
25+
本人第一次做 LaTeX 模板,有什么问题望及时反馈,谢谢!
26+
27+
有其他的颜色或格式的需求可在github上反馈。

beamerthemeUSTC.sty

Lines changed: 0 additions & 67 deletions
This file was deleted.

figures/ustc_background_1.pdf

426 KB
Binary file not shown.

figures/ustc_background_2.pdf

426 KB
Binary file not shown.

figures/ustc_background_3.pdf

429 KB
Binary file not shown.

figures/ustc_background_4.pdf

426 KB
Binary file not shown.

figures/ustc_background_5.pdf

52.2 KB
Binary file not shown.

figures/ustc_cover_1.pdf

427 KB
Binary file not shown.

0 commit comments

Comments
 (0)