Re: TEXT SIZE 12 ?
- To: mathgroup at smc.vnet.net
- Subject: [mg69767] Re: TEXT SIZE 12 ?
- From: dimmechan at yahoo.com
- Date: Fri, 22 Sep 2006 01:04:49 -0400 (EDT)
- References: <eetvi5$aq4$1@smc.vnet.net>
You can work as follows: $TextStyle = {FontSize -> 12}; Then select the cell go to the Cell menu->Cell Properties and activate the Initialization Cell option. Everytime you run your program the initialization cell will be executed first. BTW, you have full access everywhere. For example: $TextStyle = {FontSize -> 12, FontFamily -> "Times", FontSlant -> "Italic"}; Then execute the following command to get a plot of sin(x). Plot[Sin[x], {x, 0, 2*Pi}, Ticks -> {Table[{n, StyleForm[n, FontColor -> Hue[6]]}, {n, 0, 2*Pi, Pi}],Table[{m, StyleForm[m, FontColor -> RGBColor[1, 0, 1]]}, {m, -1, 1, 0.5}]}, PlotLabel -> StyleForm["sinecosine\nplot", FontFamily -> "Helvetica", FontSize -> 16], ImageSize -> {600, 400}, AxesLabel -> {StyleForm[x, FontFamily -> "Courier", FontWeight -> "Bold"], StyleForm[sin(x), FontFamily -> "Courier", FontWeight -> "Bold"]}, Epilog -> {Text["do u like it?", {5, 0.5}]}] Regards Dimitris Î?/Î? Jake ÎγÏ?αÏ?ε: > How do I make my text size to always be 12 ?