-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (123 loc) · 4.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>ENHANCED OWN VOICE PERCEPTION FOR HEARABLES USING MACHINE LEARNING</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css" id="theme">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
<link rel="stylesheet" href="css/custom.css" id="custom">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-background-image="img/beamer_title_04.jpg" data-background-size="contain" data-background-opacity=".5">
<h1>ENHANCED OWN VOICE PERCEPTION FOR HEARABLES USING MACHINE LEARNING</h1>
</section>
<section data-background-color='aquamarine'>
<h2>Maxwell's Equations in differential form</h2>
<section>
<h3>Ampères law</h3>
<div>
\[
\begin{aligned}
\nabla \times \vec{\mathbf{H}} = \vec{\mathbf{J}} + \frac{\partial}{\partial t} \vec{\mathbf{D}}
\end{aligned}
\]
</div>
</section>
<section>
<h3>Farraday's law of induction</h3>
\[
\begin{aligned}
\nabla \times \vec{\mathbf{E}} = - \frac{\partial}{\partial t} \vec{\mathbf{B}}
\end{aligned}
\]
</section>
<section>
<h3>Gauß's law</h3>
\[\begin{aligned}
\nabla \vec{\mathbf{D}} = \rho
\end{aligned}\]
</section>
<section>
<h3>Law for magnetism</h3>
\[\begin{aligned}
\nabla \vec{\mathbf{B}} = 0
\end{aligned}\]
</section>
</section>
<section>
<section>
<h1>The Fresh Prince says</h1>
<p>
<span class="fragment r-fit-text">Now, this is a story all about how</span><br>
<span class="fragment r-fit-text">My life got flipped-turned upside down</span><br>
<span class="fragment r-fit-text">And I liked to take a minute
Just sit right there</span><br>
<span class="fragment r-fit-text">I'll tell you how I became the prince of a town called Bel Air</span>
</p>
<aside class="notes">
In west Philadelphia born and raised
On the playground was where I spent most of my days
Chillin' out maxin' relaxin' all cool
And all shootin some b-ball outside of the school
When a couple of guys who were up to no good
Started making trouble in my neighborhood
I got in one little fight and my mom got scared
She said 'You're movin' with your auntie and uncle in Bel Air'
</aside>
</section>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script src="plugin/math/math.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
history: true,
math: {
// mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
config: 'TeX-AMS_HTML-full',
TeX: {
Macros: {
R: '\\mathbb{R}',
set: [ '\\left\\{#1 \\; ; \\; #2\\right\\}', 2 ]
}
}
},
controls: true,
controlsLayout: 'bottom-right', // 'bottom-right' or 'edges'
controlsBackArrows: 'faded', //"faded", "hidden" or "visible"
progress: true, // progress bar
slideNumber: true,
hash: true,
respondToHashChanges: true,
navigationMode: 'grid',
showNotes: false,
multiplex: {
// Example values. To generate your own, see the socket.io server instructions.
secret: null, // Obtained from the socket.io server. Gives this (the master) control of the presentation
id: 'f514427e93aec0fd', // Obtained from socket.io server
url: 'https://reveal-multiplex.glitch.me/' // Location of socket.io server
},
dependencies: [
{ src: 'https://reveal-multiplex.glitch.me/socket.io/socket.io.js', async: true },
{ src: 'https://reveal-multiplex.glitch.me/client.js', async: true }
],
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMath ]
});
</script>
</body>
</html>