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
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to