-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtitle.html
More file actions
193 lines (191 loc) · 10.1 KB
/
title.html
File metadata and controls
193 lines (191 loc) · 10.1 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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
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
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!--フォント指定-->
<link href="http://fonts.googleapis.com/earlyaccess/notosansjp.css">
<!--fontawesome-->
<script src="https://kit.fontawesome.com/60ea5b1c05.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/title.css">
<title>第0講:環境の準備</title>
</head>
<body>
<!--ここからサイドバー-->
<div class="sidebar">
<img src="images/logo2.svg" class="margin">
<div class="sidebarSticky margin">
<!--ここからアコーディオンメニュー-->
<div class="accordion">
<div class="option">
<input type="checkbox" id="toggle1" class="toggle">
<label class="title" for="toggle1">環境の準備</label>
<div class="content">
<p>Macの場合</p>
<p>Windowsの場合</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle2" class="toggle">
<label class="title" for="toggle2">はじめてのTeX文書</label>
<div class="content">
<p>ファイルの基本構造</p>
<p>数式モード</p>
<p>数式コマンド(超基本)[分数・四則演算]</p>
<p>コンパイル</p>
<p>実践1 (分数の四則演算)</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle3" class="toggle">
<label class="title" for="toggle3">数式に慣れる</label>
<div class="content">
<p>文字・記号コマンド(基本)[ギリシャ文字・±・平方根]</p>
<p>実践2 (2次方程式・不等式)</p>
<p>数式コマンド(基本)[三角関数・指数対数]</p>
<p>実践3 (指数対数の書き方)</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle4" class="toggle">
<label class="title" for="toggle4">文章成形</label>
<div class="content">
<p>パッケージの導入</p>
<p>目次を作る</p>
<p>文字を装飾する [フォントサイズ・太さ・色]</p>
<p>文書の中心揃え・図の挿入</p>
<p>表を作る</p>
<p>数式の中央揃えと\displaystyle [\left,\mathrmなども扱う]</p>
<p>実践4 (教科書を写してみる)</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle5" class="toggle">
<label class="title" for="toggle5">専門的な数式</label>
<div class="content">
<p>数列・極限</p>
<p>微分・積分</p>
<p>実践5 (区分求積法)</p>
<p>ベクトル・行列</p>
<p>連立方程式</p>
<p>実践6 (行列とベクトルの積) [\arrayに慣れる]</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle6" class="toggle">
<label class="title" for="toggle6">tcolorbox入門</label>
<div class="content">
<p>いろいろな枠</p>
<p>tcolorboxを使う [注意:ページ跨ぎできない]</p>
<p>色・形を変えてみる</p>
<p>実践7 (tcolorboxの応用)</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle7" class="toggle">
<label class="title" for="toggle7">TikZ入門</label>
<div class="content">
<p>座標軸を描く</p>
<p>直線図形と塗りつぶし</p>
<p>関数を描く</p>
<p>実践8 (教科書のグラフを写してみる)</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle8" class="toggle">
<label class="title" for="toggle8">自作コマンド</label>
<div class="content">
<p>自作コマンドの作り方</p>
<p>自作カウンタ</p>
</div>
</div>
<div class="option">
<input type="checkbox" id="toggle9" class="toggle">
<label class="title" for="toggle9">付録</label>
<div class="content">
<p>文字・記号コマンドまとめ</p>
<p>数式コマンドまとめ</p>
<p>写し練習用問題</p>
<p>TikZの作品例</p>
</div>
</div>
</div>
<!--ここまでアコーディオンメニュー-->
<ul class="minilist">
<li>このゼミについて</li>
<li>アンケート</li>
<i class="fa-brands fa-twitter"></i><!--twitterアイコン-->
</ul>
</div>
</div>
<!--ここまでサイドバー-->
<!--ここからメイン-->
<div class="main">
<!--ここからパンくずリスト-->
<ol class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="index.html">
<span itemprop="name">ホーム</span>
</a>
<meta itemprop="position" content="1" />
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="title.html">
<span itemprop="name">環境の準備</span>
</a>
<meta itemprop="position" content="2" />
</li>
</ol>
<!--ここまでパンくずリスト-->
<!--ここから大見出し-->
<div class="titleArea">
<div class="titleIcon">
<i class="fa-regular fa-hashtag"></i><!--ハッシュタグアイコン-->
</div>
<div class="bigTitle">
環境の準備
<p>
補足説明を書く場所。これは、ダミーです。これは、ダミーです。
これは、ダミーです。これは、ダミーです。これは、ダミーです。
これは、ダミーです。これは、ダミーです。これは、ダミーです。これは、ダミーです。
</p>
</div>
</div>
<!--ここまで大見出し-->
<div class="tileArea">
<!--ここからタイル-->
<div class="tile">
<span class="tileNumber">01</span><br>
Macの場合
<i class="fa-solid fa-angle-right"></i>
<p>
この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。
この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。
この文章はダミーです。文字の大きさ、量、字
</p>
</div>
<!--ここまでタイル、以下繰り返し-->
<div class="tile">
<span class="tileNumber">01</span><br>
Macの場合
<i class="fa-solid fa-angle-right"></i>
<p>
この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。
この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。
この文章はダミーです。文字の大きさ、量、字
</p>
</div>
<div class="tile">
<span class="tileNumber">01</span><br>
Macの場合
<i class="fa-solid fa-angle-right"></i>
<p>
この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。
この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。
この文章はダミーです。文字の大きさ、量、字
</p>
</div>
</div>
</div>
</body>
</html>