Fonts & Character SetsEsperanto and Russian

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
usr345
Posts: 37
Joined: Fri Apr 01, 2011 11:39 pm

Esperanto and Russian

Post by usr345 »

I wanted to typeset the song in Esperanto and it's translation in Russian. But LaTeX doesn't understand the accented Esperanto characters. Though, the text is saved in utf-8, LaTeX refuses to compile. So I have to use \^ sign, which is quite uncomfortable.

This minimal example with special Esperanto characters is not compiled:

Code: Select all

\documentclass{article}
\usepackage[a4paper]{geometry}
\usepackage[cm]{fullpage}
\usepackage[utf8]{inputenc}
\usepackage[esperanto,russian]{babel}
\begin{document}
ĈĉĜĝĤĥĴĵŜŝŬŭ
\end{document}
This works:

Code: Select all

\documentclass{article}
\usepackage[a4paper]{geometry}
\usepackage[cm]{fullpage}
\usepackage[utf8]{inputenc}
\usepackage[esperanto,russian]{babel}
\begin{document}
\^C\^c\^G\^g\^H\^h\^J\^j\^S\^s\u{U}\u{u}
\end{document}
But look, how ugly it is.

Also is it possible to move the '^' symbol a little upwards? Cause it almost merges with small 'c' and 'g'. Is there such font or something?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
bro
Posts: 1
Joined: Wed May 23, 2012 9:10 pm

Esperanto and Russian

Post by bro »

There are three ways to input esperantic letters:
Tex Style:

Code: Select all

\^Ce\^ha \^sa\u umman\^ga\^{\j}o
Deadkey style:

Code: Select all

^Ce^ha ^sa\u umman^ga^jo
8-bit Latin-3 characters:

Code: Select all

^e^a ^a ̆mman^a^o
[third way requires Esperanto localization of the editor used]
http://homes.esat.kuleuven.be/~texmf/in ... readme.pdf
usr345
Posts: 37
Joined: Fri Apr 01, 2011 11:39 pm

Esperanto and Russian

Post by usr345 »

bro wrote:third way requires Esperanto localization of the editor used
I use Emacs. It must support all the charsets.
Last edited by usr345 on Tue Jun 12, 2012 5:20 pm, edited 1 time in total.
Drkazmer
Posts: 8
Joined: Sat Dec 27, 2008 7:55 pm

Re: Esperanto and Russian

Post by Drkazmer »

What about T1 fontenc and latin2 inputenc?
Post Reply