avatar
C*S
1
Hi, I got a problem.
The conference asks authers to embed all fonts in the final pdf file. But when
I use MikTex or other Latex software to do:
latex => dvips => ps2pdf
the fonts Times-* Helvetica* were never embedded in the pdf. And after long
searching on the internet, I am convenienced that Adobe Distiller and dvips
will not embed these fonts because they are basic fonts that do not need to
be embedded.
However, the conference checking software would not let the pdf pass the check
if these fo
avatar
b*k
2
bold or not?
If bold, try to change fonts to regular.

when
check

【在 C*S 的大作中提到】
: Hi, I got a problem.
: The conference asks authers to embed all fonts in the final pdf file. But when
: I use MikTex or other Latex software to do:
: latex => dvips => ps2pdf
: the fonts Times-* Helvetica* were never embedded in the pdf. And after long
: searching on the internet, I am convenienced that Adobe Distiller and dvips
: will not embed these fonts because they are basic fonts that do not need to
: be embedded.
: However, the conference checking software would not let the pdf pass the check
: if these fo

avatar
C*S
3
regular Times fonts, for example, Times-Roman. In the Latex file, I used
\usagepackage{times}
The problem is that ps2pdf or distiller do not embed any times or helvetica
fonts if these fonts are NOT embedded in the ps file (by dvips or other things
).

【在 b*****k 的大作中提到】
: bold or not?
: If bold, try to change fonts to regular.
:
: when
: check

avatar
b*k
4
did you try pdflatex?

things

【在 C*S 的大作中提到】
: regular Times fonts, for example, Times-Roman. In the Latex file, I used
: \usagepackage{times}
: The problem is that ps2pdf or distiller do not embed any times or helvetica
: fonts if these fonts are NOT embedded in the ps file (by dvips or other things
: ).

avatar
C*S
5
Samething. It does not matter how you get the pdf.

【在 b*****k 的大作中提到】
: did you try pdflatex?
:
: things

avatar
s*t
6
these standard fonts are not embeded by default because they, or their
equivalents, are usually available on most systems and printers.
to change this, got to texmf/web2c/updmap.cfg and change these options to
"true"
dvipsDownloadBase35
pdftexDownloadBase14
dvipdfmDownloadBase14
and then open up a command window and run
updmap
you should be all set.z

when
check

【在 C*S 的大作中提到】
: Hi, I got a problem.
: The conference asks authers to embed all fonts in the final pdf file. But when
: I use MikTex or other Latex software to do:
: latex => dvips => ps2pdf
: the fonts Times-* Helvetica* were never embedded in the pdf. And after long
: searching on the internet, I am convenienced that Adobe Distiller and dvips
: will not embed these fonts because they are basic fonts that do not need to
: be embedded.
: However, the conference checking software would not let the pdf pass the check
: if these fo

avatar
C*S
7
Thanks you so much sunxt!!!! It worked very well!
But I have one more little problem.
I have a .eps file. It uses Helvetica fonts. Since I do not have any
control how to general the .eps figure, I cannot embed fonts in it.
As a result, the latex (MikTex) generated final pdf does not embed
Helvetica fonts. I am wondering if there is a way to embed fonts
appeared in the .eps files in the final pdf file. Also is there a way
to embed fonts in the eps, sy, I use xfig to draw a figure?
Thank you in ad

【在 s***t 的大作中提到】
: these standard fonts are not embeded by default because they, or their
: equivalents, are usually available on most systems and printers.
: to change this, got to texmf/web2c/updmap.cfg and change these options to
: "true"
: dvipsDownloadBase35
: pdftexDownloadBase14
: dvipdfmDownloadBase14
: and then open up a command window and run
: updmap
: you should be all set.z

avatar
l*t
8
In xfig, you can use TeX fonts for text labels.
For eps files you have no control, you could try to use psfrag
to replace the text to whatever you want.

【在 C*S 的大作中提到】
: Thanks you so much sunxt!!!! It worked very well!
: But I have one more little problem.
: I have a .eps file. It uses Helvetica fonts. Since I do not have any
: control how to general the .eps figure, I cannot embed fonts in it.
: As a result, the latex (MikTex) generated final pdf does not embed
: Helvetica fonts. I am wondering if there is a way to embed fonts
: appeared in the .eps files in the final pdf file. Also is there a way
: to embed fonts in the eps, sy, I use xfig to draw a figure?
: Thank you in ad

avatar
C*S
9
This helps. Than you.

【在 l******t 的大作中提到】
: In xfig, you can use TeX fonts for text labels.
: For eps files you have no control, you could try to use psfrag
: to replace the text to whatever you want.

avatar
s*t
10
you can try the following, no guarantee will work.
use epstopdf to convert .eps to .pdf, it seems to me it embeds the fonts.
then convert the .pdf back to .eps using, for example, "pdftops -eps" from
xpdf.

【在 C*S 的大作中提到】
: Thanks you so much sunxt!!!! It worked very well!
: But I have one more little problem.
: I have a .eps file. It uses Helvetica fonts. Since I do not have any
: control how to general the .eps figure, I cannot embed fonts in it.
: As a result, the latex (MikTex) generated final pdf does not embed
: Helvetica fonts. I am wondering if there is a way to embed fonts
: appeared in the .eps files in the final pdf file. Also is there a way
: to embed fonts in the eps, sy, I use xfig to draw a figure?
: Thank you in ad

avatar
C*S
11
Thank you, but...
It did not work. Look like need to let ps2pdf has to embed fonts
when it is doing the conversion.

【在 s***t 的大作中提到】
: you can try the following, no guarantee will work.
: use epstopdf to convert .eps to .pdf, it seems to me it embeds the fonts.
: then convert the .pdf back to .eps using, for example, "pdftops -eps" from
: xpdf.

avatar
s*t
12
try adding -dEmbedAllFonts=true option to ps2pdf.

【在 C*S 的大作中提到】
: Thank you, but...
: It did not work. Look like need to let ps2pdf has to embed fonts
: when it is doing the conversion.

avatar
C*S
13
It did not work. But thanks anyway. I converted the eps to
.jpg to avoid the problem. The bad side is that the file
size is very large.

【在 s***t 的大作中提到】
: try adding -dEmbedAllFonts=true option to ps2pdf.
avatar
s*t
14
in this case, .png is better for the drawings.

【在 C*S 的大作中提到】
: It did not work. But thanks anyway. I converted the eps to
: .jpg to avoid the problem. The bad side is that the file
: size is very large.

avatar
C*S
15
What is .png mainly used for? What are the good parts of it?
Honestly, I never used it.

【在 s***t 的大作中提到】
: in this case, .png is better for the drawings.
avatar
l*t
16
You might want this two as well:
-dMaxSubsetPct=100 -dSubsetFonts=true
still, working or not depends on ghostscript versions.

【在 C*S 的大作中提到】
: It did not work. But thanks anyway. I converted the eps to
: .jpg to avoid the problem. The bad side is that the file
: size is very large.

avatar
w*a
17
PNG is an alternative solution for GIF with more flexible options. Basically
it's lossless and still has a big compression ratio. Recommend it.

【在 C*S 的大作中提到】
: What is .png mainly used for? What are the good parts of it?
: Honestly, I never used it.

avatar
C*S
18
Really, lossless. It's really cool. I'm going to try it next time.

【在 w****a 的大作中提到】
: PNG is an alternative solution for GIF with more flexible options. Basically
: it's lossless and still has a big compression ratio. Recommend it.

avatar
C*S
19
Thanks!

【在 l******t 的大作中提到】
: You might want this two as well:
: -dMaxSubsetPct=100 -dSubsetFonts=true
: still, working or not depends on ghostscript versions.

avatar
i*d
20
I encountered same problem before. Font embedding is relatively simple as it
is a latex option. In higher version latex (I tried tetex-3.0 package),
pdflatex embeds all the fonts by default. However, font subsetting in .eps/.
pdf figures depends on the source applications that generates these figures. e
.g. matlab do only embed/not subset fonts when exporting eps/pdf figures, I
even can not find an option to change this setting.
One solution is to use third-party tools to subset fonts in eps/pdf

【在 C*S 的大作中提到】
: Thanks you so much sunxt!!!! It worked very well!
: But I have one more little problem.
: I have a .eps file. It uses Helvetica fonts. Since I do not have any
: control how to general the .eps figure, I cannot embed fonts in it.
: As a result, the latex (MikTex) generated final pdf does not embed
: Helvetica fonts. I am wondering if there is a way to embed fonts
: appeared in the .eps files in the final pdf file. Also is there a way
: to embed fonts in the eps, sy, I use xfig to draw a figure?
: Thank you in ad

avatar
C*S
21
Thanks. Going to try this next time.

e

【在 i******d 的大作中提到】
: I encountered same problem before. Font embedding is relatively simple as it
: is a latex option. In higher version latex (I tried tetex-3.0 package),
: pdflatex embeds all the fonts by default. However, font subsetting in .eps/.
: pdf figures depends on the source applications that generates these figures. e
: .g. matlab do only embed/not subset fonts when exporting eps/pdf figures, I
: even can not find an option to change this setting.
: One solution is to use third-party tools to subset fonts in eps/pdf

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。