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
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
jfu...@wolfram.com
User Interface Group
Wolfram Research, Inc.
here's the answer i got from wolfram tech support ...
"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."
it works.
Mitch
Your question is (sort-of) addressed in three ways in two different
threads from a while back. If you can't obtain what you need after
reviewing the threads, feel free to post again.
You could also try pointing certain Adobe software packages directly to
the font files included with the Mathematica installation. You wil have
to be a little clever in tricking whatever software you can find into
embedding the fonts within the file format of your choice.
AFAIK, EPS font embedding does work from Mathematica.
The short story is, WRI should work on embedding fonts into PDFs and
other formats, like SVG!! :-]