Subject: a number maxima session in one emacs frame
From: Valery Pipin
Date: Tue, 25 Nov 2008 11:53:46 +0800
Dear List,
Is there a possibility to start several maxima sesssions in one emacs frame?
Right now I have to start several emacs session to get the result.
best wishes
Valery
PS
In my .emacs I have
;;; add autoload of imaxima and maxima Emaxima.
(autoload 'imaxima "imaxima" "Frontend for maxima with Image support" t)
(autoload 'maxima-mode "maxima" "Maxima mode" t)
;(autoload 'imath-mode "imath" "Imath mode for math formula input" t)
(autoload 'maxima "maxima" "Maxima interaction" t)
(autoload 'emaxima-mode "emaxima" "EMaxima" t)
;; in your `.emacs' file. If you want any file ending in `.max' to begin
;; in `maxima-mode', for example, put the line
(add-hook 'emaxima-mode-hook 'emaxima-mark-file-as-emaxima)
(setq auto-mode-alist (cons '("\\.mac" . maxima-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.mc" . maxima-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.dem" . maxima-mode) auto-mode-alist))
(setq imaxima-scale-factor 1.3)
(setq imaxima-equation-color "blue")
;;; Make the line effective if you want to use maxima mode with imaxima.
(setq imaxima-use-maxima-mode-flag t)