MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

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
  


  • Prev by Date: Re: Solved:Defining variables in $UserBaseDirectory/init.m
  • Next by Date: Re: FullSimplify Hang?
  • Previous by thread: Re: Solved:Defining variables in $UserBaseDirectory/init.m
  • Next by thread: Re: mathematica2mono