In-buffer viewer for DVI files

2007-08-21 Thread John Sturdy
I found a machine I was using didn't have xdvi, so I wrote some elisp to call dvipng and put the resulting pages together in an Emacs buffer; then I made it into a major mode, with next and previous commands, etc. Here it is: dvi-view.el -- View a DVI file in an Emacs buffer ;;; Time-stamp:

Re: In-buffer viewer for DVI files

2007-08-21 Thread Tassilo Horn
John Sturdy [EMAIL PROTECTED] writes: Hi John, I found a machine I was using didn't have xdvi, so I wrote some elisp to call dvipng and put the resulting pages together in an Emacs buffer; then I made it into a major mode, with next and previous commands, etc. that's really nice. Indeed I

Re: In-buffer viewer for DVI files

2007-08-21 Thread Xavier Maillard
John Sturdy [EMAIL PROTECTED] writes: I found a machine I was using didn't have xdvi, so I wrote some elisp to call dvipng and put the resulting pages together in an Emacs buffer; then I made it into a major mode, with next and previous commands, etc. Here it is: This is absolutely marvelous