乳胶处理后图像未在 DVI 中显示
我在乳胶中包含了几张 eps 格式的图像。使用latex命令后,dvi文件中缺少一些图像。不确定是否与图像大小有关,大多数丢失的图像大小约为 83kB,而显示的图像大小小于 40kB。从 dvi 转换为 ps 后,图像全部恢复。只是想知道导致 dvi 文件中图像丢失的原因是什么?
谢谢和问候!
I include several images of eps format in latex. After latex command, there are some of the images missing in the dvi file. Not sure if it is related to the image size, most of the images missing have size around 83kB while those shown up have a size less than 40kB. After conversion from dvi to ps, the images are all back. Just wonder what is the reason causing the images missing in dvi file?
Thanks and regards!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,dvi 查看器无法显示 eps 文件。只需使用
pdflatex
作为前端而不是latex
并查看生成的 pdf 文件。检查
man xdvi
揭示了这一点:因此,它似乎依赖于平台和/或实现。
As far as I can remember, a dvi viewer cannot show eps file. Just use
pdflatex
as the front-end instead oflatex
and view the resulting pdf file.Checking
man xdvi
reveals this:So it would appear to be platform- and/or implementation-dependent.