-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtemplate.html
More file actions
199 lines (163 loc) · 5.18 KB
/
template.html
File metadata and controls
199 lines (163 loc) · 5.18 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
194
195
196
197
198
199
<!DOCTYPE html>
<html>
<head>
<title>My Awesome Presentation</title> <!-- You'll want to change that obviously-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="./stylesheets/katex.min.css">
<link rel="stylesheet" href="./stylesheets/liminal.css">
<style>
/* This section contains some styling settings you could change if */
/* you really wanted to. */
/* Overall styling for slides */
.remark-slide-content {
padding:0em 4em 0em 4em;
font-family: "Georgia","Times New Roman",Times,serif;
letter-spacing: 0.025em;
}
/* Styling for level one header, #Text */
.remark-slide-content h1 {
font-size: 2.4em;
color: #606060;
font-weight: bold;
letter-spacing: 0.05em;
}
/* Styling for level two header, ##Text */
.remark-slide-content h2 {
font-size: 1.55em;
color: #606060;
font-weight: bold;
letter-spacing: 0.05em;
}
/* Styling for level three header, ###Text */
.remark-slide-content h3 {
font-size: 1.4em;
color: #606060;
font-weight: bold;
letter-spacing: 0.05em;
}
/* Styling for paragraphs, lists, and divs (thus display equations) */
.remark-slide-content p,ol,ul,div {font-size: 1.2em;}
/* Styling for code blocks */
.remark-code,.remark-inline-code {font-family: 'Ubuntu Mono';}
/* Styling for links */
a {text-decoration: none;color: #666666;}
/* Setting link properties is particular, do not change order below*/
a:visited {color: #666666}
a:hover {color: #33AA99}
a:active,a#active {color: #FF9700;}
/* Some special classes for the title slide */
.title {
font-size: 2.4em;
color: #606060;
font-weight: bold;
letter-spacing: 0.05em;
padding-bottom: 0.05em;
display: block;
}
.author {
font-size: 1.2em;
color: #606060;
font-weight: bold;
letter-spacing: 0.02em;
padding-bottom: 0.02em;
display: block;
}
.coauthor {
font-size: 1.0em;
color: #606060;
font-weight: bold;
letter-spacing: 0.02em;
padding-bottom: 0.02em;
display: block;
}
.subtitle, .institution {
font-size: 1.0em;
}
.date {
font-size: 1.0em;
font-style: italic;
}
.note {
font-size: 0.8em;
}
/* Other special classes */
.cite {
font-size: 0.8em;
color: #33AA99;
font-style: italic;
}
.footnote {
position: absolute;
bottom: 2em;
left: 6em;
font-size: 0.7em;
}
.caption {
font-size: 0.5em;
line-height: 10%;
}
/* Equation size */
.katex { font-size: 1.0em; }
</style>
</head>
<body>
<textarea id="source">
class: center, middle
<br/><br/><br/><br/>
.title[My Awesome Presentation]
.subtitle[A theme for scientific presentations using Remark.js]
<br/><br/>
.author[Jonathan Lilly]
.institution[The Planetary Science Institute, Tucson, Arizona]
<br/><br/>
.coauthor[Sherlock S. Holmes<sup>1</sup>, John H. Watson<sup>2</sup>]
.institution[<sup>1</sup>Baker Street Research, <sup>2</sup>Edinburgh University]
<br/><br/>
.date[October 28, 2022]<br/>
<br/><br/>
.note[Created with [{Liminal}](https://github.com/jonathanlilly/liminal) using [{Remark.js}](http://remarkjs.com/) + [{Markdown}](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) + [{KaTeX}](https://katex.org)]
---
name: toc
class: left
#Table of Contents
1. [Introduction](#introduction)
1. [Method](#method)
1. [Conclusions](#conclusions)
<!-- Comment out the next slide if you don't want the Table of Contents link -->
---
layout: true .toc[[✧](#toc)]
---
name: introduction
class: left
# Introduction
This is a bare template. For more details and a demonstration of features, see [{index.html}](index.html).
---
name: method
class: left
# Method
---
class: center
##A Figure on an Unindexed Centered Slide
<img style="width:60%" src="./figures/figure1.png">
---
class: center
#An Animation
<video preload="auto" width="60%" height="auto" data-setup="{}" autoplay loop controls><source src="./videos/vortexmovie.mp4" type="video/mp4" /></video>
---
name: conclusions
class: left
# Conclusions
---
class: middle, center
# That's All!
For other cool stuff, check out my [{website}](http://www.jmlilly.net).
Have fun!
</textarea>
<script src="./javascript/remark-latest.min.js" type="text/javascript"></script>
<script defer src="./javascript/katex.min.js"></script>
<script defer src="./javascript/auto-render.min.js"></script>
<!-- Call remark.js and KaTeX with liminal default settings -->
<script type="text/javascript" src="./javascript/call-javascript.js">
</script>
</body>
</html>