# HG changeset patch # User anatofuz # Date 1590833635 -32400 # Node ID 9a8781112c5fd82b2bd894d70ce8ab93eac92e8e init diff -r 000000000000 -r 9a8781112c5f Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Sat May 30 19:13:55 2020 +0900 @@ -0,0 +1,14 @@ +TARGET = slide + +MARP = "marp" + +.SUFFIXES: .md .html + +.md.html: + $(MARP) --theme ./themes/cr.css --html $< + +all: $(TARGET).html + open $(TARGET).html + +clean: + rm $(TARGET).html diff -r 000000000000 -r 9a8781112c5f assets/logo.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/assets/logo.svg Sat May 30 19:13:55 2020 +0900 @@ -0,0 +1,683 @@ + + + +image/svg+xml \ No newline at end of file diff -r 000000000000 -r 9a8781112c5f slide.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide.md Sat May 30 19:13:55 2020 +0900 @@ -0,0 +1,17 @@ +--- +marp: true +title: 並列信頼研のテンプレート +paginate: true +--- + + +# タイトル + +- Author + - 琉球大学大学情報工学科 + + +--- + +# 研究目的 + diff -r 000000000000 -r 9a8781112c5f themes/cr.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/themes/cr.css Sat May 30 19:13:55 2020 +0900 @@ -0,0 +1,11 @@ +/* @theme cr */ + +@import 'default'; + +section { + background-image: url("assets/logo.svg"); + background-position: right 3% bottom 2%; + background-repeat: no-repeat; + background-attachment: 5%; + background-size: 20% auto; +}