Pages

Showing posts with label stackexchange. Show all posts
Showing posts with label stackexchange. Show all posts

Using Latex in blogspot

To add equations in the blogspot, there is a code provided by Prof. Matthew Leingang in Tex Stack Exchange site.

Click here to visit the Tex Stack Exchange page and answer.

Basically, what you need to do is
  • Go to Theme
  • Edit HTML
  • Paste following code below <head> 
  • Then save.
Now, you can use $LaTeX$ in posts.
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js">
MathJax.Hub.Config({
 extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
 jax: ["input/TeX", "output/HTML-CSS"],
 tex2jax: {
     inlineMath: [ ['$','$'], ["\\(","\\)"] ],
     displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
 },
 "HTML-CSS": { availableFonts: ["TeX"] }
});
</script> 

You may be interested in these posts

Error in image file conversion: convert-im6.q16: not authorized `test.eps' @ error/constitute.c/WriteImage/1037.

This error is because of the vulnerability. This allows remote execution of code using image formats. So, some Linux distributions by defaul...