|
|
Re: Subscript on plus expression
Posted:
Nov 19, 2012 7:18 PM
|
|
How about this?
MakeBoxes[Subscript[(head : (Plus | Times))[args__], k_], form : (StandardForm | TraditionalForm)] := InterpretationBox[#1, #2] & @@ {SubscriptBox[RowBox[{"(", ToBoxes[head[args], form], ")"}], ToBoxes[k, form]], Subscript[head[args], k]}
Tests:
Subscript[a + b, k]
Subscript[a x, k]
David Park djmpark@comcast.net http://home.comcast.net/~djmpark/index.html
From: Dave Snead [mailto:dsnead6@charter.net]
Hi,
Mathematica fails to parenthesize the a+b in Subscript[Plus[a,b],k]
so the output looks identical to Plus[a,Subscript[b,k]]
Is this a bug? Is there an option to force the parentheses?
Thanks in advance, Dave Snead
|
|