Daniel Lemire's blog

  • Marie says:

    Thank you for this summary, it was very helpful as I was preparing a submission to a journal that wanted fonts embedded in the PDF. A few months later, tetex was updated and I noticed that it broke. Rerunning updmap as root was sufficient to fix the problem, the configuration files were untouched.

  • Antonio Frisoli says:

    Daniel, thank you very much for your clear summary, that works very well also under windows.
    I would suggest to all authors that are used to work with latex to follow this procedure, rather than generating a ps file and then converting it to pdf.

  • Jürgen says:

    Hi Daniel,

    thanks a lot for that! I was looking for an easy way to achieve embedding fonts. Yours worked without any problems!

    PS: For creating PS-Documents with all fonts embedded, one can use the parameter -Pdownload35 for dvips.

  • Faruque says:

    Hi Daniel,

    It’s nice to solve a hard problem by a few linux commands. Yes, my problem of font embedding (+ subsetting) is solved in this way. But I had problems with colored image. So, I opened it in GIMP and saved it as grayscale. Then I got right behavior from pdflatex.

  • Virgil says:

    Hi: Thanks for putting me on the right track.
    In my Ubuntu Linux v 6.06 — Dapper (and LIKELY on debian Sarge also) the file updmap.cfg is automatically generated. It asks the user NOT to modify it, and look at the files in the directory /etc/texmf/updmap.d/ instead.
    In that directory, the relevant file is: 00updmap.cfg
    One can edit this file and set the option :
    dvipsDownloadBase35 true
    The other relevant options seem to have been set to “embed all” during installation:
    pdftexDownloadBase14 true
    dvipdfmDownloadBase14 true
    The file contains plenty of comments explaining the various options. There are ways to overrule the file setting in specific cases.
    AFTER MODIFYING THIS FILE one should run: update-updmap

    I did the above with root (or sudo) privilege.

    HtH.
    Virgil

  • Zepu says:

    Hi Jurgen,

    Regarding the -Pdownload35 option of dvips, the manual also says the option -Ppdf makes dvips try to “include Type 1 outline fonts”. I don’t know the relation between these two options.

  • Brian de Alwis says:

    Unfortunately this doesn’t cause fonts in embedded images to be themselves embedded. For example, PDFs generated from Gnuplot use Helvetica by default. But the camera-ready prep document from a conference named CPVR provides a Ghostscript processing command that does the trick:

    gs -sDEVICE=pdfwrite -q -dBATCH -dNOPAUSE -dSAFER
    -dPDFX
    -dPDFSETTINGS=/prepress
    -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode
    -dAutoFilterGrayImages=false -dGrayImageFilter=/FlateEncode
    -sOutputFile=ieee.pdf
    -c ‘> setdistillerparams’
    -f cvpr06.pdf
    -c quit

  • Comments are closed.