mathematica2mono
- To: mathgroup at smc.vnet.net
- Subject: [mg62220] mathematica2mono
- From: Mitch Murphy <mitch at mix5.com>
- Date: Wed, 16 Nov 2005 02:28:23 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
why does mathematica insist on using its own mathematica2mono font
for "(" and ")" when i've tried a hundred different ways to have all
my text in Times when i export a graphic to pdf ?
are there any undocumented options for Export["a.pdf", expr] ? i've
tried {"IncludeSpecialFonts" -> True} from eps format. that doesnt
work either.
-------------------------
ts = {FontFamily -> "Times", FontWeight -> "Plain", FontSize -> 18,
FontSlant -> "Italic"};
(*FontSubstitutions -> {"Mathematica2" -> "Times"}*)
p = Plot[Evaluate[Table[LegendreP[n, x], {n, 5}]], {x, -1, 1},
Prolog -> {AbsoluteThickness[2]},
PlotStyle -> {Red, Yellow, Green, Blue, Violet},
Epilog -> {
Text["P1(x)", {-.6, -.75}, TextStyle -> ts],
Text["P2(x)", {.1, -.6}, TextStyle -> ts],
Text["P3(x)", {.45, -.55}, TextStyle -> ts],
Text["P4(x)", {.65, -.5}, TextStyle -> ts],
Text["P5(x)", {.9, -.4}, TextStyle -> ts]
}
];
Export["legendre.pdf", %];
-------------------------
i'm not trying to print the greek alphabet upside down, i just want
to get a character from the ascii 128 set ...
Mitch
- Follow-Ups:
- Re: mathematica2mono
- From: Mitch Murphy <mitch@mix5.com>
- Re: mathematica2mono