-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathtest.html
56 lines (39 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>MathJax TeX Test Page</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ TeX: { extensions: ["autobold.js", "AMSsymbols.js"] } });
</script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
</head>
<style>
th, td {
padding: 2px;
}
body {
font-family: verdana;
line-height: 1.5;
font-size: 15px;
}
</style>
<body>
<p style="margin: 30px 30px 30px 40px; font-size: 25px;">
When $a \ne 0$, there are two solutions to $ ax^2 + bx + c = 0 $ and they are
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a}. $$
</p>
<pre style="margin: 30px 30px 30px 40px; font-size: 18px;" class="prettyprint">
class Voila {
public:
// Voila
static const string VOILA = "Voila";
// will not interfere with embedded <a href="#voila2">tags</a>.
}</pre>
</body>
</html>