Thierry Volpiatto writes: Hi Thierry Thierry Volpiatto writes: > Ho! it's an emacs unicode, you have to use bitstream font or dejavu > fonts, here my config:(work with emacs unicode and non unicode) > > ;; To make emacs no unicode and emacs unicode working > ;; with same config. > > (if (charsetp 'unicode-bmp) > (progn > (prefer-coding-system 'utf-8) > (set-default-font "Bitstream Vera Sans Mono-12:weight=bold")) > (set-default-font "-misc-fixed-bold-*-normal-*-14-*-75-75-*-*-iso8859-15") > (if (not (assoc "UTF-8" language-info-alist)) > (set-language-environment "latin-9") > (set-language-environment "utf-8") > (set-keyboard-coding-system 'utf-8) > (set-terminal-coding-system 'utf-8) > (prefer-coding-system 'utf-8))) It's working better now. I use your code above but the font is too small for me. I changed the line (set-default-font "Bitstream Vera Sans Mono-12:weight=bold")) to: ,---- | (set-default-font "DejaVu Sans-20:weight=medium")) `---- However, "customize-faces default" says, the default font is "unknown-dejavu sans". Something still seems not correct. Also, there are still some fontsizes unavailable. Depending on the default size (I tried 12, 16, 18, and finally 20), either the \part{} and \section{} headings or the \chapter{} and \section{} headings in AucTeX again turn up tiny. I think, the pre-defined font sizes for these faces are unavailable. Is it possible to build them? At least italic and bold fonts are visible now. I liked adobe-courier more. Greetings Sven