-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (96 loc) · 4.08 KB
/
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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3E%3Ctext%20x='0'%20y='14'%20style='filter:%20invert(100%);'%3E👀%3C/text%3E%3C/svg%3E" type="image/svg+xml" />
<!--
To add a browser tab favicon (like eyeballs above), cut and paste from emojipedia.org
-->
<title>Planet Earth - Guides</title>
<link type="text/css" rel="stylesheet" href="/localsite/css/base.css" />
<script type="text/javascript" src="/localsite/js/d3.v5.min.js"></script>
<script type="text/javascript" src="/localsite/js/jquery.min.js"></script>
<script type="text/javascript" src="/localsite/js/localsite.js"></script>
<script type="text/javascript" src="/localsite/js/showdown.min.js"></script>
<script type="text/javascript" src="/localsite/js/navigation.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="/localsite/css/bootstrap.darkly.min.css"/>
-->
<link rel="stylesheet" href="css/guides.css" />
<style>
#footerX {display: none;}
</style>
<meta name="description" content="One sheet summary of everything equations.">
<meta name="keywords" content="Test, Prep, Study Guides, General Math, Cheatsheat, Overview">
</head>
<body>
<div class="content contentpadding">
<h1>Guides</h1>
<div class="mainlinks">
<a href="math">➤ Math Guides</a><br>
<div style="margin-left:20px; font-size: 12pt; line-height: 1.2em">
<a href="math/#regression">- Curve Matching</a><br>
<a href="http://pages.stat.wisc.edu/~ifischer/calculus.pdf">- Calculus</a><br>
</div>
<a href="energy">➤ Energy Guides</a><br>
</div>
<br>
<!-- LaTex Samples -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_CHTML"></script>
<style>
pre {
font-family: inherit !important;
}
code{
display: block !important;
border-left: 5px solid #ddd !important;
background-color: none !important;
background: none !important;
margin: 30px 0 40px 0 !important;
padding: 0 0 0 20px !important;
font-family: inherit !important;
color: #555;
}
.code{
display: block !important;
border-left: 5px solid #ddd !important;
background-color: none !important;
background: none !important;
margin: 30px 0 40px 0 !important;
padding: 0 0 0 20px !important;
font-family: inherit !important;
color: #555;
}
.MJXc-display {
display: inline-block !important;
}
</style>
<h2>Writing Equations</h2><br>
LaTex is shorthand for writing equations.<br><br>
<a href="https://stackedit.io/" style="font-size: 1.2em">Stackedit.io</a> is an in-browser editor for converting your Markdown to HTML in real-time. Includes LaTeX, diagrams and music scores.<br><br>
MS Word provides a <a href="http://hhoppe.com/microsoft_word_examples.html">recommended</a> equation editor that outputs to LaTeX. - <a href="math/docs/latex-samples.docx">MS Word LaTeX Samples</a><br><br>
From MS Word, you can copy and place between $$ symbols within html.<br>
(Include the <a href="https://www.mathjax.org/">mathjax.js</a> file and css from the current page.)
<!--
<a href="https://model.earth/io/bioeconomy/docs/LCA-Biofuel-Methodology.docx">Biofuel Deaggregation</a>
-->
Equation example:<br>
<span style="font-size: 22px">
Total final uses $$=\sum_{j=n_2+3+2}^{n_2+3+21}Y_{i,j}$$ or all $$i=1,\ldots,n_1+1$$
</span><br>
To copy equation back into MS Word, right-click the equation above and choose "Show Math As > TeX Commands".<br><br>
In Word, right-click the arrow to the right of the equation to toggle between Linear (script) and Professional (display)
<br><br>
<a href="https://superuser.com/questions/340650/type-math-formulas-in-microsoft-word-the-latex-way">StackOverflow about using Word with LaTeX</a>
<br><br>
Also
<a href="https://arachnoid.com/latex/">LaTeX generator</a>,
<a href="https://www.mathcha.io/">mathcha.io</a> and
<a href="https://snip.mathpix.com/">Snip Mathpix</a>
<br>
<!-- LaTex Samples -->
</div>
<br><br>
</body>
</html>