-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.9 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.9 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
<!DOCTYPE html>
<script src='https://d3js.org/d3.v5.min.js'></script>
<html>
<head>
<title>Malmquist Bias</title>
<link rel='shortcut icon' type='image/x-icon' href='assets/favicon.ico'/>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
rel="stylesheet" type="text/css" />
<link href="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.10/c3.min.css"
rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<link rel="stylesheet" href="styles.css">
<script type='text/javascript'src='petrosian.js'></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-D+9gmBxUQogRLqvARvNLmA9hS2x//eK1FhVb9PiU86gmcrBrJAQT8okdJ4LMp2uv" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-483A6DwYfKeDa0Q52fJmxFXkcPCFfnXMoXblOkJ4JcA8zATN6Tm78UNL72AKk+0O" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" integrity="sha384-yACMu8JWxKzSp/C1YV86pzGiQ/l1YUfE8oPuahJQxzehAjEt2GiQuy/BIvl9KyeF" crossorigin="anonymous"
onload="renderMathInElement(document.body);">
</script>
</head>
<body>
<h1> Quasars and The Malmquist Bias </h1>
<p style="text-align:center; font-size: 120%;"> <i>Move mouse to render LaTeX. Dedicated to Vahé Petrosian.</i></p>
<script>
renderMathInElement(document.body, {
delimiters: [
{left: "$", right: "$", display: false},
{left: "$$", right: "$$", display: true},
{left: "\\[", right: "\\]", display: true}
]
});
</script>
</body>
</html>