Cyrillic letters in ROOT

[quote=“ryzhinskiy”]Hello. Is it possible to place on ROOT canvas (via TText, TLegend …) cyrllic letters? If it is so, how can I do that?
Thank you beforehand.[/quote]You could use LaTeX and psfrag package. Something like that:

\documentclass{article} \usepackage{psfrag} \begin{document} \pagestyle{empty} \psfrag{mark}{Cyrillic letter\ldots} \includegraphics{your root eps picture with <<mark>> instead <<Cyrillic letter\ldots>>.eps} \end{documents} Run latex on that file and dvips with option -E. Now you have cyrillic letters in eps picture. Link about psfrag on russian

Evgueni