Is it possible to change the OUTPUT font type instead of the default one? How?

This is my default stylesheet: http://filefactory.com/file/cfc2cb0/n/blueOutput.nb

Thanks!

link|improve this question

2  
You might find this So discussion to be of use. Also, you may find the documentation on stylesheets helpful. – David Carraher Nov 3 '11 at 20:57
feedback

5 Answers

up vote 5 down vote accepted

The problem lies in StandardForm not respecting the FontFamily option, although it does seem to respect most other font options. Sjoerd's answer used TraditionalForm output and thus worked. You can see this problem if you run

SetOptions[EvaluationNotebook[], StyleDefinitions -> Notebook[{
    Cell[StyleData[StyleDefinitions -> "Default.nb"]],
    Cell[StyleData["Output"],
     FontColor -> RGBColor[0, 0, .5], FontSize -> 14, 
     FontFamily -> "Symbol", FontWeight -> "Bold"]}]]

Then compare

{1 + 1, "abc", Sin[x]} (* This is by default in StandardForm *)
{1 + 1, "abc", Sin[x]} // StandardForm
{1 + 1, "abc", Sin[x]} // OutputForm
{1 + 1, "abc", Sin[x]} // TraditionalForm

output from above

You can also look at

Dynamic[CurrentValue/@{FontFamily, FontWeight, FontSize}]
Dynamic[CurrentValue/@{FontFamily, FontWeight, FontSize}] // TraditionalForm

output from above

which shows that the CurrentValue of FontFamily "seen" in the output depends on the output format.

Unfortunately, I don't see how to get around this issue...

link|improve this answer
1  
By the way, this is probably a deliberate design choice by WRI. StandardForm is meant to be a clear and unambiguous format. Using a dingbats font would definitely remove the clarity of the format. – Simon Nov 4 '11 at 4:29
So is it wrong if I use TraditionalForm instead of StandardForm ? – Nazaf Nov 4 '11 at 18:18
@Nazaf: No, it's not wrong. I know of a few Mma gurus who use TraditionalForm for a bulk of their work... – Simon Nov 4 '11 at 21:48
feedback

Just go to the Format > Edit Stylesheet... menu. Then in the private style definitions sheet that pops-up choose 'Output' from the pull-down menu and change the looks of the resulting Output cell. This stylesheet will be stored with your open notebook.

enter image description here

enter image description here

link|improve this answer
I already tried this, but changes do not take effect. – Nazaf Nov 3 '11 at 19:08
Try TraditionalForm instead of StandardForm (Cell > Convert to). Most font options (size, color, weight, slant) work fine in both Forms but it looks like the font family choice in TraditionalForm is more restricted than in StandardForm. – Sjoerd C. de Vries Nov 3 '11 at 19:24
I get "$Failed" – Nazaf Nov 3 '11 at 19:26
I am using my own custom stylesheet. – Nazaf Nov 3 '11 at 19:30
1  
By the way, I have the DefaultStyleDefinitions global option set to a custom stylesheet. This is not a problem, right? – Nazaf Nov 3 '11 at 20:54
show 8 more comments
feedback

In light of Simon's answer, you could force output printing in a certain style using $PrePrint.

$PrePrint = Style[#, FontFamily -> "Symbol"] &;

{1 + 1, "abc", Sin[x]}

enter image description here

link|improve this answer
3  
The problem with that is that the output is not copy/paste-able... Maybe $PrePrint = Interpretation[Style[#, FontFamily -> "Symbol"], #] &; – Simon Nov 4 '11 at 5:28
feedback

You can do this by redefining the StandardForm style which is used for Output style by default (see the DefaultFormatType option in the Output style):

SetOptions[EvaluationNotebook[], 
 StyleDefinitions -> 
  Notebook[{Cell[StyleData[StyleDefinitions -> "Default.nb"]], 
    Cell[StyleData["StandardForm"], 
     FontFamily -> "Palatino Linotype"]}, 
   StyleDefinitions -> "PrivateStylesheetFormatting.nb"]]

But Input style in this case is also affected because it is based on the StandardForm style too...

link|improve this answer
feedback

You could try wrapping your inputs using the Style[] command. For example:

test="This is a test string.";
Style[test,{Red,"Title"}]

This generates the string in my style sheet's 'title' settings in the colour red. The solution of changing your Stylesheets is obviously preferable to this, but this might be a quick and dirty temporary workaround.

link|improve this answer
I see a red text in large font size. so what now? – Nazaf Nov 3 '11 at 20:48
I need to automate this in a stylesheet, so I don't have to type it each time. – Nazaf Nov 3 '11 at 20:51
1  
@Nazaf Perhaps you could provide some more information in your question. Something odd is going on if you can't change your style sheet.. – ian.milligan Nov 3 '11 at 20:54
Tell what info do you need? – Nazaf Nov 3 '11 at 20:58
If I use Shift + Ctrl + E to edit the expression manually change font family it works !! But how do I save changes to the global stylesheet ? – Nazaf Nov 3 '11 at 21:19
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.