i have copied some math type equations but the rendered images are really big, how can i control size of these images?
how to reduce the size of Tex filter rendered images (mathype equations)
Number of replies: 5Re: how to reduce the size of Tex filter rendered images (mathype equations)
Hi Vishnu,
Hope this helps,
AL
Re: how to reduce the size of Tex filter rendered images (mathype equations)
That works, thanks man
Re: how to reduce the size of Tex filter rendered images (mathype equations)
But is there any way to fix a size as default for every equations? without adding \normal on every lines
Re: how to reduce the size of Tex filter rendered images (mathype equations)
Sorry, not that I know of. You might try a Google search to see if it is possible.
AL
Re: how to reduce the size of Tex filter rendered images (mathype equations)
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;