Is there a way in which when you choose to format the size of the font within your notebook, for a particular cell, when you go into another cell, the default size font (12pt) will not be re-activated. I want the font size to stay constant throughout the entire notebook, until I go back and need to manually change it by hand.
Example:
Format -> Size -> 16 Point
Answer
There are a variety of ways to do this. One can use Stylesheets as noted by acl. Perhaps the most direct way is this:
For one Notebook:
SetOptions[EvaluationNotebook[], FontSize -> 16]
For all Notebooks:
SetOptions[$FrontEnd, FontSize -> 16]
You can also set FontSize for different Box types, such as GraphicsBox:
SetOptions[$FrontEnd, GraphicsBoxOptions -> {BaseStyle -> {FontSize -> 15}}]
If you are more comfortable with a GUI, all of these options are available through the Options Inspector in the Format menu.
If you decide to go the advanced route and use style sheets here is a guide to get you started:
David Park's StyleSheet creation notes (.zip file)
Depending on your goals, this question may also be of interest:
How to set default magnification for all windows
Comments
Post a Comment