|
|
Re: Subscript on plus expression
Posted:
Nov 18, 2012 5:21 PM
|
|
Format[Subscript[arg_Plus, k_]] := Subscript["(" <> StringJoin @@ Riffle[ToString /@ (List @@ arg), " + "] <> ")", k]
Subscript[a + b + 2, k]
Bob Hanlon
On Sun, Nov 18, 2012 at 3:57 AM, Dave Snead <dsnead6@charter.net> wrote: > 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 > > >
|
|