Re: how do I embed all fonts using pdflatex on windows?

2008-05-15 Thread Nathan Miller

I think you are right, Les. The huge number of fonts must be from the
figures, which is worrisome b/c I have over 100 figures. Most figures are
saved as pdf from matlab, while the rest are printed from powerpoint and
tinycad using pdfcreator. For most figures, I use a script to automatically
calculate the bounding box, which uses pdftops, ps2eps, and finally
epstopdf. Maybe a solution would be to see whether any of those 3 programs
can be set to embed all fonts.

Using pdffonts, I have ~100 type 1 fonts (most not embedded), 10 truetype
fonts (all embedded), ~10 type 3 fonts (all embedded), ~3 type 1c fonts
(embedded), and 1 CID truetype font (embedded). So Les, if I'm understanding
you correctly, I should only potentially have trouble with the type3 and
CID1 fonts becoming bitmapped if I use ps2pdf.

As a first try, I will use pdflatex, then pdf2ps, then ps2pdf to see how it
looks, since it's easier than redoing all my figures.  

I know basically nothing about all this font business, but naively it seems
like some program should just be able to see which fonts are not embedded,
and then add them to the pdf. Is there a basic reason this wouldn't work?
-- 
View this message in context: 
http://www.nabble.com/how-do-I-embed-all-fonts-using-pdflatex-on-windows--tp17246337p17256501.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: how do I embed all fonts using pdflatex on windows?

2008-05-15 Thread Nathan Miller

Got it to work! I followed Les' advice and fixed each figure pdf file. Since
I already converted each figure pdf to ps then eps then pdf, I figured it
wouldn't hurt anything to do it again. But this time I added some ghostview
commands to epstopdf. Originally I had:

epstopdf --nocompress input.eps

which I changed to:

epstopdf --nocompress --gsopt=-dPDFSETTINGS=/prepress -dSubsetFonts=true
-dEmbedAllFonts=true input.eps

All fonts are now embedded and my thesis was accepted!

ps - I don't remember why I originally decided to use epstopdf instead of
eps2pdf for the conversion.
-- 
View this message in context: 
http://www.nabble.com/how-do-I-embed-all-fonts-using-pdflatex-on-windows--tp17246337p17264446.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: how do I embed all fonts using pdflatex on windows?

2008-05-15 Thread Nathan Miller

I think you are right, Les. The huge number of fonts must be from the
figures, which is worrisome b/c I have over 100 figures. Most figures are
saved as pdf from matlab, while the rest are printed from powerpoint and
tinycad using pdfcreator. For most figures, I use a script to automatically
calculate the bounding box, which uses pdftops, ps2eps, and finally
epstopdf. Maybe a solution would be to see whether any of those 3 programs
can be set to embed all fonts.

Using pdffonts, I have ~100 type 1 fonts (most not embedded), 10 truetype
fonts (all embedded), ~10 type 3 fonts (all embedded), ~3 type 1c fonts
(embedded), and 1 CID truetype font (embedded). So Les, if I'm understanding
you correctly, I should only potentially have trouble with the type3 and
CID1 fonts becoming bitmapped if I use ps2pdf.

As a first try, I will use pdflatex, then pdf2ps, then ps2pdf to see how it
looks, since it's easier than redoing all my figures.  

I know basically nothing about all this font business, but naively it seems
like some program should just be able to see which fonts are not embedded,
and then add them to the pdf. Is there a basic reason this wouldn't work?
-- 
View this message in context: 
http://www.nabble.com/how-do-I-embed-all-fonts-using-pdflatex-on-windows--tp17246337p17256501.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: how do I embed all fonts using pdflatex on windows?

2008-05-15 Thread Nathan Miller

Got it to work! I followed Les' advice and fixed each figure pdf file. Since
I already converted each figure pdf to ps then eps then pdf, I figured it
wouldn't hurt anything to do it again. But this time I added some ghostview
commands to epstopdf. Originally I had:

epstopdf --nocompress input.eps

which I changed to:

epstopdf --nocompress --gsopt=-dPDFSETTINGS=/prepress -dSubsetFonts=true
-dEmbedAllFonts=true input.eps

All fonts are now embedded and my thesis was accepted!

ps - I don't remember why I originally decided to use epstopdf instead of
eps2pdf for the conversion.
-- 
View this message in context: 
http://www.nabble.com/how-do-I-embed-all-fonts-using-pdflatex-on-windows--tp17246337p17264446.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: how do I embed all fonts using pdflatex on windows?

2008-05-15 Thread Nathan Miller

I think you are right, Les. The huge number of fonts must be from the
figures, which is worrisome b/c I have over 100 figures. Most figures are
saved as pdf from matlab, while the rest are printed from powerpoint and
tinycad using pdfcreator. For most figures, I use a script to automatically
calculate the bounding box, which uses pdftops, ps2eps, and finally
epstopdf. Maybe a solution would be to see whether any of those 3 programs
can be set to embed all fonts.

Using pdffonts, I have ~100 type 1 fonts (most not embedded), 10 truetype
fonts (all embedded), ~10 type 3 fonts (all embedded), ~3 type 1c fonts
(embedded), and 1 CID truetype font (embedded). So Les, if I'm understanding
you correctly, I should only potentially have trouble with the type3 and
CID1 fonts becoming bitmapped if I use ps2pdf.

As a first try, I will use pdflatex, then pdf2ps, then ps2pdf to see how it
looks, since it's easier than redoing all my figures.  

I know basically nothing about all this font business, but naively it seems
like some program should just be able to see which fonts are not embedded,
and then add them to the pdf. Is there a basic reason this wouldn't work?
-- 
View this message in context: 
http://www.nabble.com/how-do-I-embed-all-fonts-using-pdflatex-on-windows--tp17246337p17256501.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: how do I embed all fonts using pdflatex on windows?

2008-05-15 Thread Nathan Miller

Got it to work! I followed Les' advice and fixed each figure pdf file. Since
I already converted each figure pdf to ps then eps then pdf, I figured it
wouldn't hurt anything to do it again. But this time I added some ghostview
commands to epstopdf. Originally I had:

epstopdf --nocompress input.eps

which I changed to:

epstopdf --nocompress --gsopt="-dPDFSETTINGS=/prepress -dSubsetFonts=true
-dEmbedAllFonts=true" input.eps

All fonts are now embedded and my thesis was accepted!

ps - I don't remember why I originally decided to use epstopdf instead of
eps2pdf for the conversion.
-- 
View this message in context: 
http://www.nabble.com/how-do-I-embed-all-fonts-using-pdflatex-on-windows--tp17246337p17264446.html
Sent from the LyX - Users mailing list archive at Nabble.com.



how do I embed all fonts using pdflatex on windows?

2008-05-14 Thread Nathan Miller
I've used Lyx for writing my thesis and it has been wonderful! Everything
works beautifully and I'm ready to submit my final pdf file. However, I just
realized I need to embed all the fonts in the pdf, and I haven't been able
to figure out how to do this.

I've found lots of information on using ps2pdf, but at this point with a 150
page document, I'm worried about the conversion from pdf - ps - pdf. Is
there a way to embed the fonts with pdflatex, which is what I'm already
using in Lyx?

I'm checking whether the fonts are embedded using Acrobat (properties) and
pdffonts. There are a scary number of fonts (~100) and most are not
embedded.

I found instructions about pdflatex here:
http://do.whileloop.org/soft/tricks/pdflatex-fonts.php
but it seemed like my pdftex config file is already set to
*pdftexDownloadBase14 true
*but I tried anyway and used the command
*initexmf --edit-config-file updmap*
to edit updmap.cfg and added the following lines:
*pdftexDownloadBase14 true
dvipsPreferOutline true
dvipsDownloadBase35 true
dvipdfmDownloadBase14 true*

But the added lines seem to have no affect on the embedded pdf fonts. Any
help is much appreciated.

(using Windows XP Pro with Lyx 1.5.5, Miktex 2.7 with all updated packages)


how do I embed all fonts using pdflatex on windows?

2008-05-14 Thread Nathan Miller
I've used Lyx for writing my thesis and it has been wonderful! Everything
works beautifully and I'm ready to submit my final pdf file. However, I just
realized I need to embed all the fonts in the pdf, and I haven't been able
to figure out how to do this.

I've found lots of information on using ps2pdf, but at this point with a 150
page document, I'm worried about the conversion from pdf - ps - pdf. Is
there a way to embed the fonts with pdflatex, which is what I'm already
using in Lyx?

I'm checking whether the fonts are embedded using Acrobat (properties) and
pdffonts. There are a scary number of fonts (~100) and most are not
embedded.

I found instructions about pdflatex here:
http://do.whileloop.org/soft/tricks/pdflatex-fonts.php
but it seemed like my pdftex config file is already set to
*pdftexDownloadBase14 true
*but I tried anyway and used the command
*initexmf --edit-config-file updmap*
to edit updmap.cfg and added the following lines:
*pdftexDownloadBase14 true
dvipsPreferOutline true
dvipsDownloadBase35 true
dvipdfmDownloadBase14 true*

But the added lines seem to have no affect on the embedded pdf fonts. Any
help is much appreciated.

(using Windows XP Pro with Lyx 1.5.5, Miktex 2.7 with all updated packages)


how do I embed all fonts using pdflatex on windows?

2008-05-14 Thread Nathan Miller
I've used Lyx for writing my thesis and it has been wonderful! Everything
works beautifully and I'm ready to submit my final pdf file. However, I just
realized I need to embed all the fonts in the pdf, and I haven't been able
to figure out how to do this.

I've found lots of information on using ps2pdf, but at this point with a 150
page document, I'm worried about the conversion from pdf -> ps -> pdf. Is
there a way to embed the fonts with pdflatex, which is what I'm already
using in Lyx?

I'm checking whether the fonts are embedded using Acrobat (properties) and
pdffonts. There are a scary number of fonts (~100) and most are not
embedded.

I found instructions about pdflatex here:
http://do.whileloop.org/soft/tricks/pdflatex-fonts.php
but it seemed like my pdftex config file is already set to
*pdftexDownloadBase14 true
*but I tried anyway and used the command
*initexmf --edit-config-file updmap*
to edit updmap.cfg and added the following lines:
*pdftexDownloadBase14 true
dvipsPreferOutline true
dvipsDownloadBase35 true
dvipdfmDownloadBase14 true*

But the added lines seem to have no affect on the embedded pdf fonts. Any
help is much appreciated.

(using Windows XP Pro with Lyx 1.5.5, Miktex 2.7 with all updated packages)