[Tex/LaTex] How to include russian in LaTeX (LEd)

languages

How to include russian in LaTeX (LEd) ?

\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage[russian]{babel}
\begin{document}
Hello
\end{document}

! Package babel /b/c9/cError:/b/c0/c You haven't loaded the option english yet.
See the babel package documentation for explanation.
Type H for immediate help.

Best Answer

It seems this problem is caused because you are not defining the input or encoding method. Furthermore, you are specifying the use of russian language, and then writting something in english.

For russian and english, you could try the following:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amssymb}
\usepackage[russian,english]{babel}

\begin{document}
Hello

\begin{quote}
  \selectlanguage{russian}
  Я помню чудное мгновенье:\\
  Передо мной явилась ты,\\
  Как мимолетное виденье,\\
  Как гений чистой красоты.
\end{quote}


\end{document}

Disclaimer: I don't speak Russian and and I have no idea what it says.

For more information about cyrillic, please see this post: Cyrillic in (La)TeX