Compare commits
3 Commits
fb8e5669db
...
bb50ddf0f5
| Author | SHA1 | Date | |
|---|---|---|---|
| bb50ddf0f5 | |||
| 018ce37125 | |||
| eca8440e81 |
@ -567,6 +567,10 @@ p a:link, p a:hover, p a:active, p a:visited, li a:link, li a:hover, li a:active
|
|||||||
p a:hover::before, li a:hover::before, h2 a:hover::before {
|
p a:hover::before, li a:hover::before, h2 a:hover::before {
|
||||||
height: 110%; }
|
height: 110%; }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Code Listings
|
||||||
|
* =============
|
||||||
|
*/
|
||||||
pre.small-text {
|
pre.small-text {
|
||||||
font-size: 80%; }
|
font-size: 80%; }
|
||||||
|
|
||||||
|
|||||||
@ -699,6 +699,10 @@ p a, li a, h2 a {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Code Listings
|
||||||
|
* =============
|
||||||
|
*/
|
||||||
pre.small-text {
|
pre.small-text {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
}
|
}
|
||||||
|
|||||||
11
index.html
11
index.html
@ -75,7 +75,7 @@
|
|||||||
transition: 'none',
|
transition: 'none',
|
||||||
math: {
|
math: {
|
||||||
mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
|
mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
|
||||||
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
|
config: 'TeX-AMS_HTML-full', // See http://docs.mathjax.org/en/latest/config-files.html
|
||||||
},
|
},
|
||||||
history: true,
|
history: true,
|
||||||
fragmentInURL: true,
|
fragmentInURL: true,
|
||||||
@ -89,6 +89,15 @@
|
|||||||
{ src: 'plugin/math/math.js', async: true }
|
{ src: 'plugin/math/math.js', async: true }
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
window.onload = function () {
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
"HTML-CSS": {
|
||||||
|
availableFonts: ["Latin Modern"],
|
||||||
|
preferredFont: "Latin Modern"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user