
Type 1 fonts:
Place the *.pfb files in texmf/fonts/type1/Hebrew

To use hebrew fonts with the pslatex package:
put lheptm.fd in  texmf/tex/generic/babel

dvips map file:
Put hebrew_std.map in texmf/dvips/config

run texhash

On Unix
=========
To use by default:
-------------------
edit  texmf/dvips/updmap and near extra_modules it should look like
extra_modules="
hebrew_std.map
"

run updmap



To specify per user:
---------------------
Each user should include hebrew_std.map (in his .dvipsrc file)

On windows
=========
On the (now aging) TkTeX add the lines from  hebrew_std.map
to psfonts.map

Add to updmap script 
====================
    # Updating /etc/texmf/dvips/*.map by updmap
    cfgfile=`kpsewhich updmap`
    if [ -f ${cfgfile} ] ; then
        if ! grep -q "hebfonts_type1.map" ${cfgfile}; then
        sed -e '/^extra_modules/a pxr2.map\' '
            < ${cfgfile} > ${cfgfile}_pxfonts.tmp && \
          mv -f ${cfgfile}_pxfonts.tmp ${cfgfile}
        fi
        cd `dirname ${cfgfile}` && sh ${cfgfile}
    fi

Remove from updmap script
=========================
    # Removing the line for pxfonts from /etc/texmf/dvips/updmap
    
    cfgfile=`kpsewhich updmap`

    if [ -f ${cfgfile} ] ; then
        sed -e '/pxr2.map/d' < ${cfgfile} > \
            ${cfgfile}_$$ && mv -f ${cfgfile}_$$ ${cfgfile}
        cd `dirname ${cfgfile}` && sh ${cfgfile}
    fi

