Re: [R] double subscripts with Greek letter

2017-01-02 Thread Jeff Shane
Thanks, Erin! This works well. On 2017/1/1 22:37, Erin Hodgess wrote: > Hello! > > Here is a solution: > > > plot(1:10) > > xa <- expression(A[list(alpha,beta)]) > > title(xa) > > > > On Sun, Jan 1, 2017 at 1:22 PM, Jeff Shane <mailto:honolulush

Re: [R] double subscripts with Greek letter

2017-01-02 Thread Jeff Shane
Thanks, Bill! Yes, your code works well. On 2017/1/1 23:17, William Dunlap wrote: > Does the following do well enough? >plot(1,1);title(expression(A[paste(alpha,",",beta)])) > > > Bill Dunlap > TIBCO Software > wdunlap tibco.com <http://tibco.com> >

[R] double subscripts with Greek letter

2017-01-01 Thread Jeff Shane
Hi all, I have a question which seems trivial but simply cannot figure out its solution. I want to type A_{\alpha,\beta} in the title of a plot. Uwe once pointed out a solution expression(A[alpha*beta]) But the output of the above command does not include the "," in the subscript. Is there a wa