Johann Spies wrote: > The Auc Tex defaults changed between Debian 1.3.1 and 2.0 (the > documentation does not reflect the changes, however). Examples: C-c C-c > to run Latex on the buffer changed to C-c C-p. When running Latex, emacs
This can be done quite easy. Check with C-h C-m which key bindings are used, which keymap is used and how the emacs functions are called that do the work. After that put something like the following in your .emacs file: (define-key tex-mode-map "\M-s" 'save-buffer) (define-key tex-mode-map "\C-cs" 'center-line) (define-key tex-mode-map "\C-cS" 'center-paragraph) This is only an example not related to your problem. \C- is Control, \M- is meta (Alt- or ESC+) > for include-files. It uses lpr -d to try an print a dvi-file (which does > not work) where previously dvips -f was used. Check with the auctex.el file and make additions. Regards, Joey -- Experience is a useful thing. Unfortunately it is only acquired just after one could have used it.