Sub Articulo 52.1
;;If you do not want to use 'C-c C-c' or the pull-down menu "Command"
;(global-set-key [(control f5)] 'do-LaTeX) ; LaTeX the current file
;(global-set-key [(control f6)] 'do-DVIview) ; DVIview the current file
;(defun do-LaTeX ()
; "LaTeX the curent file."
; (interactive)
; (TeX-command "LaTeX" 'TeX-master-file))
;(defun do-DVIview ()
; "YAPview the curent file."
; (interactive)
; (TeX-command "View" 'TeX-master-file))
Insert those lines in your .emacs (or _emacs) file and uncomment them. FYI,
I'm using MiKTeX and NT Emacs. However, I beleive those should work on Unix
(or Linux) system with some minor revision.
But I found a problem with those. After I edited the .tex file from emacs, I
tried control-f5. It did not save the new buffer. It just compile the old
buffer again. If I use the pull-down menu, everything is OK.