Browse Source

automated update from build.py

main
Colin McMillen 3 years ago
parent
commit
7a6dcdb05c
  1. 2
      blog/20070522-latex-tips.html
  2. 30
      feed.atom

2
blog/20070522-latex-tips.html

@ -31,7 +31,7 @@
<div class="content">
<h1 id="latex-tips">LaTeX Tips</h1>
<p><em>Posted: 2007-05-22</em></p>
<p><em>Posted 2007-05-22.</em></p>
<h2 id="embedding-fonts-in-pdfs">Embedding fonts in PDFs</h2>
<p>To check whether fonts are embedded, use <code>pdffonts</code>, which is included with <code>xpdf</code>. <code>pdffonts</code> gives output that looks like this:</p>
<div class="codehilite"><pre><span></span>$ pdffonts paper.pdf

30
feed.atom

@ -11,6 +11,36 @@
<id>https://www.mcmillen.dev/</id>
<entry>
<title>LaTeX Tips</title>
<id>https://www.mcmillen.dev/blog/20070522-latex-tips.html</id>
<link rel="alternate" href="https://www.mcmillen.dev/blog/20070522-latex-tips.html"/>
<content type="html">
<![CDATA[
<h1 id="latex-tips">LaTeX Tips</h1>
<p><em>Posted 2007-05-22.</em></p>
<h2 id="embedding-fonts-in-pdfs">Embedding fonts in PDFs</h2>
<p>To check whether fonts are embedded, use <code>pdffonts</code>, which is included with <code>xpdf</code>. <code>pdffonts</code> gives output that looks like this:</p>
<div class="codehilite"><pre><span></span>$ pdffonts paper.pdf
name <span class="nb">type</span> emb sub uni object ID
------------------------------------ ------------ --- --- --- ---------
FHQIOS+NimbusRomNo9L-Medi Type <span class="m">1</span> yes yes no <span class="m">6</span> <span class="m">0</span>
NEESMN+NimbusRomNo9L-Regu Type <span class="m">1</span> yes yes no <span class="m">9</span> <span class="m">0</span>
PJQNOS+CMSY10 Type <span class="m">1</span> yes yes no <span class="m">12</span> <span class="m">0</span>
</pre></div>
<p>You want <code>emb</code> to be <code>yes</code> for all fonts (and possibly <code>sub</code> as well; also, all fonts should be Type 1, not Type 3). By default in Ubuntu, pdflatex should embed all fonts. Just in case, you can check <code>/etc/texmf/updmap.d/00updmap.cfg</code>, which should have a line like this:</p>
<p><code>pdftexDownloadBase14 true</code></p>
<p>If it&rsquo;s set to <code>false</code>, change it to <code>true</code>, then run <code>update-updmap</code> as root. Remake the PDF; if it still has non-embedded fonts, your figures are probably to blame. Check your PDF figures and make sure their fonts are embedded (using the <code>pdffonts</code> command). For anything that doesn&rsquo;t have embedded fonts, you can try the following magical invocation (all on one line):</p>
<p><code>gs -dSAFER -dNOPLATFONTS -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sPAPERSIZE=letter -dCompatibilityLevel=1.4 -dPDFSETTINGS=/printer -dCompatibilityLevel=1.4 -dMaxSubsetPct=100 -dSubsetFonts=true -dEmbedAllFonts=true -sOutputFile=figures/Mprime-new.pdf -f figures/Mprime.pdf</code></p>
<p>This creates a file <code>figures/Mprime-new.pdf</code> that is hopefully identical to the input file <code>figures/Mprime.pdf</code>, except that the fonts are embedded. Run <code>pdffonts</code> on it to check.</p>
<p>Once all your figures are in PDF format, remake the paper again. Hopefully, all your fonts are now embedded &mdash; check again with <code>pdffonts</code>.</p>
]]>
</content>
<updated>2007-05-22T12:00:00-04:00</updated>
</entry>
<entry>
<title>93% of Paint Splatters are Valid Perl Programs</title>
<id>https://www.mcmillen.dev/sigbovik/</id>

Loading…
Cancel
Save