I am using pdftex (not XeTeX or LuaTeX) and I need to submit a camera-ready article in Times. My article is in English but needs to briefly quote Russian sources, some of which have inline italics. When I use the mathptmx package, however, none of the Cyrillic text is in italics.
For example, the following produces "Неприкосновенный запас", not "Неприкосновенный запас" as desired:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{mathptmx}
\usepackage[russian,english]{babel}
\begin{document}
\foreignlanguage{russian}{\textit{Неприкосновенный} запас}
\end{document}
I suppose this is because the Times font doesn't provide italic Cyrillic glyphs. However, it's not a big deal if my Russian text is in a slightly different serif font. What's the easiest way to set up my document so that I can produce Cyrillic text in both upright and italic variants (in addition to the default Times for the Latin text)?



\slantbox[.25]{}instead of\textit{}, as found in Bruno's answer at http://tex.stackexchange.com/questions/63179/shear-transform-a-box/63188#63188 – Steven B. Segletes Apr 28 '15 at 20:22ebgaramondhas cyrillic glyphs in upshape and italic shpae (but purposely no bold version). It has ascaled=option that allows to match x-height with the height of another font. – Bernard Apr 28 '15 at 20:30