|
Yu,
In fact the blank more you are presenting is generating
the \nosupersub code in rtf code
like here
data class;set sashelp.class;
new="AUC¤{sub ¤\u964 } (h*µmol/L)";
wen="AUC\{sub \\u964 } (h*µmol/L)";
run;
ods listing close;
ods escapechar = '\';
ods noresults;
ods rtf file="d:\temp\muchar1.rtf" ;
title "AUC \{sub \\u964 } (h*µmol/L)";
proc print data=class(obs=1);
run;
ods rtf close;
ods results;
ods listing;
there was no need to double it (the second blank after the rtf code is
doing it!)
like in my preceeding solution
title "AUC¤{sub ¤\u964 ¤\nosupersub} (h*µmol/L)";
or with another variation
title "AUC \{sub \\u964 } \R/rtf'\nosupersub ' (h*µmol/L)";
in this program
Andre
Yu Zhang a écrit :
> Hi, Joakim,
>
> You just need an extra space after \u964, like AUC¤{sub ¤\u964 }.
>
>
> Yu
>
> On Tue, Sep 23, 2008 at 5:19 AM, Joakim Englund <joakim.englund@gmail.com>wrote:
>
>
>> Hello,
>>
>> How can I get a normal script after a subscript of a special symbol
>> (tau in this case)?
>>
>> The following code makes everything after AUC a subscript, but I need
>> (h*µmol/L) to be normal.
>>
>> ods escapechar = '¤';
>> "AUC¤{sub ¤\u964} (h*µmol/L)"
>>
>>
>> Kind Regards,
>> Joakim
>>
>>
>
>
--
André WIELKI
INED (Institut National d'Etudes Démographiques)
Service Informatique
133 Boulevard Davout 75980 Paris Cedex 20
mél : wielki@ined.fr tél : 33 (0) 1 56 06 21 54
|