-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
174 lines (160 loc) · 6.79 KB
/
test.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
<!doctype html>
<meta charset=utf-8>
<html lang="en">
<head>
<title>My PhD-defense presentation</title>
<!--Load the style sheet-->
<link href="style.css" rel="stylesheet"/>
<!--Alot of javascript libraries are needed to make this work-->
<!--utils.js is a little compilation of usefull function I creates-->
<script type="text/javascript" src="js/utils.js"></script>
<!--the jquery library is used by several other libraries-->
<script type="text/javascript" src="js/jquery.js"></script>
<!--raphael.js is used to make figures, easier than direct SVG-->
<script type="text/javascript" src="js/raphael.js"></script>
<!--flot.js is used to plot data-->
<script type="text/javascript" src="js/flot/jquery.flot.js"></script>
<!--MathJax allow using tex/latex typesetting of equations-->
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<!--Or use a local copy-->
<!--<script type="text/javascript" src="js/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<!--The impress.js library, which constitutes the overall frameworj of
the presentation, goes in the end of the html document, loading it in
the header does not work-->
</head>
<body>
<div id="impress" class="impress-not-supported">
<div class="fallback-message">
<p>Your browser <b>doesn't support the features required</b> by impress.js, so you are presented with a simplified version of this presentation.</p>
<p>For the best experience please use the latest <b>Chrome</b> or
<b>Firefox</b> browser.</p>
</div>
<!--------------------------------------------------
Title Slide
-------------------------------------------------->
<div id="title" class="step slide" data-x="0" data-y="0">
<h1>Three-Body Recombination in Cold Atomic Gases</h1>
<h4>PhD-defense by</h4>
<h3>Peder Klokmose Sørensen</h3><br>
<h4>Tuesday september 17th, 2013</h4>
<!--Load the script describing the figure-->
<script type="text/javascript" src="figures/three_particles.js">
</script>
<div id="three_particles" style="width:800px;height:150px;">
</div>
<table style="width:100%">
<tr>
<td style="width:50%">
<p> Supervisors:<br>
Dmitri V. Fedorov<br>
Aksel S. Jensen </p>
</td>
<td style="width:50%;text-align:right;vertical-align:bottom;">
<p> Department of Physics<br>
and Astronomy<br>
Aarhus University </p>
</td>
</tr>
</table>
</div>
<!--------------------------------------------------
Efimov spectrum
-------------------------------------------------->
<div id="efimov_spectrum_slide" class="step slide"
data-x="4800" data-y="-800" style="padding:90px 20px">
<!--Load the script describing the figure-->
<script type="text/javascript"
src="figures/efimov_spectrum_animated.js">
</script>
<table class="fixed">
<tr>
<td style="width:15%;vertical-align:middle;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);" >
\(-\left\vert E_T^{(n)}\dfrac{2ma_0^{2}}{\hbar^2}\right\vert^{1/8}\)
</td>
<td style="width:85%">
<h3> Efimov spectrum</h3>
<div id="animated_graph" style="width:800px;height:450px">
</div>
</td>
</tr>
<tr>
<td style="width:15%"></td>
<td style="width:85%;text-align:center">
\(\textrm{sign}(a)\times\left\vert\dfrac{a_0^2}{a^2}\right\vert^{1/8}\)
</td>
</tr>
</table>
<div class="substep" id="morf_efimov_graph"></div>
</div>
<!--------------------------------------------------
Three-body parameter
-------------------------------------------------->
<div id="three_body_parameter_slide" class="step slide"
data-x="6000" data-y="-800" style="padding:90px 20px">
<!--Load the script describing the figure-->
<script type="text/javascript"
src="figures/three_body_parameter.js"> </script>
<!--Arranging items is best done via tables-->
<table class="fixed">
<tr>
<td style="width:10%;vertical-align:middle;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);">
<!--\(\alpha_\text{rec}[\text{cm}^6/\text{s}]\)-->
r<sub>vdW</sub> /a<sup>(-)</sup>
</td>
<td style="width:90%">
<h3>Three-body parameter</h3>
<div id="3BP_placeholder" style="width:800px;height:450px">
</div>
</td>
</tr>
<tr>
<td style="width:10%"></td>
<!--<td style="width:90%;text-align:center">\(a[a_0]\)</td>-->
<td style="width:90%;text-align:center">
log<sub>10</sub>(s<sub>res</sub>)
</td>
</tr>
</table>
</div>
<!--------------------------------------------------
Three-body recombination
-------------------------------------------------->
<!--<div id="recombination_slide" class="step slide"-->
<!--data-x="4800" data-y="0">-->
<!--<h2>Three-body recombination</h2>-->
<!--<table class="fixed">-->
<!--<tr>-->
<!--<td>-->
<!--Three particles collide...-->
<!--</td>-->
<!--<td class="substep" id="draw_products">-->
<!--... and form a dimer and a free particle-->
<!--</td>-->
<!--</tr>-->
<!--</table>-->
<!--<script src="figures/three_body_recombination.js"></script>-->
<!--<div id="recombination_placeholder"-->
<!--style="width:800px;height:300px"></div>-->
<!--<div class="substep">-->
<!--The reaction products are too energetic to stay in the trap,-->
<!--hence the leave and particles are lost</div>-->
<!--</div>-->
<!--------------------------------------------------
Overview slide
-------------------------------------------------->
<div id="overview" class="step" data-x="600" data-y="0"
data-scale="4" style="width:10px;height:10px;">
</div>
<!--------------------------------------------------
Done with all the slides
-------------------------------------------------->
</div> <!-- End <div id="impress"> -->
<!--Load impress.js-->
<script src="js/impress_substep.js"></script>
<script src="js/setup.js"></script>
</body>
</html>