I need to use Cyrillic (russian) monospaced font.
I chose courier and added
\usepackage[T1]{fontenc}
and
{\fontfamily{pcr}\selectfont
blabla
}
and that "blabla" is displayed like usual text and there is warning:
LaTeX Font Warning: Font shape `T2A/pcr/m/n' undefined using `T2A/cmr/m/n' instead on input line 245.
How to fix this? At the end I would like to have cyrillic monospaced font with possibility to write bold or underlined words.
Update
here's minimal non-working example:
\documentclass[a4paper,11pt]{article}
\usepackage[cp1251]{inputenc}
\usepackage[russian]{babel}
\usepackage[T1]{fontenc}
\begin{document}
usual text
русский текст
{\fontfamily{pcr}\selectfont
curier?
курьер?
}
\end{document}

pcrfamily. – Leo Liu Aug 17 '12 at 01:18\usepackage[T2A]{fontenc}if you want to print russian; your min.ex. hasT1, which definitely won't work, despite the cyrillic input coding. – wasteofspace Oct 18 '12 at 15:26