forked from EPCCed/APT-CPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (25 loc) · 804 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>C++ for numerical computing part 2</title>
<meta charset="utf-8">
<script src="https://remarkjs.com/downloads/remark-latest.min.js"></script>
<script src="https://epcced.github.io/remark_theme/latest.js"></script>
<script src="../template/cpptheme.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML&delayStartupUntil=configured" type="text/javascript"></script>
</head>
<body>
<script>
epcc.install();
cpptheme.install();
var slideshow = remark.create({sourceUrl: 'README.md'});
// Setup MathJax
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
MathJax.Hub.Configured();
</script>
</body>
</html>