【发布时间】:2017-03-26 11:42:20
【问题描述】:
有很多解决方案,例如Quite Imposing。我的想法,我们可以使用ghostscipt做类似的事情。说, - 将页面拆分为多个 ps 文件 - 使用 postscript 运行命令,将那些 ps 文件插入到寺庙中 - 将ps模板转换成pdf(再次通过ghostscript)
我的实验模板来了,
%!
/Times-Roman findfont 14 scalefont setfont
% Page 1
save
/showpage {} bind def
72 200 translate
(BBB001.ps) run
restore
72 680 moveto (This is a text on page 1) show
72 200 translate
72 100 moveto (this page 1) show
showpage
72 100 moveto
(this page 2) show
showpage
上面改成pdf后看不到BBB001.ps,我哪里错了?或者它不能完全工作!
[更新] 我终于搞定了,把 BBB001.ps 变成 BBB001.eps。
【问题讨论】: