由买买提看人间百态

topics

全部话题 - 话题: dvipdf
1 (共1页)
m******t
发帖数: 4077
1
ctex 2.4 (winedt 5.4 + miktex 2.4) 版本,以前都挺好的,好长时间不用了,不知
道怎么回事。现在如果用dvipdf生成pdf文件,正文好好的,但是标题/脚注/
Definition/Theorem/thanks之类的东西,用acrobat看着好好的,放大也没有问题,看
上去都是矢量字体。 但是打印出来就像是针打的一样,都是锯齿型的。换了打印机也
是一样。
如果用dvips + ps2pdf 则整篇都是像锯齿一样的。
那位给指点一下
装了ctex 2.7, 也没有用。而且winedt 5.5的soft return实在是太难受了,不会自动
整段调整了。
T*******n
发帖数: 493
2
Try \usepackage[dvipdf]{hyperref}.
(I'm not sure that this will work since I never use dvipdf/dvi2pdf/dvipdfm,
so this is just a suggestion.)

s*e
发帖数: 21
3
谢谢大家的回复和帮助
我最后是这么做的(其实和qiuxing的基本一样)
在.emacs加下面的代码
;; define C-F9 to dvipdf and display pdf file
(add-hook 'text-mode-hook '(lambda ()
(add-to-list 'TeX-command-list
(list "mydvipdf"
"mydvipdf.bat %s"
'TeX-run-discard nil nil))))
(global-set-key [(control f9)] 'do-mydvipdf)
; dvipdf the current file
(defun do-mydvipdf ()
"mydvipdf the current file."
(interactive)
(TeX-command "mydvipdf" 'TeX-master-file))
然后再定义一个mydvipdf.bat,内容是
call dvipdfm %1.dvi
start
T*********r
发帖数: 11175
4
来自主题: TeX版 - Figure 在pdf文件中中看不到
你怎么转pdf的?
pdflatex还是dvipdf?
按理说dvipdf应该可以
gw
发帖数: 2175
5
来自主题: Windows版 - latex => winxp+ winedt+yap 0.98 + gs8.11
为什么不能显示 latex 里的想欠的eps文件呀?
用dvipdf生成的PDF文件里也没有图.其他正常.
同样的latex文件在 linux 下 latex + dvipdf能显示图形.
logbook里有这样的信息:
....
phvr8r: checksum mismatch
32: no glyph!
Sending D:\Program Files\texmf\dvips\base\tex.pro...
d:\PROGRA~1\gs\gs8.11\bin\gswin32c.exe -I"d:\program
files\gs\gs8.11\lib;d:\program files\gs\fonts;d:\program
files\gs\gs8.11\Resource" -r75.000000x75.000000 -g876x619 -sDEVICE=bmp256 -q
-DBATCH -dNOPAUSE -dSAFER -sOutputFile=andle -start:
d:\PROGRA~1\gs\gs8.11\bin\gswin32c.exe -I"d:\progra
n***l
发帖数: 1468
6
来自主题: Linux版 - ubuntu菜鸟的问题
刚使用几天ubuntu,
请问:
1. ubuntu synaptic里面的删除软件(removal)是连硬盘里面的文件也删除, 还是就删
除一个ubuntu里面的资料?
2. 一般大家选择什么BT软件?
3. 如何才能播放rmvb?
4. 有没有写latex的集成界面(latex, dvipdf, pdflatex可以在界面上面按按钮完成,
不用再自己输入命令了), 并且兼容vim的命令(特别是那些输入的命令)?
E*V
发帖数: 17544
7
来自主题: Linux版 - Latex for linux
do you have the command `latex'
or dvips
dvipdf
E*V
发帖数: 17544
8
来自主题: Linux版 - Latex for linux
dump gedit
in vim
!latex aaa.tex
!latex aaa.tex
!dvipdf aaa.dvi
or you can write a makefile
in vim
!make
T*******n
发帖数: 493
9
The DVI file does not actually contain the EPS file, only a
link to it, so yap invokes either a built-in or an external
PS interpreter to disply the actual EPS file. The problem is
likely occurring when you run dvipdf or dvips-ps2pdf, but I
have never seen anything like this happen with teTeX on
Linux. I don't think it has anything to do with winedt.
Are you using MikTeX or some other (La)TeX distribution?
q*****g
发帖数: 1568
10
一个小问题,我用dvipdf生成pdf文件的时候总是有这样一个warning:
dvips: warning: no config file for `generic'
当然这个不是什么大问题,但是每次都看见这样一个warning还是很烦。
不知道如何让dvipds/dvips default成用letter 大小?
谢谢。
J*******r
发帖数: 379
11
来自主题: TeX版 - LaTex
偶一开始也没东西,不过后来忽然就出现了.
不知道怎么搞的.最烦的是没有PS2PDF,只有DVIPDF.
而且ACROBAT READER用里面的命令也打不开.
据网站上说下一步是要搞PDF的预览.但愿会好一些.
s***t
发帖数: 195
12
来自主题: TeX版 - WinEdt, Latex, and Beamer
DO NOT use dvipdf. either use dvips+ps2pdf, or use pdflatex.

reason
MikTex?
distribuited
5/
N******n
发帖数: 1109
13
来自主题: TeX版 - WinEdt, Latex, and Beamer
That's true. I have to run dvips+ps2pdf nowadays. Seems dvipdf won't work
as expected.
T*********r
发帖数: 11175
14
oh, then what kind of format did u use?
it seems you are using pdf image or jpeg image
dvi certainly won't show that
if you use eps, it will probably appear in dvi but not in dvipdf then
T*******n
发帖数: 493
15
How are you generating the PDF file? latex/dvips/ps2pdf, latex/dvipdf,
or pdflatex? What OS and what LaTeX distribution?
T*******n
发帖数: 493
16
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?
A**********e
发帖数: 3102
17
来自主题: TeX版 - dvi转pdf,为什么不见图片
sorry, typo. should be dvipdf.
i have no idea about winedt, as it is not free :)) and i have stopped using
it long time ago. but you should be possible to find the convertor winedt
uses from option/preference, and the actual commands.
the compiling seq should be: LaTeX -> dvi -> ps -> pdf

install
A**********e
发帖数: 3102
18
【 以下文字转载自 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
T*******n
发帖数: 493
19
DVI files only contain special directives regarding EPS and other files.
It is up to the dvi processor (xdvi, dvips, dvipdf, dvi-to-whatever) to
understand the directive and do something about it. For example, if the
DVI file contains a directive pointing to an EPS file, xdvi will invoke
ghostscript to display the figure, and dvips will embed the EPS into the
PS output; if you delete the EPS file, both xdvi and dvips will complain.
i*****f
发帖数: 578
20
来自主题: TeX版 - 查看dvi让我死机
i'm using ubuntu 7.04, tex live
this is strange. When i compile a certain project ( not really big, but some
eps pics, bibtex, etc). When I compile to the dvi, I xdvi it, then system
hangs.
When I open the directory contains it, since my ubuntu tries to get the
preview of dvi, pdf, ps..., it hangs again -_-
I also tried to convert dvi to pdf, with dvipdf it, system hangs -_-
I tried it in windows using miktex, no problem at all.
y**b
发帖数: 10166
21
来自主题: TeX版 - ps2pdf出错一问
我用的opensuse 10.3,用ps2pdf或dvipdf的时候出现下面错误。
以前用低版本的时候要改个什么参数才能通过,好像是stack太小,
处理不了大量的图像?
ERROR: /ioerror in --image--
Operand stack:
--nostringval--
Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nost
ringval-- 2 %stopped_push --nostringval-- --nostringval-- --no
stringval-- false 1 %stopped_push 1 3 %oparray_pop 1 3
%oparray_pop 1 3 %oparray_pop 1 3 %oparray_pop .runexec2
--nostringval-- --nostringval-- --nostr
S**I
发帖数: 15689
22
来自主题: TeX版 - 图片问题
dvipdf不能处理某些postscript代码
r****t
发帖数: 10904
23
来自主题: TeX版 - hyperref 折行有问题
。。。。刚才又试了一下,用 dvipdfmx 编译成 pdf 就行了... 那里能找到 dvipdf, dvipdfmx
这些 driver 的文档?我只知道
latex file.tex -> dvips file -> ps2pdf file.ps
其他变化的途径文档在哪儿能读到?什么时候该用什么 driver 才行?
s******e
发帖数: 285
24
来自主题: TeX版 - 急:ctex生成pdf大小的问题
dvipdf -t letter
p****n
发帖数: 49
25
来自主题: TeX版 - 急:ctex生成pdf大小的问题
谢谢.问题解决了. 在winedit编辑器里面option的excution mode可以改变paper size.
等效于dvipdf -t letter.
s*****g
发帖数: 5159
26
看上去你的打印机驱程缺少某种字体支持,重装驱程试试?
m******t
发帖数: 4077
27
好像也不是,换上pdflatex就好了。这个latex的setup挺tricky的。
d****z
发帖数: 264
28
来自主题: TeX版 - ctexlive的dvi pdf问题
今天装了ctexlive 2008,删除了以前的ctex,然后运行winedt,好像能编译,以前点
texify就能跳出dvi,现在就闪一下。即使点dvi preview也是闪一下就没了。点dvipdf
说can not run blabla,这是什么原因啊?
S***w
发帖数: 1014
29
来自主题: TeX版 - ctexlive的dvi pdf问题
换linux

dvipdf
T*********r
发帖数: 11175
30
来自主题: TeX版 - Latex under linux
gedit挺好的editor
不过我实在搞不懂你要在程序里compile干吗
你既然run linux,开个terminal
latex一下不就结了
latex xxx.tex
dvipdf xxx.dvi
or dvips -o xxx.ps xxx.dvi
如果没eps figure
直接pdflatex xxx.tex也行
k*********g
发帖数: 791
31
向大牛紧急求助:新版latex里面怎么弄hyperref???
以前藕用的miktex里面,处理internal链接很容易:
加这么一句到preamble里面就行了:\usepackage{hyperref};
现在不灵光了;
昨天藕狂google了,信息很少,仅有都试了,都不work;
by the way,藕的习惯总是按那个“latex”按钮,然后按那个“dvipdf”;
跟计算机有关的,最大的问题永远是:写程序的永远思辨不出一个道理:它的一个动作
,使用程序者反着揣摩的时候要考虑几百万种可能性;
m*********g
发帖数: 34
32
bibunits应该可以的。
不过编译时要注意
latex
bibtex
bibtex bu1 (bu2 ...)
latex
latex
dvipdf
k*********g
发帖数: 791
33
向大牛紧急求助:新版latex里面怎么弄hyperref???
以前藕用的miktex里面,处理internal链接很容易:
加这么一句到preamble里面就行了:\usepackage{hyperref};
现在不灵光了;
昨天藕狂google了,信息很少,仅有都试了,都不work;
by the way,藕的习惯总是按那个“latex”按钮,然后按那个“dvipdf”;
1 (共1页)