add tag
topnush
I just want to show this line:

{'Ш', 'Ц', 'Р', 'ш', 'л', 'й', 'ц', 'П', 'р', 'щ', 'Ж', 'М', 'х', 'ф', 'п', 'К', 'ж', 'Н', 'в', 'Х', 'м', 'к', 'Л', 'ъ', 'Щ', 'с', 'Т', 'С', 'Д', 'Г', 'ч', 'т', 'з', 'Б', 'Й', 'н', 'г', 'д', 'Ф', 'б', 'В', 'Ч', 'З'}  {'ю', 'У', 'И', 'Ю', 'о', 'я', 'ё', 'Е', 'О', 'А', 'а', 'у', 'ь', 'Я', 'Э', 'и', 'э', 'е', 'ы'}


How can do that in my beamer presentation?  Currently I get an error saying the characters are not available.


```
\documentclass{beamer}
\usepackage[T1]{fontenc}
\begin{document}

\begin{frame}{NLP investigations}

Russian: {'Ш', 'Ц', 'Р', 'ш', 'л', 'й', 'ц', 'П', 'р', 'щ', 'Ж', 'М', 'х', 'ф', 'п', 'К', 'ж', 'Н', 'в', 'Х', 'м', 'к', 'Л', 'ъ', 'Щ', 'с', 'Т', 'С', 'Д', 'Г', 'ч', 'т', 'з', 'Б', 'Й', 'н', 'г', 'д', 'Ф', 'б', 'В', 'Ч', 'З'}  {'ю', 'У', 'И', 'Ю', 'о', 'я', 'ё', 'Е', 'О', 'А', 'а', 'у', 'ь', 'Я', 'Э', 'и', 'э', 'е', 'ы'}
\end{frame}
\end{document}
```
Top Answer
CarLaTeX
I found the solution here: https://it.overleaf.com/learn/latex/russian

P.S. = you do not need `\usepackage[utf8]{inputenc}` if you have an up-to-date LaTeX distribution.

```
\documentclass{beamer}
%Russian-specific packages
%--------------------------------------
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
%--------------------------------------
\begin{document}

\begin{frame}{NLP investigations}

Russian: {'Ш', 'Ц', 'Р', 'ш', 'л', 'й', 'ц', 'П', 'р', 'щ', 'Ж', 'М', 'х', 'ф', 'п', 'К', 'ж', 'Н', 'в', 'Х', 'м', 'к', 'Л', 'ъ', 'Щ', 'с', 'Т', 'С', 'Д', 'Г', 'ч', 'т', 'з', 'Б', 'Й', 'н', 'г', 'д', 'Ф', 'б', 'В', 'Ч', 'З'}  {'ю', 'У', 'И', 'Ю', 'о', 'я', 'ё', 'Е', 'О', 'А', 'а', 'у', 'ь', 'Я', 'Э', 'и', 'э', 'е', 'ы'}
\end{frame}
\end{document}
```
![image.png](/image?hash=ec267bfaac5dfcf7b86c676ea8b4f2a90b3a2450047c6097f43935162310dcba)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.