-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
700 lines (679 loc) · 28.8 KB
/
demo.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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="author" content="CSC Training">
<title>Example slides for layout testing</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="https://mlouhivu.github.io/static-engine/reveal/3.5.0/css/reveal.css">
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
div.sourceCode { overflow-x: auto; }
table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
margin: 0; padding: 0; vertical-align: baseline; border: none; }
table.sourceCode { width: 100%; line-height: 100%; }
td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
td.sourceCode { padding-left: 5px; }
code > span.kw { color: #007020; font-weight: bold; } /* Keyword */
code > span.dt { color: #902000; } /* DataType */
code > span.dv { color: #40a070; } /* DecVal */
code > span.bn { color: #40a070; } /* BaseN */
code > span.fl { color: #40a070; } /* Float */
code > span.ch { color: #4070a0; } /* Char */
code > span.st { color: #4070a0; } /* String */
code > span.co { color: #60a0b0; font-style: italic; } /* Comment */
code > span.ot { color: #007020; } /* Other */
code > span.al { color: #ff0000; font-weight: bold; } /* Alert */
code > span.fu { color: #06287e; } /* Function */
code > span.er { color: #ff0000; font-weight: bold; } /* Error */
code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
code > span.cn { color: #880000; } /* Constant */
code > span.sc { color: #4070a0; } /* SpecialChar */
code > span.vs { color: #4070a0; } /* VerbatimString */
code > span.ss { color: #bb6688; } /* SpecialString */
code > span.im { } /* Import */
code > span.va { color: #19177c; } /* Variable */
code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
code > span.op { color: #666666; } /* Operator */
code > span.bu { } /* BuiltIn */
code > span.ex { } /* Extension */
code > span.pp { color: #bc7a00; } /* Preprocessor */
code > span.at { color: #7d9029; } /* Attribute */
code > span.do { color: #ba2121; font-style: italic; } /* Documentation */
code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
</style>
<link rel="stylesheet" href="theme/csc-2016/csc.css" id="theme">
<link rel="stylesheet" href="theme/csc-2016/fonts.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'theme/csc-2016/pdf.css' : 'https://mlouhivu.github.io/static-engine/reveal/3.5.0/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="https://mlouhivu.github.io/static-engine/reveal/3.5.0/lib/js/html5shiv.js"></script>
<![endif]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML-full" type="text/javascript"></script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section class="slide level1 title-slide" data-background-size="contain" data-background="theme/csc-2016/img/title-en.png">
<h1>Example slides for layout testing</h1>
<p>CSC Training, 2019-02</p>
</section>
<section id="font-size-and-weight" class="slide level1" data-background-size="contain">
<h1>Font size and weight</h1>
<ul>
<li>Lorem ipsum dolor sit amet, <em>consectetuer</em> adipiscing elit. Sed posuere <strong><em>interdum sem</em></strong>.</li>
<li>Quisque ligula eros ullamcorper quis, <small>lacinia quis <strong><em>facilisis</em></strong> sed sapien</small>.</li>
<li><strong>Mauris varius</strong> diam vitae arcu.</li>
</ul>
</section>
<section id="math-formulas" class="slide level1" data-background-size="contain">
<h1>Math formulas</h1>
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</li>
<li>Quisque ligula eros ullamcorper quis (<span class="math inline">\(e = mc^2\)</span>), lacinia quis facilisis sed sapien.</li>
<li>Mauris varius diam vitae arcu: <span class="math inline">\(\frac{\partial^2 u}{\partial t^2} = c^2 \nabla^2 v\)</span>
<ul>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.</li>
</ul></li>
</ul>
<p><span class="math display">\[\oint_{\partial \Sigma} E \cdot dl
= - \int_\Sigma \frac{\partial B}{\partial t} \cdot d A\]</span></p>
</section>
<section id="nesting-lists-1" class="slide level1" data-background-size="contain">
<h1>Nesting lists 1</h1>
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ul>
<li>Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien. Mauris varius diam vitae arcu.</li>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.
<ul>
<li>sed augue orci</li>
<li>lacinia eu tincidunt et eleifend nec lacus</li>
</ul></li>
</ul></li>
<li>Donec ultricies nisl ut felis, suspendisse potenti.
<ul>
<li>Lorem ipsum ligula ut hendrerit mollis, ipsum erat vehicula risus, eu suscipit sem libero nec erat.</li>
</ul></li>
</ul>
</section>
<section id="nesting-lists-2" class="slide level1" data-background-size="contain">
<h1>Nesting lists 2</h1>
<ol type="1">
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ul>
<li>Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien. Mauris varius diam vitae arcu.</li>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.
<ul>
<li>sed augue orci</li>
<li>lacinia eu tincidunt et eleifend nec lacus</li>
</ul></li>
</ul></li>
<li>Donec ultricies nisl ut felis, suspendisse potenti.
<ul>
<li>Lorem ipsum ligula ut hendrerit mollis, ipsum erat vehicula risus, eu suscipit sem libero nec erat.</li>
</ul></li>
</ol>
</section>
<section id="nesting-lists-3" class="slide level1" data-background-size="contain">
<h1>Nesting lists 3</h1>
<ol type="1">
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ul>
<li>Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien. Mauris varius diam vitae arcu.</li>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.
<ol type="1">
<li>sed augue orci</li>
<li>lacinia eu tincidunt et eleifend nec lacus</li>
</ol></li>
</ul></li>
<li>Donec ultricies nisl ut felis, suspendisse potenti.
<ul>
<li>Lorem ipsum ligula ut hendrerit mollis, ipsum erat vehicula risus, eu suscipit sem libero nec erat.</li>
</ul></li>
</ol>
</section>
<section id="nesting-lists-4" class="slide level1" data-background-size="contain">
<h1>Nesting lists 4</h1>
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ol type="1">
<li>Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien. Mauris varius diam vitae arcu.</li>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.
<ul>
<li>sed augue orci</li>
<li>lacinia eu tincidunt et eleifend nec lacus</li>
</ul></li>
</ol></li>
<li>Donec ultricies nisl ut felis, suspendisse potenti.
<ul>
<li>Lorem ipsum ligula ut hendrerit mollis, ipsum erat vehicula risus, eu suscipit sem libero nec erat.</li>
</ul></li>
</ul>
</section>
<section id="nesting-lists-5" class="slide level1" data-background-size="contain">
<h1>Nesting lists 5</h1>
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ol type="1">
<li>Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien. Mauris varius diam vitae arcu.</li>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.
<ol type="1">
<li>sed augue orci</li>
<li>lacinia eu tincidunt et eleifend nec lacus</li>
</ol></li>
</ol></li>
<li>Donec ultricies nisl ut felis, suspendisse potenti.
<ul>
<li>Lorem ipsum ligula ut hendrerit mollis, ipsum erat vehicula risus, eu suscipit sem libero nec erat.</li>
</ul></li>
</ul>
</section>
<section id="definition-list" class="slide level1" data-background-size="contain">
<h1>Definition list</h1>
<dl>
<dt>Lorem</dt>
<dd>ipsum dolor sit amet
</dd>
<dt>Consectetuer adipiscing elit</dt>
<dd>Sed posuere interdum sem.
</dd>
<dd>Quisque ligula eros ullamcorper quis, lacinia quis facilisis sed sapien.
</dd>
<dt>Mauris</dt>
<dd><p>varius diam vitae arcu</p>
<p>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.</p>
</dd>
</dl>
</section>
<section id="function-definition" class="slide level1" data-background-size="contain">
<h1>Function definition</h1>
<dl>
<dt><code>Lorem(ipsum, dolor, sit, amet)</code></dt>
<dd><dl>
<dt><code class="input">ipsum</code></dt>
<dd>consectetuer adipiscing elit
</dd>
<dt><code class="input">dolor</code></dt>
<dd>sed posuere interdum sem
</dd>
<dt><code class="input">sit</code></dt>
<dd>quisque ligula eros
</dd>
<dt><code class="output">amet</code></dt>
<dd>ullamcorper quis
</dd>
</dl>
</dd>
</dl>
</section>
<section id="images-1" class="slide level1" data-background-size="contain">
<h1>Images 1</h1>
<figure>
<img src="img/nuuksio-lake.jpg" />
</figure>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="images-2" class="slide level1" data-background-size="contain">
<h1>Images 2</h1>
<figure>
<img src="img/nuuksio-lake.jpg" style="width:50.0%" />
</figure>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="columns-1" class="slide level1" data-background-size="contain">
<h1>Columns 1</h1>
<div class="column">
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ul>
<li>quisque ligula eros ullamcorper quis</li>
<li>lacinia quis facilisis sed sapien</li>
</ul></li>
<li>Mauris varius diam vitae arcu.</li>
</ul>
</div>
<div class="column">
<ul>
<li>Sed arcu lectus auctor vitae, consectetuer et venenatis eget velit.</li>
<li>Sed augue orci, lacinia eu tincidunt et eleifend nec lacus.</li>
</ul>
</div>
</section>
<section id="columns-2" class="slide level1" data-background-size="contain">
<h1>Columns 2</h1>
<div class="column">
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.
<ul>
<li>quisque ligula eros ullamcorper quis</li>
<li>lacinia quis facilisis sed sapien</li>
</ul></li>
<li>Mauris varius diam vitae arcu.</li>
</ul>
</div>
<div class="column">
<figure>
<img src="img/koulutusaula.jpg" style="width:50.0%" />
</figure>
</div>
</section>
<section id="code-high-lighting" class="slide level1" data-background-size="contain">
<h1>Code high-lighting</h1>
<div class="sourceCode"><pre class="sourceCode python"><code class="sourceCode python"><span class="im">import</span> os
<span class="cf">if</span> os.path.isfile(<span class="st">'foobar'</span>):
<span class="cf">with</span> <span class="bu">open</span>(<span class="st">'foobar'</span>) <span class="im">as</span> fp:
txt <span class="op">=</span> fp.read()
<span class="bu">print</span>(<span class="st">'File contents:'</span>)
<span class="bu">print</span>(txt)</code></pre></div>
<div class="sourceCode"><pre class="sourceCode c"><code class="sourceCode c"><span class="pp">#include </span><span class="im"><stdio.h></span>
<span class="dt">int</span> square(x) {
printf(<span class="st">"Going to square value %d."</span>, x);
<span class="cf">return</span> x*x;
}</code></pre></div>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit: <code>count = x + y</code>. Sed posuere interdum <code>foobar(args, x)</code> sem.</p>
</section>
<section id="code-high-lighting-with-emphasis" class="slide level1" data-background-size="contain">
<h1>Code high-lighting with emphasis</h1>
<pre class="python"><code>import <mark class="inline">os</mark>
<mark class="block">if os.path.isfile('foobar'):</mark>
with open('foobar') as fp:
txt = fp.read()
print('File contents:')
print(txt)</code></pre>
<ul>
<li>emphasize syntax: <code>line1[:col1]-line2[:col2],line3[:col3]-line4[:col4]</code></li>
<li>Note: syntax highlighting does not work with emphasize</li>
</ul>
</section>
<section id="tables-1-default" class="slide level1" data-background-size="contain">
<h1>Tables 1 (default)</h1>
<table>
<thead>
<tr class="header">
<th></th>
<th></th>
<th style="text-align: right;">1</th>
<th style="text-align: right;">2</th>
<th style="text-align: right;">4</th>
<th style="text-align: right;">8</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td> <strong>Case 1</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 0.757</td>
<td style="text-align: right;">0.719</td>
<td style="text-align: right;"> 0.574</td>
<td style="text-align: right;">0.547</td>
</tr>
<tr class="even">
<td></td>
<td><em>optimised</em></td>
<td style="text-align: right;">0.899</td>
<td style="text-align: right;">0.838</td>
<td style="text-align: right;">0.658</td>
<td style="text-align: right;">0.607</td>
</tr>
<tr class="odd">
<td> <strong>Case 2</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 1.252</td>
<td style="text-align: right;">1.111</td>
<td style="text-align: right;"> 0.684</td>
<td style="text-align: right;">0.756</td>
</tr>
<tr class="even">
<td> </td>
<td><em>optimised</em></td>
<td style="text-align: right;"> 1.443</td>
<td style="text-align: right;">1.277</td>
<td style="text-align: right;"> 0.748</td>
<td style="text-align: right;">0.818</td>
</tr>
</tbody>
</table>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="tables-2-default-highlighted-cells" class="slide level1" data-background-size="contain">
<h1>Tables 2 (default + highlighted cells)</h1>
<table>
<thead>
<tr class="header">
<th></th>
<th></th>
<th style="text-align: right;">1</th>
<th style="text-align: right;">2</th>
<th style="text-align: right;">4</th>
<th style="text-align: right;">8</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td> <strong>Case 1</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 0.757</td>
<td style="text-align: right;">0.719</td>
<td style="text-align: right;"> 0.574</td>
<td style="text-align: right;">0.547</td>
</tr>
<tr class="even">
<td></td>
<td><em>optimised</em></td>
<td style="text-align: right;">0.899</td>
<td style="text-align: right;">0.838</td>
<td style="text-align: right;">0.658</td>
<td style="text-align: right;">0.607</td>
</tr>
<tr class="odd">
<td> <strong>Case 2</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 1.252</td>
<td style="text-align: right;"><strong><em>1.111</em></strong></td>
<td style="text-align: right;"> 0.684</td>
<td style="text-align: right;">0.756</td>
</tr>
<tr class="even">
<td> </td>
<td><em>optimised</em></td>
<td style="text-align: right;"> 1.443</td>
<td style="text-align: right;">1.277</td>
<td style="text-align: right;"> <strong><em>0.748</em></strong></td>
<td style="text-align: right;">0.818</td>
</tr>
</tbody>
</table>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="tables-3-colour" class="slide level1 table-colour" data-background-size="contain">
<h1>Tables 3 (colour)</h1>
<table>
<thead>
<tr class="header">
<th></th>
<th></th>
<th style="text-align: right;">1</th>
<th style="text-align: right;">2</th>
<th style="text-align: right;">4</th>
<th style="text-align: right;">8</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td> <strong>Case 1</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 0.757</td>
<td style="text-align: right;">0.719</td>
<td style="text-align: right;"> 0.574</td>
<td style="text-align: right;">0.547</td>
</tr>
<tr class="even">
<td></td>
<td><em>optimised</em></td>
<td style="text-align: right;">0.899</td>
<td style="text-align: right;">0.838</td>
<td style="text-align: right;">0.658</td>
<td style="text-align: right;">0.607</td>
</tr>
<tr class="odd">
<td> <strong>Case 2</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 1.252</td>
<td style="text-align: right;"><strong><em>1.111</em></strong></td>
<td style="text-align: right;"> 0.684</td>
<td style="text-align: right;">0.756</td>
</tr>
<tr class="even">
<td> </td>
<td><em>optimised</em></td>
<td style="text-align: right;"> 1.443</td>
<td style="text-align: right;">1.277</td>
<td style="text-align: right;"> <strong><em>0.748</em></strong></td>
<td style="text-align: right;">0.818</td>
</tr>
</tbody>
</table>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="tables-4-grid" class="slide level1 table-grid" data-background-size="contain">
<h1>Tables 4 (grid)</h1>
<table>
<thead>
<tr class="header">
<th></th>
<th></th>
<th style="text-align: right;">1</th>
<th style="text-align: right;">2</th>
<th style="text-align: right;">4</th>
<th style="text-align: right;">8</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td> <strong>Case 1</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 0.757</td>
<td style="text-align: right;">0.719</td>
<td style="text-align: right;"> 0.574</td>
<td style="text-align: right;">0.547</td>
</tr>
<tr class="even">
<td></td>
<td><em>optimised</em></td>
<td style="text-align: right;">0.899</td>
<td style="text-align: right;">0.838</td>
<td style="text-align: right;">0.658</td>
<td style="text-align: right;">0.607</td>
</tr>
<tr class="odd">
<td> <strong>Case 2</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 1.252</td>
<td style="text-align: right;"><strong><em>1.111</em></strong></td>
<td style="text-align: right;"> 0.684</td>
<td style="text-align: right;">0.756</td>
</tr>
<tr class="even">
<td> </td>
<td><em>optimised</em></td>
<td style="text-align: right;"> 1.443</td>
<td style="text-align: right;">1.277</td>
<td style="text-align: right;"> <strong><em>0.748</em></strong></td>
<td style="text-align: right;">0.818</td>
</tr>
</tbody>
</table>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="tables-5-none" class="slide level1 table-none" data-background-size="contain">
<h1>Tables 5 (none)</h1>
<table>
<thead>
<tr class="header">
<th></th>
<th></th>
<th style="text-align: right;">1</th>
<th style="text-align: right;">2</th>
<th style="text-align: right;">4</th>
<th style="text-align: right;">8</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td> <strong>Case 1</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 0.757</td>
<td style="text-align: right;">0.719</td>
<td style="text-align: right;"> 0.574</td>
<td style="text-align: right;">0.547</td>
</tr>
<tr class="even">
<td></td>
<td><em>optimised</em></td>
<td style="text-align: right;">0.899</td>
<td style="text-align: right;">0.838</td>
<td style="text-align: right;">0.658</td>
<td style="text-align: right;">0.607</td>
</tr>
<tr class="odd">
<td> <strong>Case 2</strong></td>
<td>vanilla</td>
<td style="text-align: right;"> 1.252</td>
<td style="text-align: right;"><strong><em>1.111</em></strong></td>
<td style="text-align: right;"> 0.684</td>
<td style="text-align: right;">0.756</td>
</tr>
<tr class="even">
<td> </td>
<td><em>optimised</em></td>
<td style="text-align: right;"> 1.443</td>
<td style="text-align: right;">1.277</td>
<td style="text-align: right;"> <strong><em>0.748</em></strong></td>
<td style="text-align: right;">0.818</td>
</tr>
</tbody>
</table>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere interdum sem.</p>
</section>
<section id="section-title-1" class="slide level1 section-slide" data-background-size="contain" data-background="theme/default/img/section.png">
<h1>Section title 1</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</section>
<section id="section-title-2" class="slide level1 section-slide" data-background-size="contain" data-background="theme/default/img/section.png">
<h1>Section title 2</h1>
</section>
<section id="section-title-3-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit." class="slide level1 section-slide" data-background-size="contain" data-background="theme/default/img/section.png">
<h1>Section title 3: Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</h1>
</section>
<section id="section-title-4-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit." class="slide level1 section-slide" data-background-size="contain" data-background="theme/default/img/section.png">
<h1>Section title 4: Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</h1>
<p>Sed posuere interdum sem.</p>
</section>
<section id="firstname-lastname" class="slide level1 author-slide" data-background-size="contain" data-background="theme/default/img/author.png">
<h1>Firstname Lastname</h1>
<div style="white-space: pre-line;">Groupname, title, or something
CSC – IT Center for Science Ltd.</div>
<p>[email protected]</p>
<figure>
<img src="theme/csc-2016/img/csc-identicon.png" />
</figure>
</section>
</div>
</div>
<script src="https://mlouhivu.github.io/static-engine/reveal/3.5.0/lib/js/head.min.js"></script>
<script src="https://mlouhivu.github.io/static-engine/reveal/3.5.0/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
// Display controls in the bottom right corner
controls: false,
// Push each slide change to the browser history
history: true,
// Vertical centering of slides
center: false,
// Transition style
transition: 'none', // none/fade/slide/convex/concave/zoom
// Transition style for full page slide backgrounds
backgroundTransition: 'none', // none/fade/slide/convex/concave/zoom
// The "normal" size of the presentation, aspect ratio will be preserved
// when the presentation is scaled to fit different resolutions. Can be
// specified using percentage units.
width: 1920,
height: 1080,
slideNumber: true,
menu: {
// Specifies which side of the presentation the menu will
// be shown. Use 'left' or 'right'.
side: 'left',
// Add slide numbers to the titles in the slide list.
// Use 'true' or format string (same as reveal.js slide numbers)
numbers: false,
// Specifies which slide elements will be used for generating
// the slide titles in the menu. The default selects the first
// heading element found in the slide, but you can specify any
// valid css selector and the text from the first matching
// element will be used.
// Note: that a section data-menu-title attribute or an element
// with a menu-title class will take precedence over this option
titleSelector: 'h1, h2, h3, h4, h5, h6',
// Hide slides from the menu that do not have a title.
// Set to 'true' to only list slides with titles.
hideMissingTitles: false,
// Add markers to the slide titles to indicate the
// progress through the presentation
markers: false,
// Specify custom panels to be included in the menu, by
// providing an array of objects with 'title', 'icon'
// properties, and either a 'src' or 'content' property.
custom: false,
// Specifies the themes that will be available in the themes
// menu panel. Set to 'false' to hide themes panel.
themes: [
{ name: 'CSC', theme: 'theme/csc-2016/csc.css' },
{ name: 'Black', theme: './css/theme/black.css' },
{ name: 'White', theme: './css/theme/white.css' },
{ name: 'League', theme: './css/theme/league.css' },
{ name: 'Sky', theme: './css/theme/sky.css' },
{ name: 'Beige', theme: './css/theme/beige.css' },
{ name: 'Simple', theme: './css/theme/simple.css' },
{ name: 'Serif', theme: './css/theme/serif.css' },
{ name: 'Blood', theme: './css/theme/blood.css' },
{ name: 'Night', theme: './css/theme/night.css' },
{ name: 'Moon', theme: './css/theme/moon.css' },
{ name: 'Solarized', theme: './css/theme/solarized.css' },
],
// Specifies if the transitions menu panel will be shown.
transitions: true,
// Adds a menu button to the slides to open the menu panel.
// Set to 'false' to hide the button.
openButton: true,
// If 'true' allows the slide number in the presentation to
// open the menu panel. The reveal.js slideNumber option must
// be displayed for this to take effect
openSlideNumber: false,
// If true allows the user to open and navigate the menu using
// the keyboard. Standard keyboard interaction with reveal
// will be disabled while the menu is open.
keyboard: true,
},
keyboard: {
67: function() { RevealChalkboard.toggleNotesCanvas() }, // toggle notes canvas when 'c' is pressed
66: function() { RevealChalkboard.toggleChalkboard() }, // toggle chalkboard when 'b' is pressed
46: function() { RevealChalkboard.clear() }, // clear chalkboard when 'DEL' is pressed
8: function() { RevealChalkboard.reset() }, // reset chalkboard data on current slide when 'BACKSPACE' is pressed
68: function() { RevealChalkboard.download() }, // downlad recorded chalkboard drawing when 'd' is pressed
},
// Chalkboard Button configuration
chalkboard: {
src: null,
readOnly: false,
toggleChalkboardButton: { left: "100px", bottom: "30px", top: "auto", right: "auto" },
toggleNotesButton: { left: "70px", bottom: "30px", top: "auto", right: "auto" },
},
// Optional reveal.js plugins
dependencies: [
{ src: 'https://mlouhivu.github.io/static-engine/reveal/3.5.0/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'https://mlouhivu.github.io/static-engine/reveal/3.5.0/plugin/zoom-js/zoom.js', async: true },
{ src: 'https://mlouhivu.github.io/static-engine/reveal/3.5.0/plugin/notes/notes.js', async: true },
{ src: 'https://mlouhivu.github.io/static-engine/reveal/3.5.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[dataa--markdown]' ); } },
{ src: './plugin/menu/menu.js' },
// Chalkboard
{ src: './plugin/chalkboard/chalkboard.js' },
]
});
</script>
</body>
</html>