[Tex/LaTex] ny mathematical blog support latex

math-modeonline

As the topics, is there any mathematical blog support latex? I think people commonly use wordpress but i am not sure whether it supports latex as it doesn't show the latex format. Is there any supports latex?

Best Answer

For math input one can use MathJax.

Quick instructions

For me it works to add:

<script type="text/x-mathjax-config">
  MathJax.Hub.Config({
  extensions: ["tex2jax.js"],
   jax: ["input/TeX", "output/HTML-CSS"],
   tex2jax: {
     inlineMath: [[ '$','$']],
     displayMath:  [['$$','$$']],
     processEscapes: true
   },
   "HTML-CSS": { availableFonts: ["TeX"] }
  });
</script> 

<script type="text/javascript"          
 src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js">
</script>

to the header (which can be modified at a lot of blogging websites) of the html document.

After that you can use $..$ and $$..$$ to quickly add inline and display style equations, \begin{..}...\end{..} works too.

This is how it looks and works also with different colors.