2.9.19 Generating Styled Output in Notebooks
| StylePrint[expr, "style"] | create a new cell containing expr in the specified style | | StylePrint[expr] | use the default style for the notebook |
Generating styled output in notebooks. | This generates a cell in section heading style. | |
In[1]:=
StylePrint["The heading", "Section"];
|

|
| This generates a cell in input style. | |
In[2]:=
StylePrint[x^2 + y^2, "Input"]
|

|
Mathematica provides many capabilities for manipulating the contents of notebooks, as discussed in Section 2.11. StylePrint handles the simple case when all you want to do is to add a cell of a particular style.
|