I am currently preparing a paper, which makes heavy use of Cyrillic fonts in footnotes. Now I encountered two problems: First, the actual font doesn't make use of Italics, although – as Microsoft Office clearly shows – Italic Cyrillic scripts are available; second, I use csquotes with French Guillemets/Chevrons and it is impossible for me to include them in an easy way – more specifically single Guillemets/Chevrons (e. g. ‹/›). Is there a way to solve either one or both these problems?
\documentclass[a4paper,12pt]{scrreprt}
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
\usepackage[T2A,T1]{fontenc}
\usepackage[french,USenglish,UKenglish,bulgarian,ngerman]{babel}
\usepackage{lmodern}
\usepackage{relsize}
\usepackage[babel,style=swiss,maxlevel=3,threshold=3]{csquotes}
\newenvironment*{smallquote}
{\quote\singlespacing\smaller}
{\endquote}
\SetBlockEnvironment{smallquote}
\begin{document}
Hello.\footnote
{
\enquote{\begin{otherlanguage*}{bulgarian}\enquote*{\textit{Здрасти}.}\end{otherlanguage*}
}
\end{document}


lmoderndoes not have an italic shape for T2A/Cyrillic. If I don't loadlmodernthe Italics work for me. It also seems to me that T2A has no single guillemet glyph. But hopefully someone who knows more about this stuff comes along and can explain this in more detail and offer proper solutions. – moewe May 12 '18 at 14:25lmoderndoesn't really do Cyrillic. – moewe May 12 '18 at 14:29substitutefontlets you uselmodernfor T1 and a Cyrillic font with T2A. See also https://tex.stackexchange.com/q/114587/35864 – moewe May 12 '18 at 14:35