Re: two format questions
- To: mathgroup at smc.vnet.net
- Subject: [mg71824] Re: two format questions
- From: Peter Pein <petsie at dordos.net>
- Date: Thu, 30 Nov 2006 06:05:30 -0500 (EST)
- References: <ekjf17$cfd$1@smc.vnet.net>
dimitris schrieb:
> Options[SelectedNotebook[]]
>
> {FrontEndVersion -> "5.2 for Microsoft Windows", ScreenRectangle ->
> {{0., 1024.}, {0., 681.}}, AutoGeneratedPackage -> None,
> WindowToolbars -> {"RulerBar", "EditBar"}, WindowSize -> {1013.,
> 647.}, WindowMargins -> {{0., Automatic}, {Automatic, 0.}},
> ShowSelection -> True, ShowCellLabel -> False, FormatType ->
> TraditionalForm, StyleDefinitions -> "Classroom.nb"}}
>
> What exactly the following command changes?
>
> SetOptions[EvaluationNotebook[], FormatType -> StandardForm]
>
> Suppose that the Default Output Format Type of someone's is
> StandardForm.
> I have write a notebook where I have use the Output Format
> Type->TraditionalForm.
> I want when the other deal with my notebook the Outputs for this
> notebook to continue to be
> displayed in TraditionalForm regardless his default. How can I do that?
>
> Thanks a lot!
>
> Dimitris
>
You could try to set $PrePrint=TraditionalForm; in the first line of your
notebook.
P^2