s*****g 发帖数: 5159 | 1 use latex -> dvi2ps -> ps2pdf
insteady of directly
pdftexify
题。 |
|
|
m****g 发帖数: 80 | 3 pdflatex 是默认方式,现在的主流。
同。 |
|
x****g 发帖数: 109 | 4 journal 要求在pdf里embed all fonts. 我的eps图里面有一些text,这些怎么也没法
embed.
我的eps图是用matlab生成的,text是helvetica字体,
pdf就是先用latex 生成dvi,然后dvips, ps2pdf
有没有有过同样经历的?
谢谢大家 |
|
n******x 发帖数: 149 | 5 在写论文,用的是WinEdt编译的latex,没有插图前所有的都正常,编译的时候就是运
行下latex,然后是dvi2pdf
插的是eps图形,编译的时候是运行下latex,然后是dvips,到这里灭有任何问题,我还
打开了ps文件看了看,然后运行ps2pdf,显示“The system cannot find the file
specified”
,我把图就直接放在和tex文件同一文件夹里,用图的时候直接就是文件名,不知自己
错在哪里,这种问题是软件问题吗?我google了很久都不知道到底什么问题,我知道这
里高手多,特来求教下 |
|
c*****t 发帖数: 1879 | 6 print to ps file. Then use GNU ps2pdf. |
|
m*******m 发帖数: 182 | 7 No use of acrobat please. I always get portrait result with
ps2pdf.
I guess I need some gs option in there. I tried -dORIENT,
but no help.
Any idea how to do it? BTW, PS file is landscape. |
|
|
|
d***j 发帖数: 25 | 10 it is ps2pdf mentioned in lasrt msg
But U should download that set of tools from gnu.org |
|
t*s 发帖数: 10 | 11
Is there DOS version ps2pdf? |
|
D****g 发帖数: 2860 | 12 print to a ps file and use ps2pdf
or, install pdf writer which comes with distiller. |
|
m**h 发帖数: 207 | 13 there are set of ps manipulate tools:
psnup, psbook, pstops, psresize, psmerge, ps2ps, ps2pdf, ps2ascii,
ps2epsi, psdraft, html2ps, pdf2ps.
for your purpose its psnup |
|
a****y 发帖数: 1035 | 14 find . -name '*.ps' -exec ps2pdf {} \; |
|
d**m 发帖数: 72 | 15
Try print to a prn file with a Postscript Printer Driver(any brand),
then use ps2pdf (rename prn to ps file) |
|
n*****n 发帖数: 97 | 16 if you have access to linux or cygwin, you can use adobe's free
ps driver to print anything to .ps, then ps2pdf to pdf. |
|
d**********e 发帖数: 703 | 17 比如,把一个目录下的*.ps 变成 *.pdf, 文件名可以不变
谢谢 |
|
|
l*******G 发帖数: 1191 | 19 #!/bin/bash
for file in *.ps
do
ls -l $file
newfile=${file}.pdf
convert $file $newfile
ls -al $newfile
done |
|
i*******e 发帖数: 349 | 20 我在latex环境下用jpicedt来画简单的平面示意图,这个免费软件的界面用鼠标操作类
似画板,基本是所见既所得的,除了latex的代码仍然显示为原始代码,比如$\beta$。
画完之后图形可以直接存为tex文件,插入到latex或者scientific workplace里面。
compile成pdf的时候要经过两步,首先用tex2ps,然后再用ps2pdf。如果你安装有
adobe acrobat第二步可以通过acrobat来处理第一步生成的ps文件得到pdf。 |
|
D*******a 发帖数: 3688 | 21 re
我自己用的build.bat: 其中待编译的文档就是mypaper.tex
set texfile=mypaper
latex %texfile%
bibtex %texfile%
latex %texfile%
latex %texfile%
rem start yap -1 %texfile%
dvips %texfile%
ps2pdf %texfile%.ps
del %texfile%.ps
del %texfile%.aux
del %texfile%.bbl
del %texfile%.blg
del %texfile%.log
del %texfile%.aaa
rem start C:\CTeX\Ghostgum\gsview\gsview32.exe %texfile%.pdf
start "C:\Program Files\Adobe\Acrobat 7.0\Acrobat\Acrobat.exe" %texfile%.pdf
set texfile= |
|
D*******a 发帖数: 3688 | 22 re
我自己用的build.bat: 其中待编译的文档就是mypaper.tex
set texfile=mypaper
latex %texfile%
bibtex %texfile%
latex %texfile%
latex %texfile%
rem start yap -1 %texfile%
dvips %texfile%
ps2pdf %texfile%.ps
del %texfile%.ps
del %texfile%.aux
del %texfile%.bbl
del %texfile%.blg
del %texfile%.log
del %texfile%.aaa
rem start C:\CTeX\Ghostgum\gsview\gsview32.exe %texfile%.pdf
start "C:\Program Files\Adobe\Acrobat 7.0\Acrobat\Acrobat.exe" %texfile%.pdf
set texfile= |
|
|
|
d****i 发帖数: 4809 | 25 write a script something like this:
for file in $(ls ./*.ps)
do
ps2pdf $file
done |
|
h*******y 发帖数: 896 | 26 多谢大家的回复,另外我找到了个很方便的方法:
ls *.ps | xargs -n1 ps2pdf |
|
j*****5 发帖数: 235 | 27 可以用除eps格式外的图吧,只要你自己电脑上能编译通过就应该可以;你把所有.bbl
里的内容复制,代替原来bibliography;编译的时候不能再用bibtex,给你我的编译命
令参考(DOS):
set filename=vb-struc
latex %filename%
latex %filename%
dvips -Ppdf %filename%
ps2pdf -dPDFSETTINGS#/prepress %filename%.ps %filename%.pdf |
|
f**n 发帖数: 401 | 28 ps2pdf.com,keke. Seems they provide online conversion
Actually if you install Miktex+winedt, u will see the functions of
dvi->ps, dvi->pdf, ps->pdf |
|