[Tex/LaTex] Latex fonts Cyrillic fonts with lh

cyrillicfonts

I am new in latex and trying to LH fonts for output different Cyrillic texts. Can someone help me, please!!! I need something like that

\documentclass[10pt,a5paper,draft]{book}
\usepackage[T2A]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage[russian, english]{babel}

\begin{document}

    Какой-то осмысленный текст1.

    Какой-то осмысленный текст2.

\end{document}

Now it is two the same fonts, but I want them to be different. I know, that I can use xetex to use different fonts, but I need latex, so I found that I can use lh fonts. But I do not know how to include them.

Best Answer

I think that does what you want:

\documentclass[10pt,a5paper,draft]{book}
\usepackage[T2A]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage[russian, english]{babel}

\begin{document}

\rmfamily
Какой-то осмысленный текст1.

\sffamily
Какой-то осмысленный текст2.

\ttfamily
Какой-то осмысленный текст3.

\end{document}

It produces

three different styles of font