Monday, March 9, 2015

Latex v Symbol MathJax Wordpress

The default latex math symbol for v looks like a nu. I usually use \varv to avoid that stupid letter. However, MathJax does not support \varv. Here's what I did for my wordpress site www.cfdmath.com. In my header scripts (or where ever you put your mathjax script) add the following:
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  "HTML-CSS": {
    availableFonts: []
  }
});
</script>
According to MathJax documentation, this essentially enforces MathJax to use web-based or image fonts. It seems to do the trick and all my v's look pretty now.

Cite as:
Saad, T. "Latex v Symbol MathJax Wordpress". Weblog entry from Please Make A Note. http://pleasemakeanote.blogspot.com/2015/03/latex-v-symbol-mathjax-wordpress.html

Thursday, March 5, 2015

Tuesday, March 3, 2015

Git Remote Branches not showing/not listed

Try
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
git fetch

Cite as:
Saad, T. "Git Remote Branches not showing/not listed". Weblog entry from Please Make A Note. http://pleasemakeanote.blogspot.com/2015/03/git-remote-branches-not-showingnot.html