20 Jun
2011
20 Jun
'11
3:19 p.m.
Am 15.06.2011 11:00, schrieb Jan Schmidtbauer:
Thank you for the quick reply, of course I could insert a \small in every Latex input. To change it in the generated Latex file would be elegant but not if I had to do it by hand. In Inkscape 0.47 I used these feature as a plug-in svg2latex and there was a corresponding Python file, were I changed the font size. Unfortunately, now the Latex export is included in Inkscape and I can't find this Python file anymore.
The file eqtexsvg.py is the one, which is in /usr/share/inkscape/extensions here.
If you replace the line
tex.write(equation)
with
tex.write('\small' + equation)
it should work, replace 'small' with whatever size u want. Ugly hack, but worx. :-)
HTH.
Cheerz, Lars