Function: tex-buffer

tex-buffer is an interactive and byte-compiled function defined in tex-mode.el.gz.

Signature

(tex-buffer)

Documentation

Run TeX on current buffer. See M-x tex-region (tex-region) for more information.

Does not save the buffer, so it's useful for trying experimental versions. See M-x tex-file (tex-file) for an alternative.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defun tex-buffer ()
  "Run TeX on current buffer.  See \\[tex-region] for more information.
Does not save the buffer, so it's useful for trying experimental versions.
See \\[tex-file] for an alternative."
  (interactive)
  (tex-region (point-min) (point-max)))