Function: texinfo-tex-print
texinfo-tex-print is an interactive and byte-compiled function defined
in texinfo.el.gz.
Signature
(texinfo-tex-print)
Documentation
Print .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-print-command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-tex-print ()
"Print `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
This runs the shell command defined by `tex-dvi-print-command'."
(interactive)
(require 'tex-mode)
(tex-print))