Re: mathematica2mono
- To: mathgroup at smc.vnet.net
- Subject: [mg62238] Re: [mg62220] mathematica2mono
- From: John Fultz <jfultz at wolfram.com>
- Date: Thu, 17 Nov 2005 04:15:36 -0500 (EST)
- Reply-to: jfultz at wolfram.com
- Sender: owner-wri-mathgroup at wolfram.com
We use our own fonts because we want the parentheses to display consistently whether they're being displayed at normal height, as in your example, or whether they're being stretched vertically (and similarly for brackets and curly braces). But the behavior is easy to turn off. Choose Format->Option Inspector..., set the scope to global, and look for the "OperatorSubstitution" option. Set it to False. Then re-evaluate the graphics-producing commands, and re-run the Export[] command again. Sincerely, John Fultz jfultz at wolfram.com User Interface Group Wolfram Research, Inc. On Wed, 16 Nov 2005 02:28:23 -0500 (EST), Mitch Murphy wrote: > 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