[Tex/LaTex] Uninstalling STIX Fonts

fontsinstallingmathjaxstixUbuntu

I recently installed the texlive-full package, and want to uninstall the STIX fonts because they are interfering with my MathJax rendering. What is the terminal command to uninstall them? (I'm using Linux Mint 15, and pulled TL from the Ubuntu/Mint package repositories.)

I'm asking because I don't want to mess up any dependencies, and am trying to uninstall them as cleanly as possible.

Best Answer

When I was trying to use otf fonts within TeXLive, I copied the file below to /etc/fonts/conf.d/09-texlive.conf and then I run sudo fc-cache.

<?xml version="1.0"?>
  <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  <fontconfig>
  <dir>/usr/local/texlive/2011/texmf-dist/fonts/opentype</dir>
<dir>/usr/local/texlive/2011/texmf-dist/fonts/truetype</dir>
<dir>/usr/local/texlive/2011/texmf-dist/fonts/type1</dir>
</fontconfig>

After that, I had the same problem.

Solution (works for me)

I just moved that file, run sudo fc-cache again, and then everything is fine like before.