Pages

Showing posts with label latex. Show all posts
Showing posts with label latex. Show all posts

An easy way to find Latex code

There exists an excellent site on which you can find out the key for most of the $LaTeX$ comments.

The page says:

"Anyone who works with LaTeX knows how time-consuming it can be to find a symbol in symbols-a4.pdf that you just can't memorize. Detexify is an attempt to simplify this search."

What you have to do is just draw the symbol (on the portion given in the site) for which you want to know the comment.

You will be given the latex-code for that symbol. 

The page says "Philipp Kühl had the initial idea and Daniel Kirsch made it happen". Thanks to them.



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...