Function: texinfo-tex-view

texinfo-tex-view is an interactive and byte-compiled function defined in texinfo.el.gz.

Signature

(texinfo-tex-view)

Documentation

View .dvi file made by M-x texinfo-tex-region (texinfo-tex-region) or M-x texinfo-tex-buffer (texinfo-tex-buffer).

This runs the shell command defined by tex-dvi-view-command.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-tex-view ()
  "View `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
This runs the shell command defined by `tex-dvi-view-command'."
  (interactive)
  (require 'tex-mode)
  (tex-view))