how to reduce the size of Tex filter rendered images (mathype equations)

Re: how to reduce the size of Tex filter rendered images (mathype equations)

by vishnu prasad -
Number of replies: 0

I someone looking for the same issue, i got another solution.

and it is very simple.

change a line in filter/tex/pix.php ( line number 57 probably)

          $texexp = '\Large '.$texexp;

to $texexp = '\fs{2} ' . $texexp;

or you can remove/comment the large like this $texexp = /*'\Large ' .*/ $texexp;