MathGroup Archive 2010

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

Search the Archive

Re: Printout Fontsize Mystery

  • To: mathgroup at smc.vnet.net
  • Subject: [mg113592] Re: Printout Fontsize Mystery
  • From: David Reiss <dbreiss at gmail.com>
  • Date: Thu, 4 Nov 2010 03:57:57 -0500 (EST)
  • References: <iar4la$gnu$1@smc.vnet.net>

Because, for reasons I have never understood, the Printout Style
Environment in the Core.nb baseline stylesheet has a global
Magnification->0.8 setting. (note that you cannot edit this
stylesheet).

 It always has puzzled me as to these Printout settings....

To get around this create a private style sheet for your notebook and
in it put in a cell and go to Cell>ShowExpression and edit the cell to
be the following (and then go to Cell>HideExpression:


Cell[StyleData[All, "Printout"],
 PageWidth->PaperWidth,
 CellLabelMargins->{{2, Inherited}, {Inherited, Inherited}},
 ShowAutoStyles->False,
 ShowSyntaxStyles->False,
 AutoStyleOptions->{"HighlightMisspelledWords"->False},
 ScriptMinSize->5,
 MenuPosition->1500,
 PrivateFontOptions->{"FontType"->"Outline"},
 Magnification->1]


However note that this only changes this for those cellstyles that
inherit the setting from the top level (Text style is an example).
However if the cellstyle (e.g., Input)  has its own explicit setting
in the stylesheet then that will override this and you will need to
create a version in the private stylesheet for that.

--David


On Nov 3, 3:57 am, Brad Rubin <bsru... at stthomas.edu> wrote:
> I have my Text style, Printout style environment set like so:
>
> Cell[StyleData["Text", "Printout"],
>  CellMargins->{{0, 0}, {5, 5}},
>  FontFamily->"Times New Roman",
>  FontSize->12,
>  FontWeight->"Plain",
>  FontSlant->"Plain"]
>
> All of my magnification options are set to 1.
>
> So, why does the print font look more like 10 point instead of 12?  
>
> -- Brad



  • Prev by Date: Renaming Variables Across Files
  • Next by Date: Re: Fonts, Formats, and examples as learning tools
  • Previous by thread: Re: Printout Fontsize Mystery
  • Next by thread: Re: Printout Fontsize Mystery