Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit 3d5e5e5

Browse files
committed
.
1 parent 59f7e29 commit 3d5e5e5

File tree

4 files changed

+22
-86
lines changed

4 files changed

+22
-86
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ clean:
2424
html: server docs/index.html $(HTML)
2525

2626
docs/index.html: slide/index.md
27-
pandoc --to html --standalone --output $@ $^
27+
pandoc --smart --to html --standalone --output $@ $^
2828

2929
HTML_DEV = docs/dev/kw.js docs/dev/phantom.js docs/dev/slide.yaml
3030

@@ -43,7 +43,7 @@ docs/html/%.html: $(HTML_DEV) slide/%.md
4343
--output=$(html1) \
4444
-V revealjs-url=../lib/reveal.js-3.5.0 \
4545
-V theme=serif \
46-
--css=../lib/kw.css \
46+
--css=../dev/kw.css \
4747
--smart
4848

4949
@# Then, PhantomJS is used to patch the temporary HTML and finishes it.

docs/dev/kw.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ code.sourceCode {
2323
.quiz li {
2424
padding-bottom: 10ex;
2525
}
26+
27+
strong {
28+
color: #d22;
29+
}

docs/index.html

Lines changed: 7 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,27 @@
4444
code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
4545
</style>
4646
<link rel="stylesheet" href="lib/reveal.js-3.5.0/css/theme/solarized.css" type="text/css" />
47-
<link rel="stylesheet" href="lib/kw.css" type="text/css" />
47+
<link rel="stylesheet" href="dev/kw.css" type="text/css" />
4848
</head>
4949
<body>
5050
<div id="header">
5151
<h1 class="title">プログラミング第一</h1>
5252
</div>
53-
<style>
53+
<!--style>
5454
body {
5555
margin: 5em;
5656
}
5757
5858
code {
5959
color: #b44;
6060
}
61-
</style>
61+
</style-->
6262
<script type="text/javascript" src="lib/reveal.js-3.5.0/plugin/highlight/highlight.js"></script>
6363
<script>hljs.initHightlightingOnLoad();</script>
64+
<h1 id="講義資料等">講義資料等</h1>
65+
<ul>
66+
<li>9月26日 — <a href="https://github.com/is-prg1b/lecture/raw/master/slide/day01.pdf">講義資料</a> / <a href="https://github.com/is-prg1b/lx01">サンプルコード</a> / <strong>次回小テスト</strong></li>
67+
</ul>
6468
<h1 id="講義内容についての質問など">講義内容についての質問など</h1>
6569
<p><a href="https://github.com/is-prg1b/lecture/issues/new">質問,疑問等の受け付け先</a>.受け付けた質問は教員,TA,履修生で共有されます.これ以外の人々には公開されません.</p>
6670
<p>少ないスタッフで大勢を教育する都合上,質問,疑問,それへの対応は可能な限り共有する方針としています.羞恥心などの理由から授業や課題に直接関連する質問を<strong>メールで送付しないで</strong>下さい.以下に issue で対応したい問い合わせ例を示します.</p>
@@ -79,46 +83,6 @@ <h1 id="講義内容についての質問など">講義内容についての質
7983
</ul>
8084
</dd>
8185
</dl>
82-
<h1 id="講義資料とサンプルコード">講義資料とサンプルコード</h1>
83-
<dl>
84-
<dt>講義資料</dt>
85-
<dd><ul>
86-
<li><a href="https://github.com/is-prg1b/lecture/raw/master/slides/day01.pdf">day01</a> <!--
87-
- [day02](https://github.com/is-prg1b/lecture/raw/master/docs/day02.pdf)
88-
- [day03](https://github.com/is-prg1b/lecture/raw/master/docs/day03.pdf)
89-
- [day04](https://github.com/is-prg1b/lecture/raw/master/docs/day04.pdf)
90-
- [day05](https://github.com/is-prg1b/lecture/raw/master/docs/day05.pdf)
91-
- [day06](https://github.com/is-prg1b/lecture/raw/master/docs/day06.pdf)
92-
- [day07](https://github.com/is-prg1b/lecture/raw/master/docs/day07.pdf)
93-
- [day08](https://github.com/is-prg1b/lecture/raw/master/docs/day08.pdf)
94-
- [day09](https://github.com/is-prg1b/lecture/raw/master/docs/day09.pdf)
95-
- [day10](https://github.com/is-prg1b/lecture/raw/master/docs/day10.pdf)
96-
- [day11](https://github.com/is-prg1b/lecture/raw/master/docs/day11.pdf)
97-
- [day12](https://github.com/is-prg1b/lecture/raw/master/docs/day12.pdf)
98-
- [day13](https://github.com/is-prg1b/lecture/raw/master/docs/day13.pdf)
99-
- [day14](https://github.com/is-prg1b/lecture/raw/master/docs/day14.pdf) --></li>
100-
</ul>
101-
</dd>
102-
<dt>サンプルコード</dt>
103-
<dd><p>講義の進捗ごとにリポジトリを用意します.</p>
104-
<ul>
105-
<li><a href="https://github.com/is-prg1b/lx01">day01</a> <!-- /
106-
- [day02](https://github.com/is-prg1b/lx02)
107-
- [day03](https://github.com/is-prg1b/lx03)
108-
- [day04](https://github.com/is-prg1b/lx04)
109-
- [day05](https://github.com/is-prg1b/lx05)
110-
- [day06](https://github.com/is-prg1b/lx06)
111-
- [day07](https://github.com/is-prg1b/lx07)
112-
- [day08](https://github.com/is-prg1b/lx08)
113-
- [day09](https://github.com/is-prg1b/lx09)
114-
- [day10](https://github.com/is-prg1b/lx10)
115-
- [day11](https://github.com/is-prg1b/lx11)
116-
- [day12](https://github.com/is-prg1b/lx12)
117-
- [day13](https://github.com/is-prg1b/lx13)
118-
- [day14](https://github.com/is-prg1b/lx14) --></li>
119-
</ul>
120-
</dd>
121-
</dl>
12286
<h1 id="gitリポジトリの初期化">Gitリポジトリの初期化</h1>
12387
<p>以下のような要領で<code>git</code>コマンドを実行するとGitHub上のリポジトリを複製できます.</p>
12488
<div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash"><span class="fu">git</span> clone git@github.com:is-prg1b/lecture

slide/index.md

Lines changed: 9 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
---
22
title: プログラミング第一
3-
css: ["lib/reveal.js-3.5.0/css/theme/solarized.css", "lib/kw.css"]
3+
css: ["lib/reveal.js-3.5.0/css/theme/solarized.css", "dev/kw.css"]
44
---
55

6-
<style>
6+
<!--style>
77
body {
88
margin: 5em;
99
}
1010
1111
code {
1212
color: #b44;
1313
}
14-
</style>
14+
</style-->
1515

1616
<script type="text/javascript" src="lib/reveal.js-3.5.0/plugin/highlight/highlight.js"></script>
1717
<script>hljs.initHightlightingOnLoad();</script>
1818

19+
# 講義資料等
20+
21+
- 9月26日 --- [講義資料](https://github.com/is-prg1b/lecture/raw/master/slide/day01.pdf) / [サンプルコード](https://github.com/is-prg1b/lx01) / **次回小テスト**
22+
1923
# 講義内容についての質問など
2024

2125
[質問,疑問等の受け付け先](https://github.com/is-prg1b/lecture/issues/new).受け付けた質問は教員,TA,履修生で共有されます.これ以外の人々には公開されません.
@@ -37,50 +41,14 @@ code {
3741

3842
- 病気のため休学することになったので特別な配慮をして欲しい
3943

40-
# 講義資料とサンプルコード
41-
42-
講義資料
43-
: - [day01](https://github.com/is-prg1b/lecture/raw/master/slides/day01.pdf) <!--
44-
- [day02](https://github.com/is-prg1b/lecture/raw/master/docs/day02.pdf)
45-
- [day03](https://github.com/is-prg1b/lecture/raw/master/docs/day03.pdf)
46-
- [day04](https://github.com/is-prg1b/lecture/raw/master/docs/day04.pdf)
47-
- [day05](https://github.com/is-prg1b/lecture/raw/master/docs/day05.pdf)
48-
- [day06](https://github.com/is-prg1b/lecture/raw/master/docs/day06.pdf)
49-
- [day07](https://github.com/is-prg1b/lecture/raw/master/docs/day07.pdf)
50-
- [day08](https://github.com/is-prg1b/lecture/raw/master/docs/day08.pdf)
51-
- [day09](https://github.com/is-prg1b/lecture/raw/master/docs/day09.pdf)
52-
- [day10](https://github.com/is-prg1b/lecture/raw/master/docs/day10.pdf)
53-
- [day11](https://github.com/is-prg1b/lecture/raw/master/docs/day11.pdf)
54-
- [day12](https://github.com/is-prg1b/lecture/raw/master/docs/day12.pdf)
55-
- [day13](https://github.com/is-prg1b/lecture/raw/master/docs/day13.pdf)
56-
- [day14](https://github.com/is-prg1b/lecture/raw/master/docs/day14.pdf) -->
57-
58-
サンプルコード
59-
: 講義の進捗ごとにリポジトリを用意します.
60-
61-
- [day01](https://github.com/is-prg1b/lx01) <!-- /
62-
- [day02](https://github.com/is-prg1b/lx02)
63-
- [day03](https://github.com/is-prg1b/lx03)
64-
- [day04](https://github.com/is-prg1b/lx04)
65-
- [day05](https://github.com/is-prg1b/lx05)
66-
- [day06](https://github.com/is-prg1b/lx06)
67-
- [day07](https://github.com/is-prg1b/lx07)
68-
- [day08](https://github.com/is-prg1b/lx08)
69-
- [day09](https://github.com/is-prg1b/lx09)
70-
- [day10](https://github.com/is-prg1b/lx10)
71-
- [day11](https://github.com/is-prg1b/lx11)
72-
- [day12](https://github.com/is-prg1b/lx12)
73-
- [day13](https://github.com/is-prg1b/lx13)
74-
- [day14](https://github.com/is-prg1b/lx14) -->
75-
7644
# Gitリポジトリの初期化
7745

7846
以下のような要領で`git`コマンドを実行するとGitHub上のリポジトリを複製できます.
7947

80-
```bash
48+
~~~ {.bash}
8149
git clone git@github.com:is-prg1b/lecture
8250
git clone git@github.com:is-prg1b/lx01
83-
```
51+
~~~
8452

8553
GitHubのデータが更新された場合は,適宜 `git pull` して下さい.最新版に更新できます.
8654

0 commit comments

Comments
 (0)