How do I generate graphics that don’t reference Mathematica’s special fonts?
 The text in Mathematica graphics are automatically formatted in StandardForm. In[1]:= |  |
In[2]:= |  |
In[3]:= |  |
Out[3]= |
 |
To render this graphic, the special Mathematica fonts are required. You can use the FormatType option to set the format of type to be OutputForm instead. In[4]:= |  |
Out[4]= |
 |
You may want to do this if you are exporting graphics to EPS files. http://support.wolfram.com/mathematica/graphics/export/exporteps4.html For example, regular parenthesis ( and ) and square brackets [ and ] are displayed using characters from Mathematica fonts when using StandardForm. If you are not using any special typesetting rules in your text and only using parentheses, brackets, and other arithematic operators, you might find it more convenient to avoid requiring the Mathematica fonts in the EPS file. In[5]:= |  |
Out[5]= |
 |
An EPS file generated from the above commands does not require the special Mathematica fonts. Download this FAQ as a Mathematica 6.0 Notebook
Questions or comments? Send email to support@wolfram.com.
|