This is the mwe of the problem I have in Beamer. If I only use the "english" option in babel, everything is fine, if I add "russian", the text becomes bold. It only seems to occur with /tiny text This is an unwanted outcome. How to get rid of it?
\documentclass[10pt]{beamer}
\usepackage[utf8]{inputenc}
%\usepackage[english]{babel}
\usepackage[english,russian]{babel}
\begin{document}
\tiny bold text?
\end{document}
\tinyin LaTeX selects the font at this small size. When you don't select russian in babel then cm-super font collection is not used. – wipet Mar 26 '23 at 16:50\usepackage[default]{opensans}if you like to stick with pdflatex or see https://tex.stackexchange.com/questions/114587/what-fonts-are-compatible-with-t2a-cyrillic-encoding for more options. If switching to xelatex or lualatex, you have more options. – samcarter_is_at_topanswers.xyz Mar 26 '23 at 19:00