Set Garamond fonts in latex

2011-08-21 01:00:45

I generally use Garamond as my default fonts in Latex writing. Partially because it is old-styled and still used in many French booklets.

If you don’t have Garamond fonts installed with your tex distribution, then following might be helpful for you.

  1. download from CTAN, choose garamond zip file.

  2. find your texmf tree in your file system, usually it is

    1
    /usr/share/textmf
  3. install all .pfb files into

    1
    <texmf>/fonts/type1/urw/garamond 

    and all .afm files to
    1
    <texmf>/fonts/afm/urw/garamond 

  4. update fonts database by

    1
    sudo fc-cache -vf 

  5. delete the file

    1
    <texmf>/dvips/config/ugm.map 

    and configure by
    1
    sudo texhash then updmap --enable Map ugm.map 

If everything is going correctly you will soon be able to use Garamond fonts. Good luck!