Re: Wacky Font Substitution in .eps Export
- To: mathgroup at smc.vnet.net
- Subject: [mg90670] Re: Wacky Font Substitution in .eps Export
- From: ragfield <ragfield at gmail.com>
- Date: Fri, 18 Jul 2008 04:03:35 -0400 (EDT)
- References: <g5f61t$rds$1@smc.vnet.net> <g5htfm$j85$1@smc.vnet.net>
On Jul 17, 4:41 am, AES <sieg... at stanford.edu> wrote:
> In article <g5kim2$8l... at smc.vnet.net>, ragfield <ragfi... at gmail.com> wro=
te:
> > PrintingOptions->{"UseSpecialFonts"->True}
>
> > This option is true by default in recent versions, so Mathematica will
> > embed all required math fonts into exported PDF & (E)PS files.
>
> > -Rob
>
> Is there an Options[???] command one can give to see if this is true in
> a specific case? (That is, what goes in the argument of Options[]?)
"IncludeSpecialFonts" /. (PrintingOptions /. Options[$FrontEnd,
PrintingOptions])
or
CurrentValue[$FrontEnd, {PrintingOptions, "IncludeSpecialFonts"}]
Since this is a notebook level option, you can replace $FrontEnd with
a notebook object (e.g. InputNotebook[]) to check the value for a
given notebook.
-Rob