forked from kandaquantum/lecture_generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyllabus_graph
60 lines (60 loc) · 1.68 KB
/
syllabus_graph
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Syllabus Graph
digraph {
"Month 1
武士の歴史と心構え" [fillcolor=lightblue shape=box style=filled]
"Month 1
武士の歴史と心構え" -> lectures_month_1 [headport=nw style=dashed tailport=s]
subgraph cluster_month_1 {
lectures_month_1 [label="武士の起源と発展
武士道の基本理念" shape=box]
}
"Month 2
武芸の基礎" [fillcolor=lightblue shape=box style=filled]
"Month 2
武芸の基礎" -> lectures_month_2 [headport=nw style=dashed tailport=s]
subgraph cluster_month_2 {
lectures_month_2 [label="剣術の基本
弓術の基本
馬術の基本
武芸の心法" shape=box]
}
"Month 3
兵法と戦略" [fillcolor=lightblue shape=box style=filled]
"Month 3
兵法と戦略" -> lectures_month_3 [headport=nw style=dashed tailport=s]
subgraph cluster_month_3 {
lectures_month_3 [label="孫子の兵法
合戦の戦略と戦術
指揮官の資質" shape=box]
}
"Month 4
文化と教養" [fillcolor=lightblue shape=box style=filled]
"Month 4
文化と教養" -> lectures_month_4 [headport=nw style=dashed tailport=s]
subgraph cluster_month_4 {
lectures_month_4 [label="茶道の基本
花道の基本
書道の基本
思想的背景の理解" shape=box]
}
"Month 5
総合実践" [fillcolor=lightblue shape=box style=filled]
"Month 5
総合実践" -> lectures_month_5 [headport=nw style=dashed tailport=s]
subgraph cluster_month_5 {
lectures_month_5 [label="合戦シミュレーション
武士としての生き方" shape=box]
}
"Month 1
武士の歴史と心構え" -> "Month 2
武芸の基礎"
"Month 2
武芸の基礎" -> "Month 3
兵法と戦略"
"Month 3
兵法と戦略" -> "Month 4
文化と教養"
"Month 4
文化と教養" -> "Month 5
総合実践"
}