1

I could copy the sentence "МАТЕМАТИЧКИ ВЕСНИК" into the LaTeX, however when I press the dvi, it does not show in the dvi. How to make the dvi show the sentence "МАТЕМАТИЧКИ ВЕСНИК"?

Speravir
  • 19,491
John
  • 565
  • 4
    Please add a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with \documentclass{...} and ending with \end{document}. My guess would be that you need some package that can process cyrillic (?) letters, like \usepackage{polyglossia} \setmainlanguage{russian} or \usepackage[utf8]{inputenc} \usepackage[russian]{babel}, see http://tex.stackexchange.com/questions/816/cyrillic-in-latex – Anke Mar 20 '13 at 08:52
  • 1
    Have you tried converting the dvi to pdf or generating pdf from tex? –  Mar 20 '13 at 09:06
  • No. I am editing. – John Mar 20 '13 at 09:10

2 Answers2

3

For a small text in Russian, perhaps the cheapest method is to use the OT2 encoding; in this way no juggling with input encodings is needed.

\documentclass{article}
\usepackage[OT2,T1]{fontenc}
\DeclareRobustCommand{\russtext}[1]{%
  {\fontencoding{OT2}\fontfamily{wncyr}\selectfont#1}%
}
\begin{document}
\russtext{Matematichki Vesnik}
\end{document}

enter image description here

egreg
  • 1,121,712
2

Here is a minimal working example:

\documentclass{article}
\usepackage[koi8-r]{inputenc}
\usepackage[english,russian]{babel}
\begin{document}
\section{Раздел}
Текст на русском языке
\end{document}

I recommend you to read first some books about latex and after that try to work with it.

Eddy_Em
  • 1,405