Tagged Questions
The dvi tag has no wiki summary.
3
votes
2answers
746 views
dvi generation: no bounding box
I wrote a research paper in latex and generated pdf using kile. It worked perfectly well. Now conference people are asking for dvi file also. But Kile's quick build process does not give a dvi file, ...
3
votes
7answers
1k views
1
vote
1answer
264 views
image not shown in dvi after latexing
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 ...
1
vote
1answer
811 views
dvi2rtf - who can convert DVI files to RTF files?
Consider a *NIX executable, dvi2rtf, whose contents are:
#!/bin/sh
TMPX=`mktemp /tmp/dvi2rtf.XXXXXX`
dvitty $1 $TMPX # CTAN
txt2rtf $TMPX $2 # CTAN, in rtfutils
If my head is working ...
1
vote
2answers
5k views
Included LaTeX figures do not show in dvi but do in pdf
I am trying to get LaTeX to include figures, but the eps files will not show up in the DVI. I tried various packages to no avail. The figures will show up fine if I compile to PDF, but not in the DVI ...
1
vote
6answers
2k views
Latex using eps images builds slowly
Working with a latex document with eps images as in the example below...
\documentclass[11pt]{paper}
\usepackage[dvips]{graphicx}
\usepackage{fullpage}
\usepackage{hyperref}
\usepackage{amsmath}
...