Re: [Doxygen-users] problem with latex generation and russian characters
Brought to you by:
dimitri
|
From: Matthias K. <mk...@gm...> - 2015-03-19 07:17:59
|
Hi!
Fabio Mosti <fabio <at> videoarts.eu> writes:
> I experienced a problem generating latex documentation for my code
> since in the comments I also have strings in cyrillic alphabet. This
> is the error I get:
> ---
> ! Package inputenc Error: Unicode char \u8:И not set up for use with
> LaTeX.
> See the inputenc package documentation for explanation.
Did you look at the inputenc documentation? :-)
Mixing latin an cyrillic characters may require some experimentation with
the latex header used by doxygen. I'd try with a simple latex file first,
and when you have something that works, try to integrate changes into the
header used by doxygen (see LATEX_HEADER in the docs).
The following worked for me:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T2A]{fontenc}
\begin{document}
Test: Имя пользователя
\end{document}
Regards,
Matthias
|