Fonts & Character SetsRussian Cyrillic font

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
gpn
Posts: 11
Joined: Thu Oct 15, 2009 11:22 am

Russian Cyrillic font

Post by gpn »

I use Cyrillic font to produce Russian PDF. The problem is, I am not able to produce bold fonts.

My tex file is

Code: Select all

\documentclass{article}
\usepackage[margin=1.0in]{geometry}
\usepackage[OT2]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage[english,russian]{babel}

\begin{document}
\fontencoding{OT2}\fontfamily{wncyss}\fontseries{b}\selectfont
{Все люди рождаются свободными и равными в своем достоинстве и правах. Они наделены разумом и совестью и должны поступать в отношении друг друга в духе братства.}
\end{document}
The log error is :
......
(/usr/share/texmf/tex/latex/cyrillic/ot2wncyss.fd)

LaTeX Font Warning: Font shape `OT2/wncyss/b/n' undefined
(Font) using `OT2/wncyss/m/n' instead on input line 9.

(/usr/local/share/texmf/tex/latex/unicode/data/uni-4.def) [1{/usr/share/texmf-v
ar/fonts/map/pdftex/updmap/pdftex.map}] (./russian.aux
.....

I there any way to produce bold font for the family wncyss.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

juliette
Posts: 75
Joined: Thu Nov 20, 2008 10:15 pm

Russian Cyrillic font

Post by juliette »

Hi gpn,

Have you tried:

Code: Select all

\usepackage{cyrillic}
\newcommand{\cyrrm}{\fontencoding{OT2}\selectfont\textcyrup}
\newcommand{\cyrit}{\fontencoding{OT2}\selectfont\textcyrit}
\newcommand{\cyrsl}{\fontencoding{OT2}\selectfont\textcyrsl}
\newcommand{\cyrsf}{\fontencoding{OT2}\selectfont\textcyrsf}
\newcommand{\cyrbf}{\fontencoding{OT2}\selectfont\textcyrbf}
\newcommand{\cyrsc}{\fontencoding{OT2}\selectfont\textcyrsc}
%%%% cyrrm = "Roman", or really upright, normal font
%%%% cyrit = Italic (cursive forms of letters)
%%%% cyrsl = Italic (non-cursive forms of letters)
%%%% cyrsf = Sans-serif
%%%% cyrbf = Bold-face 
\cyrbf is the bold face one
juliette
Posts: 75
Joined: Thu Nov 20, 2008 10:15 pm

Re: Russian Cyrillic font

Post by juliette »

It worked for me:

http://www.cromwell-intl.com/russian/latex.html

just download cyrillic.sty form here.

You may have to rename it because MiKTeX already has a cyrillic folder.

I was able to get bold cyrillic font
Post Reply