如何在“工作”风格环境下而不是“打印输出”中导出图形?

我最近了解到,在导出为PDF时,默认情况下, Export Mathematica使用"Printout"屏幕样式环境,而不是"Working" 。 它有时会导致产生的PDF中的FontSize波动,这非常烦人。

尝试例如:

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"环境?

PS出于某种原因,为“打印输出”环境设置Magnification->1的私人样式表不会影响Export


解决方案似乎是:

SetOptions[$FrontEnd, PrintingStyleEnvironment -> "Working"]
链接地址: http://www.djcxy.com/p/35513.html

上一篇: How to export graphics in "Working" style environment rather than "Printout"?

下一篇: Font sizes print smaller than indicated