 
 
 
 
 
 
Re: Typesetting
- To: mathgroup at smc.vnet.net
- Subject: [mg108023] Re: Typesetting
- From: Peter Breitfeld <phbrf at t-online.de>
- Date: Fri, 5 Mar 2010 04:34:51 -0500 (EST)
- References: <hmo22s$q4s$1@smc.vnet.net>
John wrote:
> Mathematica 6, Windows XP
>
> Style[Framed[
>    OverBar[X] == (1/n Sum[Subscript[X, i], {i, 1, n}] // HoldForm),
>    FrameMargins -> 15], FontFamily -> "Tahoma", FontSize -> 24,
>   Bold] // TraditionalForm
>
> The appearance of the above formula would be much better, if the 1/n
> printed in front of the summation sign. I hope someone will tell me
> how to do it.
>
> John
>
You might use Row 
Style[Framed[
   OverBar[X] == 
    Row[{1/n //HoldForm,
        (Sum[Subscript[X, i], {i, 1, n}] // HoldForm)}], 
   FrameMargins -> 15], FontFamily -> "Tahoma", FontSize -> 24, 
  Bold] // TraditionalForm
-- 
_________________________________________________________________
Peter Breitfeld, Bad Saulgau, Germany -- http://www.pBreitfeld.de

