so, just because i like math formulas also aesthetically, let me write some simple formula here. Let $f:\mathbb{R}\rightarrow\mathbb{R}$ be given by:
$$f(x)=\int\frac{\theta(y)^2x}{\sin^2(\frac{1}{2}xy)+1}dy$$
whatever that may mean... and i'm left with the problem of deciding whether i should integrate the two blogs or not...
[update: since this post scores way too high on google search, let me include the instructions for installing mathjax:
to get mathjax to work in blogger, go to your blogger account. click through to your blog's dashboard called `overview', and then click `template' on the left-hand menu. (at this point i myself always backup first, top right side). next click "edit html". after the first <head> you see, paste:
<script src='http://cdn.mathjax.org/mathjax/latest/MathJax.js' type='text/javascript'>
MathJax.Hub.Config({
HTML: ["input/TeX","output/HTML-CSS"],
TeX: { extensions: ["AMSmath.js","AMSsymbols.js"],
equationNumbers: { autoNumber: "AMS" } },
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true },
"HTML-CSS": { availableFonts: ["TeX"],
linebreaks: { automatic: true } }
});
</script>
you can now use
$...$
or \(...\)
for inline equations, and $$...$$
or \[...\]
for displaying equations centered in their own line.]