-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
566 lines (537 loc) · 42.4 KB
/
index.html
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>극성 물질과 나노 스케일 얼음의 물리적 특성</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
body {
font-family: 'Noto Sans KR', sans-serif;
}
.slide {
display: none;
}
.slide.active {
display: block;
}
</style>
</head>
<body class="bg-gray-100 text-gray-800">
<div class="container mx-auto px-4 py-8">
<div id="slideContainer" class="bg-white shadow-2xl rounded-lg overflow-hidden max-w-4xl mx-auto">
<!-- 슬라이드 1: 제목 -->
<div class="slide active">
<div class="p-16 text-center bg-gradient-to-r from-blue-50 to-indigo-50">
<h1 class="text-4xl font-bold mb-4 text-indigo-800">극성 물질과 나노 스케일 얼음의 물리적 특성</h1>
<p class="text-xl text-gray-600">상세 보고서 프레젠테이션</p>
</div>
</div>
<!-- 슬라이드 2: 목차 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">목차</h2>
<ul class="space-y-4 text-lg">
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">1</span>
서론
</li>
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">2</span>
극성 물질의 특성
</li>
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">3</span>
자성과 극성의 비교
</li>
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">4</span>
나노 스케일 얼음의 행동
</li>
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">5</span>
양자 효과의 고려
</li>
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">6</span>
실험적 접근 방법 및 과제
</li>
<li class="flex items-center">
<span class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center mr-4 text-indigo-600 font-semibold">7</span>
결론 및 향후 연구 방향
</li>
</ul>
</div>
</div>
<!-- 슬라이드 3: 서론 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">1. 서론</h2>
<ul class="space-y-4">
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>극성 물질의 특성 탐구</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>자성과의 비교 분석</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>나노 스케일에서의 얼음 행동 연구</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>전기장 하에서의 나노 얼음 행동 분석</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>양자 효과에 대한 논의</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>실제적 응용 가능성 탐색</span>
</li>
</ul>
</div>
</div>
<!-- 슬라이드 4: 2. 극성 물질의 특성 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">2. 극성 물질의 특성</h2>
<h3 class="text-2xl font-semibold mb-4 text-indigo-600">2.1 물과 헥세인의 비교</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-blue-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-blue-700">물의 특성</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>극성 물질</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>비대칭적 분자 구조</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>수소 결합 형성</span>
</li>
</ul>
</div>
<div class="bg-green-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-green-700">헥세인의 특성</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>무극성 물질</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>대칭적 분자 구조 (C6H14)</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>약한 반데르발스 힘</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- 슬라이드 5: 2.2 열의 영향 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">2.2 열의 영향</h2>
<div class="space-y-6">
<div class="bg-yellow-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-yellow-700">끓는점 비교</h4>
<p class="mb-2"><span class="font-semibold">물:</span> 약 100°C (1기압에서)</p>
<p><span class="font-semibold">헥세인:</span> 약 69°C (1기압에서)</p>
</div>
<div class="bg-orange-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-orange-700">가열 시 행동</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-orange-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>헥세인이 먼저 기화 시작</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-orange-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>물이 끓기 전에 대부분의 헥세인 증발</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-orange-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>분자 수준에서 여전히 섞이지 않음</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- 슬라이드 6: 3. 자성과 극성의 비교 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">3. 자성과 극성의 비교</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-purple-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-purple-700">자성</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-purple-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>물질의 자기장 생성 또는 반응 능력</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-purple-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>주로 금속 원소들에서 관찰</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-purple-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>큐리 온도 이상에서 자성 상실</span>
</li>
</ul>
</div>
<div class="bg-pink-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-pink-700">극성</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-pink-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>분자 내 전하 분포의 불균일성</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-pink-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>모든 종류의 분자에서 관찰 가능</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-pink-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>열을 가해도 일반적으로 변화 없음</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- 슬라이드 7: 4. 나노 스케일 얼음의 행동 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">4. 나노 스케일 얼음의 행동</h2>
<!-- 4 방위로 나누기 -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- 좌상: 4.1 이론적 고찰 -->
<div class="bg-blue-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-blue-700">4.1 이론적 고찰</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>분자 단위로 이루어진 얼음 모델 제안</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>나노 스케일에서의 물리 법칙 차이점 논의</span>
</li>
</ul>
</div>
<!-- 우상: 4.2 대전체에 대한 반응 -->
<div class="bg-green-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-green-700">4.2 대전체에 대한 반응</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>예상되는 현상: 대전체 방향으로의 미세한 움직임 또는 회전</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>반응 정도 영향 요인: 대전체의 전하 강도, 거리, 얼음 조각의 크기</span>
</li>
</ul>
</div>
<!-- 좌하: 4.3 극성으로 인한 녹는점 변화 -->
<div class="bg-yellow-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-yellow-700">4.3 극성으로 인한 녹는점 변화</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>이론적 가능성: 외부 전기장에 의한 결정 구조 약화</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>열역학적 고려: 깁스 자유 에너지 변화와의 관계</span>
</li>
</ul>
</div>
<!-- 우하: 4.4 실험적 검증의 어려움 -->
<div class="bg-red-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-red-700">4.4 실험적 검증의 어려움</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-red-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>미세한 효과 관찰 및 측정의 기술적 한계</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-red-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>다른 요인(예: 주변 환경의 미세한 온도 변화)과의 구분 문제</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- 슬라이드 8: 5. 양자 효과의 고려 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">5. 양자 효과의 고려</h2>
<!-- 4 방위로 나누기 -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- 좌상: 5.1 양자 터널링 효과 -->
<div class="bg-purple-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-purple-700">5.1 양자 터널링 효과</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-purple-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>정의: 고전 물리학으로 설명 불가능한 에너지 장벽 "통과" 현상</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-purple-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>나노 얼음에서의 중요성: 표면적 대 부피 비율 증가로 인한 효과 증대</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-purple-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>수소 원자의 "점프" 가능성: 한 산소에서 다른 산소로의 이동</span>
</li>
</ul>
</div>
<!-- 우상: i 자기장이 양자 터널링에 미치는 영향 -->
<div class="bg-pink-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-pink-700">i. 자기장이 양자 터널링에 미치는 영향</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-pink-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>수소 원자의 스핀 상호작용</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-pink-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>자기장에 따른 터널링 확률 변화 수소의 스핀 분열</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-pink-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>강한 자기장에 의해 수소 원자의 스핀 상태가 자기장과 상호작용.</span>
</li>
</ul>
</div>
<!-- 좌하: 5.3 불확정성 원리 -->
<div class="bg-yellow-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-yellow-700">ii. 결정 구조에 미치는 영향</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>자기장에 따른 터널링 확률 변화 수소의 스핀 분열</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>결정의 국소적 구조 변화</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>자기장이 양자 터널링에 미치는 영향</span>
</li>
</ul>
</div>
<!-- 우하: iv 자기장과 양자 터널링의 상호작용: 시뮬레이션 및 실험적 분석 필요 -->
<div class="bg-green-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-green-700">iv 자기장과 양자 터널링의 상호작용: 시뮬레이션 및 실험적 분석 필요</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>밀도 범함수 이론(DFT) 또는 분자 동역학 시뮬레이션</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>자기장이 양자 터널링에 미치는 효과는 이론적 모델링과 시뮬레이션으로 구체적으로 분석될 수 있음.</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-green-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>자기장 실험을 통해 수소 결합이 강한 자기장에서 어떻게 변화하는지를 관찰, 측정할 수 있음.</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- 6. 실험적 접근 방법 및 과제 -->
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">6. 실험적 접근 방법 및 과제</h2>
<!-- 4 방위로 나누기 -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- 좌상: 6.1 나노 스케일 얼음 생성 -->
<div class="bg-blue-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-blue-700">6.1 나노 스케일 얼음 생성</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>극소량의 물 사용</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-blue-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>정밀한 온도 및 압력 제어 필요</span>
</li>
</ul>
</div>
<!-- 우상: i 자기장이 양자 터널링에 미치는 영향 -->
<div class="bg-yellow-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-yellow-700">6.2 전기장 적용</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>나노 스케일에 적합한 정밀 전기장 생성 장치 개발</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-yellow-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>전기장 강도의 정확한 측정 및 제어</span>
</li>
</ul>
</div>
<!-- 좌하: 5.3 불확정성 원리 -->
<div class="bg-orange-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-orange-700">6.3 관찰 기술</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-orange-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>고해상도 전자 현미경 사용</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-orange-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>실시간 분자 움직임 추적 기술 개발 필요</span>
</li>
</ul>
</div>
<!-- 우하: iv 자기장과 양자 터널링의 상호작용: 시뮬레이션 및 실험적 분석 필요 -->
<div class="bg-red-50 p-6 rounded-lg shadow">
<h4 class="text-xl font-bold mb-4 text-red-700">6.4 데이터 해석</h4>
<ul class="space-y-2">
<li class="flex items-start">
<svg class="w-5 h-5 text-red-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>양자 효과와 고전적 효과의 구분</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 text-red-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
<span>통계적 분석 및 시뮬레이션 모델 개발</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="p-16">
<h2 class="text-3xl font-bold mb-8 text-indigo-700 border-b-2 border-indigo-200 pb-2">7. 결론</h2>
<ul class="space-y-4">
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>본 연구는 극성 물질의 특성과 나노 스케일에서의 얼음 행동에 대한 심층적인 이론적 고찰을 제공하며,
나노 기술, 저온 물리학, 양자 컴퓨팅 등 다양한 분야에 응용될 수 있는 중요한 기초를 제공할 것으로 기대됩니다.</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>나노 스케일 얼음의 실제 제작 및 관찰 기술 개발</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>양자 효과의 정량적 측정 방법 연구</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>다양한 조건(온도, 압력, 전기장 강도)에서의 나노 얼음 행동 시뮬레이션</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>이론적 예측과 실험 결과의 비교 분석</span>
</li>
<li class="flex items-start">
<svg class="w-6 h-6 text-indigo-500 mr-2 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
<span>나노 스케일 물질의 특성을 활용한 새로운 기술 개발</span>
</li>
</ul>
</div>
</div>
<!-- 네비게이션 버튼 -->
<div class="flex justify-between p-4 bg-gray-50 border-t border-gray-200">
<button id="prevSlide" class="bg-indigo-500 hover:bg-indigo-600 text-white font-bold py-2 px-6 rounded-full transition duration-300 ease-in-out transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-opacity-50">
이전
</button>
<button id="nextSlide" class="bg-indigo-500 hover:bg-indigo-600 text-white font-bold py-2 px-6 rounded-full transition duration-300 ease-in-out transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-opacity-50">
다음
</button>
</div>
</div>
</div>
<script>
let currentSlide = 0;
const slides = document.querySelectorAll('.slide');
const totalSlides = slides.length;
function showSlide(n) {
slides[currentSlide].classList.remove('active');
currentSlide = (n + totalSlides) % totalSlides;
slides[currentSlide].classList.add('active');
}
document.getElementById('prevSlide').addEventListener('click', () => showSlide(currentSlide - 1));
document.getElementById('nextSlide').addEventListener('click', () => showSlide(currentSlide + 1));
</script>
</body>
</html>