> <\body> mode for > To edit code with , the mode can be used. It features automatic indentation and syntax highlighting. The necessary code is available in the file <\indent> in the source distribution and can be installed as follows: <\shell-code> cp mmx/ $HOME/.emacs.d The following should be added in the file in order to automatically activate the mode when loading a file with suffix or : <\shell-code> (setq load-path\ \ \ (append load-path (list (expand-file-name "~/.emacs.d")))) (setq auto-mode-alist\ \ \ (append auto-mode-alist '(("\\\\.mmx\\\\\|\\\\.amx" . mmx-mode)))) (autoload 'mmx-mode\ \ \ "mmx-mode.el" "Major mode for editing Mathemagix files" t) . If you don't have this file, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.>