我最近学到了Export in uses by default the "Printout" screen style environment rather than "Working" when exporting to PDF。它有时会导致FontSize fluctuations in the resulting PDF,这是非常恼人的。
例如:
Show[First@ImportString[ExportString[Style[T, 100], "PDF"], "PDF"],
Prolog -> Inset[Style[T, 100], FormatType -> StandardForm]]
Show[First@ImportString[ExportString[Style[T, 100], "PDF"], "PDF"],
Prolog ->
Inset[Style[T, 100, Magnification -> .8],
FormatType -> StandardForm]]

您可以看到,导出的"T“大小是笔记本中"T”大小的80%。默认情况下,这就是调整"Printout"环境的方式。
有没有一种强制Export使用默认"Working"环境的方法?
出于某种原因,为"Printout“环境设置带有Magnification->1的私有样式表不会影响Export。
发布于 2011-05-23 06:50:23
解决办法似乎是:
SetOptions[$FrontEnd, PrintingStyleEnvironment -> "Working"]https://stackoverflow.com/questions/6093559
复制相似问题