there is a set of international bitmap fonts for printing in emacs
i think the package is called intlfonts-bdf
i think you have to set the variable
ps-multibyte-buffer
to
bdf-font (uses bdf totally)
or
bdf-font-except-latin (uses only for non latin chars)
you may have to set the variable
bdf-directory-list
to find the fonts
of the top of my head try this in your .emacs after you install the fonts
Code:
;; BDF fonts for printing
(load-library "ps-bdf")
(setq ps-multibyte-buffer
'bdf-font-except-latin)
(setq bdf-directory-list
'(
"/some/path/to/fonts"))
i think the fonts by default go somewhere like
/usr/share/fonts/emacs/bdf
or /usr/local/share
might not need to specify where they are if they are in default place