LaTeX is great for typesetting professional looking scientific / engineering documents, but up till now it has not handled non-roman characters very well. It has taken me a while to find the instructions on how to make it work.
Pai's comment: Make sure you use an editor such as TeXShop which can save in UTF-8 encoding. Vim also works if you do :set encoding=utf-8 inside vim or in the file ".vimrc" (without colon).
The TrueType unicode font will be embedded for a very smooth looking PDF document.
% pdflatex yourfile.tex
| Q: | I get the error "mktexpk: don't know how to create bitmap font for cyberbit59." (or something like that) what do I do? |
| A: | It is most likely your /usr/local/teTeX/share/texmf.local/pdftex/config/pdftex.cfg file was not updated correctly, or your cyberbit.map file is not there. If you have another stale copy of pdftex.cfg in your current directory (or another directory searched before this one), then pdfTeX looks at it instead. To fix it, remove all stale copies of pdftex.cfg. By the way, "pk" files are for bitmap fonts, but cyberbit is a TrueType font. This is an indication that your TrueType font file was not found. |
| Q: | I am running TeXLive 2004 but the truetype font can no longer be found, so it keeps trying to make pk font. How do I fix it? |
| A: |
You probably skipped the new step (4.b) above. |