"A JavaScript display engine for mathematics that works in all browsers. No more setup for readers. It just works."
MathJax Allows you to use Latex notiation in your HTML or Markdown website.
Well for math reasons ofcourse! Maybe you'll be writing a blog for a personal website and wish to discuss proofs you've been working on! Sadly it does not appear that Tumblr allows for JavaScript on pages so it may be more obnoxious to post Math pages on here.
In your `` you're going to want to place the script
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script><br><script id="MathJax-script" async="" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
Now if you wish to change the delimiters that uou'll be using, like to $ $, which is what Obsidian uses then you'll have to add the additional script under the previous.
<script> window.MathJax = { tex: { inlineMath: [['$', '$'], ['\\(', '\\)']] } }; </script>
Example of what it would look like
So in my Foundations of Mathematics course I've been using Obsidian, a notes taking app that allows you to use Tex commands. Here's some really basic Tex commands.
> (- "$" is to start and end a math statement)
( _ )Underline is for the A sub B like A$_2$ = 3 and 4$_3$ = x
\mathbb{} is when you wish to Bold something like the all intergers symbol $\mathbb{Z}$
∎ This is the end of a proof statement since I can't find any obsidian symbol for it
^ can be used to make something an expnential
-'$$ $$' $$To-make-middle$$
Fractions \frac and then the thing you wish to be a fraction $$ \frac 4{2} $$
Practice: Log$_5$ 5 = 1 lne$^2$ = 2
MathJax: This here is the MathJax website where I found the actual code fot getting LaTex into my site.
Delimiters: This is where I found out how to change the delimters.
Obsidian: Here you can find some notes on how to format Markdown
Overleaf: I believe this is the Tex typesetting website, should have all the commands needed for typesetting mathematical expressions.