Re: non-English language [message #83520 is a reply to message #83435] |
Thu, 07 March 2013 08:27  |
chris_torrence@NOSPAM
Messages: 528 Registered: March 2007
|
Senior Member |
|
|
On Thursday, March 7, 2013 4:44:08 AM UTC-7, Katya wrote:
> Hello everyone!
>
>
>
> I need to annotate plots in my Russian language but I can't figure out how to make it properly. I would appreciate any advice or suggestion.
>
>
>
> Thank you,
>
> Katya
Hi Katya,
If you are using new graphics, you can just use Unicode characters directly in your text, like this:
y = RANDOMU(seed,100)
p=PLOT(y, TITLE='$\U(0410,0411,0412)$')
t=TEXT(0.1,0.95, '$\U(0413,0414,0415,0416)$')
Or, if you have a font which contains the Cyrillic characters in their ASCII locations, then you can just use ASCII characters and change the font, like this:
p=PLOT(y, TITLE='ABCDEFG', FONT_NAME='Cyrillic')
(You will need to determine the correct font name.)
Good luck!
-Chris
ExelisVIS
|
|
|