由买买提看人间百态

topics

全部话题 - 话题: dvips
首页 上页 1 2 3 下页 末页 (共3页)
T*********r
发帖数: 11175
1
did u convert it to ps first?
or directly pdflatex?
eps figures won't show up in pdflatex
u will need to do dvips then ps2pdf
w****a
发帖数: 186
2
gsview可以看eps文件。
如果你最终的目标是生成PDF文件,那么有好几种方式:
1)PDFTex: Tex -> PDF
2)dvipdfm(x): Tex -> DVI -> PDF
3)dvips+ps2pdf: Tex -> EPS -> PDF
每种都调用不同的程序,这些程序应该在你的Tex 系统(比如MikTex)中已经有了,不用
再下载。在TexnicCenter里面应该可以增加更多的方式吧。
a**e
发帖数: 5794
3
原始图如果是矢量图,存成eps插入,dvips -Ppdf,然后ps2pdf
原始图如果是点阵图,存成png插入,pdflatex
a**e
发帖数: 5794
4

矢量图可以随便缩放不失真
你得告诉dvips输出的ps要符合pdf标准,否则最后出来的pdf
可能页边距不对
m*******e
发帖数: 41
5
May I ask what is problem of this error message? There is no errors found in
the tex. I use Miktex and TexnicCenter. Thanks a lot.
T*********r
发帖数: 11175
6
so what's the mesg showed?
cannot find tex.pro?

in
s***t
发帖数: 195
7
来自主题: TeX版 - WinEdt, Latex, and Beamer
DO NOT use dvipdf. either use dvips+ps2pdf, or use pdflatex.

reason
MikTex?
distribuited
5/
N******n
发帖数: 1109
8
来自主题: TeX版 - WinEdt, Latex, and Beamer
That's true. I have to run dvips+ps2pdf nowadays. Seems dvipdf won't work
as expected.
s***t
发帖数: 195
9
2 ways: either use jpeg2ps to wrap jpegs with an eps header and use
latex+dvips, or use epstopdf to convert eps to pdf and use pdflatex
h*******a
发帖数: 41
10
来自主题: TeX版 - 请教!
Miktex2.5,Winedt5.4
Include eps 图片后,不仅yap里面看不了dvi,switch到dvips yap就死掉了。
不过可以在dvi->ps后看到图片,但是又有新问题:第一行完全顶着页顶了。
是不是Miktex2.5的问题?
A**********e
发帖数: 3102
11
来自主题: TeX版 - kdvi不能看到figure
你的图是啥 format? 在用包的时候选的什么参数? dvips?
T*******n
发帖数: 493
12
I ran LaTeX+dvips+ps2pdf on the sample.tex file that you
posted, without any modification, the the bibliography
show page 11, not page 1. You get page "1" on that
page if you run LaTeX on sample.tex? See my attached file.
If you get page "1" where the bibliography begins, could
you add \listfiles right above \begin{document}, run LaTeX on
it and post the list of files that LaTeX shows on the console
or writes near the end of the .log file?
A******y
发帖数: 14
13
原始文件中包含一些eps格式的gray scale images,用dvips生成ps文件时图像都是清
晰的。然后用ps2pdf生成pdf,图像就出现了blurring,请问有什么解决的办法。谢谢
T*******n
发帖数: 493
14
You're not giving enough information about your problem.
What document class and packages are you using?
Can you post a minimal example that shows the problem?
Keep in mind the the .dvi file usually doesn't know anything
about paper size, but the DVI viewer or dvips will assume
a paper size when they render the .dvi file.

landscape). The '
o*******e
发帖数: 186
15
Here is the simplified version:
\documentclass[titlepage,landscape]{slides}
\usepackage{amsmath}
\usepackage[dvips]{graphicx}
\usepackage{psfig}
\hfuzz5pt
\vfuzz5pt
\pagestyle{plain}
\begin{document}
\input{inc.tex}
\end{document}
Thank you for the help.
T*******n
发帖数: 493
16
How are you generating the PDF file? latex/dvips/ps2pdf, latex/dvipdf,
or pdflatex? What OS and what LaTeX distribution?
T*******n
发帖数: 493
17
You probably need to configure dvips, dvipdf, or pdflatex
to change the default behavior.
What O/S and TeXMF system are you using, and how
are you generating your PDFs?
p*****e
发帖数: 310
18
自问自答吧。高手作者以及给我回信了,这里是解决问题的办法:
"Input this into a small LaTeX file that contains \usepackage{pst-eps}.
Enclose the diagram between \begin{TeXtoEPS} ... \end{TeXtoEPS}. Run LaTeX
to
get a dvi file. Then use dvips -Ppdf -G0 -E file -o file.eps"
试了一下,正是我要的效果,希望能对碰到的人有所帮助
A**********e
发帖数: 3102
19
来自主题: TeX版 - dvi转pdf,为什么不见图片
have you installed ghostscrip and ghostview?
try this: type
dvips yourfile.dvi
can you get the yourfile.ps? can you open it?

file
information.
fix
default
A**********e
发帖数: 3102
20
来自主题: TeX版 - dvi转pdf,为什么不见图片
try
dvips yourfile.dvi
if you can get yourfile.ps, then try
ps2pdf yourfile.ps
A**********e
发帖数: 3102
21
来自主题: TeX版 - dvi转pdf,为什么不见图片
dvipdfm mimics the behaviors of dvips, then converts meta files to pdf files
.

,
longer
to
D*******a
发帖数: 3688
22
搞定了
要用dvips -t letter xxx.dvi
c**z
发帖数: 1014
23
来自主题: TeX版 - Conversion from PS to PDF
这个问题应该就是页面是A4引起,
可以改变一下dvips的设置,把letter写在a4前面,
查latex2e的帮助就行
q**x
发帖数: 1636
24
来自主题: TeX版 - Conversion from PS to PDF
whatever you do, after you get your .dvi file, do the following:
dvips -o -t letter -f *.dvi > *.ps
this gives you the right ps file for pdf. then use
ps2pdf *.ps
this gives you the final pdf file with the right format

is
T*********r
发帖数: 11175
25
来自主题: TeX版 - 做 slides 一问
try
dvips -t landscape
m********7
发帖数: 37
26
来自主题: TeX版 - 关于Latex插入图表之我见
Use dvips and latex, I never use pdflatex.
m********7
发帖数: 37
27
来自主题: TeX版 - 关于Latex插入图表之我见
Use dvips and latex, I never use pdflatex.
l**e
发帖数: 6
28
来自主题: TeX版 - 关于Latex插入图表之我见
你是不是用了特殊的sty file ?
试了一会,一般好像是不行:
下面这个文件,只有第一个图可以正确显示, 余下两个都不行.
Error Message:
gs: ERROR: /undefined in ÿØÿà
gs: Operand stack:
gs:
gs: Execution stack:
.......
gs: Current allocation mode is local
gs: Current file position is 5
\documentclass{article}
\usepackage{amssymb,amsmath}
\usepackage{graphicx}
\usepackage[dvips]{epsfig}
\begin{document}
\begin{figure}[ht]
\begin{center}
\psfig{file=angle-all.ps,height=3.0in,angle=0}
\end{center}
\end{figure}
\newpage
\begin{figure}[ht]
l**e
发帖数: 6
29
来自主题: TeX版 - 如何在table里面插入图?
试了一下,用psfig 可以
\documentclass{article}
\usepackage{amssymb,amsmath}
\usepackage[dvips]{epsfig}
\begin{document}
\begin{table}
\begin{tabular}{cc} \hline
XXXXX & ZZZZZZZZ \\
YYYYY & \psfig{file=image.ps,height=0.8in,angle=0} \\
\hline
\end{tabular}
\end{table}
\end{document}
p**v
发帖数: 853
30
用latex写东东,想要生成独立的正文和reference,
而且各自用自己的页号。试过\setcounter,可以实现
各自的页码,但是用dvips -P 来各自生成文件后
就又变了。请指点一二,谢谢了。
N**D
发帖数: 10322
31
latex
latex
dvips
N**D
发帖数: 10322
32
assuming your file is abc.tex
latex abc
bibtex abc
latex abc
latex abc
dvips -Ppdf -tletter -G0 %1
s***t
发帖数: 195
33
it depends on the hyperref settings. if you're using dvips,
hyperref by default doesn't break links. if you're using pdftex,
it does break links by default. but there's a setting you can
change to allow link breaking.
T*********r
发帖数: 11175
34
来自主题: TeX版 - 为什么texnicCenter 只认 jpg
pdflatex?
or latex then dvips
l*2
发帖数: 21
35
我在一个pdf论文里抓了图,把图打印成pdf文件,再另存为eps。这样嵌入到tex文件里
。在windows下面用yap看生成的dvi文件,显示到这种图的时候,yap会弹出一个问题:
The document cannot be rendered properly because the current render method
does not support PostScript specials. Temporarily switch to the Dvips render
method?
选yes以后,就可以显示这些图片了。但是在linux下面用texlive2007编译,再用xdvi
看,这些图就不能显示,只有一片空白。那些用matlab直接打印的eps图片都可以显示
。而且我在xdvi的选项已经选了"显示ps和bounding"。
请问各位高手,在xdvi里面怎么能显示这些图片?或者有什么其他的dvi viewer for
linux? 多谢!
f*******2
发帖数: 2
36
来自主题: TeX版 - 关于miktex的安装-新手
请高手看看我到底那步错了:
1。从www.miktex.org上download了miktex2.7,选择了basic安装,安装目录在D:
miktex/new folder
2。用notepad 输入hello world $3+3=6$ \bye save as test.tex
3.打开command pro. 到达test 的目录, 然后输入tex test.tex
输入 dvips test.dvi
4.打开dvi文件,出现hello world 3+3=6 everything is fine now
但是下面出现了问题
5. 用notepad写
\documentclass{article}
\begin{document}
hello world
\end{document}
6.重复上面的步骤进行编译的时候,总是出现这段话:
undefined control sequence.
1.1 \documentclass

?
是因为我没有装好miktex吗?还是我没有装一些宏包?装宏包是必须的么?
宏包改怎么装?
s***t
发帖数: 195
37
来自主题: TeX版 - 请教一个latex格式问题
most likely hyperref related and you're using latex->dvips
see #3547 and #3553

好)
行)
f**y
发帖数: 368
38
加了\usepackage{epstopdf}, 因为所有现成的图都是eps格式,但pdflatex后出来的
文件中图像质量差于latex->dvips->ps2pdf
请问怎样加强pflatex后的图像质量?没找到epstopdf包有什么参数啊~~~
A**********e
发帖数: 3102
39
【 以下文字转载自 Linux 讨论区 】
发信人: AuldLangSyne (Auld), 信区: Linux
标 题: Re: 图越过 bb 覆盖了别的图咋办? (转载)
发信站: BBS 未名空间站 (Wed Oct 31 20:12:45 2007), 转信
多谢!经你提醒,搞定了!
用 openoffice 打开 powpoint 文件,然后建新 openoffice 文件,把需要输出的
那页 slide copy 过去,然后 export 成 eps。在 latex 里面用 bb 选定区域。e
verything is perfect。世界安静了~~
无论是 latex,还是 dvi, dvips, dvipdf, ps2pdf, 全都没有任何问题。
ps
g******s
发帖数: 141
40
I can view view the figure using yap. However, a message is generated "The
document cannot be rendered properly because the current render method does
not support PostScript Specials. Temporarily switch to the Dvips render
method".
When I try to generate a pdf file, the message is "unknown graphics
extension: .eps".
Who knows the problem? Thanks a lot.
T*******n
发帖数: 493
41
来自主题: TeX版 - 怎么用latex做POSTER?
I load article.cls but set the paper size to 16 inches x 12 inches, and
\usepackage{multicol} to enable three columns across the page, and
just fill up this page. Then:
latex poster.tex
(get DVI file)
dvips -Ppdf poster.dvi
(get PS file for 16x12 inch with vector fonts)
ps2pdf poster.ps
(optional, 16x12 inch PDF poster for preview/proofing)
psresize -w48in -h36in -W16in -H12in poseter.ps poster-big.ps
(full-size poster in PS file)
ps2pdf14 -dDEVICEWIDTHPOINTS=3456 -dDEVICEHEIGHTPOINTS=2592 post
r****t
发帖数: 10904
42
来自主题: TeX版 - hyperref 折行有问题
。。。。刚才又试了一下,用 dvipdfmx 编译成 pdf 就行了... 那里能找到 dvipdf, dvipdfmx
这些 driver 的文档?我只知道
latex file.tex -> dvips file -> ps2pdf file.ps
其他变化的途径文档在哪儿能读到?什么时候该用什么 driver 才行?
b*****s
发帖数: 61
43
本人是个新手,有两个问题想问问各位大佬,请大家不吝赐教,谢谢!
1。 本人正在用学校的模板写毕业论文,可是转成DVI想看看劳动成果时发现目录表里
的每一行下面都有一个横线,所有的文献引用和图片引用下面也有黑线。转成pdf后发
现横线没了,但是都变成了一个浅蓝色的框子,打印出来却消失了。请问各位大佬这是
怎么一回事呢?是模板的问题还是我自己哪儿没整好?
2。 还有一个问题,比较罗嗦,不好意思,我抄了别人下面的一部分text,编译过不去
,说我“missing \begin{document}", 请问是什么原因呢?而我把pdftitle到
pdfkeywords四行删掉以后,倒是勉强能过去,但中间停下来告诉我“option clash
for package hyperref”,我回车就能通过了。是不是哪儿有冲突了呢?
\usepackage[dvips,ps2pdf,
pdftitle={abcde},
pdfauthor={abcde},
pdfsubject={abcde},
pdfke
G****A
发帖数: 4160
44
多谢,果然dvips路径不对。重新设置就好了。
对了,再问一下。我在一台新机器上刚刚装了MikTex + TeXniccenter. 拿来一个IEEE
的sample tex file, 编译后竟然提示15个错误。很多:"Undefined control sequence
!"
这是什么意思?他没提示缺少package阿!
t***s
发帖数: 4666
45
since (la)tex is a US software, it defaults to letter size. but there
isn't really paper size info in the .dvi file. but dvips is an European
software, so it defaults to A4. now your .ps file is wrong in terms of
paper size and margins. ps2pdf should preserve the paper size in the .ps
file.
i***g
发帖数: 551
46
use
dvips -t letter file.dvi
d****r
发帖数: 1017
47
接着问.
我又copy了几个.pdf文件到E:\Work\Tex\Beamer\texmf\tex\latex\beamer.
现在emacs不要我安装beamer了.能生成.dvi文件.而且好像没有错误.
但是.dvi显示不对.
经过dvips时能生成.ps文件,但是ps2pdf是有unrecoverable error, 生成的.pdf也不全.
如果直接用dvipdfm, 产生的.pdf更不对,有一大堆ignore.
那该怎么把由beamer产生的.dvi转化成.pdf呢?
h**********c
发帖数: 4120
48
来自主题: TeX版 - 请教天才一个很弱的问题
tex文件里有若干个png file, latex sometex.tex之后,
在dvi里面可以看见,
dvips sometex.dvi -o sometex.ps之后
在sometex.ps里却看不见了,
如之奈何?
a**e
发帖数: 5794
49
来自主题: TeX版 - 请教天才一个很弱的问题
标准的dvips不支持png
用dvipdfmx或pdflatex试试
g*********r
发帖数: 124
50
先把文档转换成 .ps 格式,比如用 dvips,然后
gswin32c -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/printer
-dCOMPatibilityLevel=1.4 -dMaxSubsetPct=100 -dSubsetFonts=true -
dEmbedAllFonts=true -sOutputFile=your_file.pdf your_file.ps

mu
首页 上页 1 2 3 下页 末页 (共3页)