Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132927 views
License: OTHER
1
<style>
2
@font-face {
3
font-family: "Computer Modern";
4
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');
5
}
6
div.cell{
7
width:800px;
8
margin-left:16% !important;
9
margin-right:auto;
10
}
11
h1 {
12
font-family: Helvetica, serif;
13
}
14
h4{
15
margin-top:12px;
16
margin-bottom: 3px;
17
}
18
div.text_cell_render{
19
font-family: Computer Modern, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
20
line-height: 145%;
21
font-size: 130%;
22
width:800px;
23
margin-left:auto;
24
margin-right:auto;
25
}
26
.CodeMirror{
27
font-family: "Source Code Pro", source-code-pro,Consolas, monospace;
28
}
29
.prompt{
30
display: None;
31
}
32
.text_cell_render h5 {
33
font-weight: 300;
34
font-size: 22pt;
35
color: #4057A1;
36
font-style: italic;
37
margin-bottom: .5em;
38
margin-top: 0.5em;
39
display: block;
40
}
41
42
.warning{
43
color: rgb( 240, 20, 20 )
44
}
45
</style>
46
<script>
47
MathJax.Hub.Config({
48
TeX: {
49
extensions: ["AMSmath.js"]
50
},
51
tex2jax: {
52
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
53
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
54
},
55
displayAlign: 'center', // Change this to 'center' to center equations.
56
"HTML-CSS": {
57
styles: {'.MathJax_Display': {"margin": 4}}
58
}
59
});
60
</script>
61