如何将多个eps文件同时转换为pdf文件?

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
头像
wdlang
帖子: 404
注册时间: 2009-09-08 13:20

如何将多个eps文件同时转换为pdf文件?

#1

帖子 wdlang » 2012-04-15 18:35

最好能够同时也将pdf文件链接起来构成一个pdf文件
i am working with ubuntu!

i am to be a technical guy!
aerofox
帖子: 1453
注册时间: 2008-05-24 8:30

Re: 如何将多个eps文件同时转换为pdf文件?

#2

帖子 aerofox » 2012-04-15 20:50

代码: 全选

for f in *.eps; do 
    epspdf "$f"
done
pdftk *.pdf cat output all.pdf
头像
reverland
帖子: 1317
注册时间: 2011-11-26 15:57
系统: windows xp
联系:

Re: 如何将多个eps文件同时转换为pdf文件?

#3

帖子 reverland » 2012-04-15 22:54

Latex
托在github上的jekyll博客
Always Look on the Bright Side of Life
头像
wdlang
帖子: 404
注册时间: 2009-09-08 13:20

Re: 如何将多个eps文件同时转换为pdf文件?

#4

帖子 wdlang » 2012-04-16 1:19

aerofox 写了:

代码: 全选

for f in *.eps; do 
    epspdf "$f"
done
pdftk *.pdf cat output all.pdf

/usr/bin/epspdf: 3: /usr/share/texmf-texlive/scripts/epspdf/epspdf.rb: Permission denied

这是什么原因?
i am working with ubuntu!

i am to be a technical guy!
头像
reverland
帖子: 1317
注册时间: 2011-11-26 15:57
系统: windows xp
联系:

Re: 如何将多个eps文件同时转换为pdf文件?

#5

帖子 reverland » 2012-04-16 7:35

唉?我的怎么是epstopdf....
托在github上的jekyll博客
Always Look on the Bright Side of Life
头像
liu滔
帖子: 7214
注册时间: 2010-10-09 23:01

Re: 如何将多个eps文件同时转换为pdf文件?

#6

帖子 liu滔 » 2012-04-16 12:51

reverland 写了:唉?我的怎么是epstopdf....
两个都有
头像
wdlang
帖子: 404
注册时间: 2009-09-08 13:20

Re: 如何将多个eps文件同时转换为pdf文件?

#7

帖子 wdlang » 2012-04-18 3:11

wdlang 写了:
aerofox 写了:

代码: 全选

for f in *.eps; do 
    epspdf "$f"
done
pdftk *.pdf cat output all.pdf

/usr/bin/epspdf: 3: /usr/share/texmf-texlive/scripts/epspdf/epspdf.rb: Permission denied

这是什么原因?
我把epspdf改成epstopdf后,就可以了

非常感谢了,还是要学点脚本文件
i am working with ubuntu!

i am to be a technical guy!
回复