



Generalities about the toolbars When there is a version for Windows executable in a command window, there are also two other buttons, in general, one to launch Emacs ( EMACS/ast ), the other to launch the program in a shell of Emacs (for ex. Epari to launch the program Pari, cf. Fig. 8.3). The name of the button is constituted of the name of the program in lower-case letters, preceded by the letter E (for Emacs), possibly complemented by the version number (for ex. Emaxima5.5 and Emaxima5.9 for the versions 5.5 and 5.9.0 of Maxima, cf. sec. 7.9).
There may also be one or several buttons corresponding to a configuration file (for ex. userinit.coc for the CoCoA program, cf. Fig. 7.3). To have information about their exact significance, refer to the corresponding section in one of the chapters 7 to 9.
When an user's manual is available, the group Doc includes a button Manuel . When a tutoriel is available, the group includes a button Tutoriel .
| Operation | Example | Maxima command |
| Addition | 1 + 2 | 1+2; |
| Multiplication | 2 × 3 | 2*3; |
| Exponentiation | 210 | 2^10; |
| Addition of fractions | + | 1/3+3/4; |
| Factorial | 100! | 100!; |
The sixth button, Quitter , permits to quit normally the program (once one entered into a program, it is important to know how to leave it normally, without having to kill the process).
When moving the the cursor over a button, the message displayed on the strip (or in the bubble of info, if the toolbar is active) indicates the command to type. For example, when moving the cursor over the button 100 ! of the toolbar of Maxima, the message is << 100!; (calculer factorielle 100 dans Maxima)>> (calculate factorial 100 in Maxima). When moving it over the button 100 ! of the toolbar of CoCoA, the message is << Fact(100); ( calculer factorielle 100 dans CoCoA)>> (calculate factorial 100 in CoCoA).
Most these buttons are usable in a shell of Emacs, under Windows 9x or
Windows NTx. We saw it with Maxima in the section 4.1. A lot of these buttons
are also usable in a command window of Windows NTx (but not of Windows 9x)
after having selected Rosetta as title of the destination window, in the dialog
box Options of the assistant (cf. Manuel of assistant AsTeX). To check
it, make the modification above (i.e. click on the assistant's button
, then on the element Rosetta in the pull
down list Titre de la fenętre (Title of the window) and finally on the button
Confirmer), launch Macaulay in a command window with the help of
the button MACAULAY , click then on the buttons 1+2 , 2*3
etc.
| Operation | Example | Maxima command |
| Expansion of an algebraic expression | (a + b)2 | expand((a+b)^2); |
| Factorisation | Factorise 1 + 2x + x2 | factor(1+2*x+x^2); |
| Derivation | sin(x) | diff(sin(x),x); |
| Integration |
sin(x)dx | integrate(sin(x),x); |
The document rosetta.tex (cf. sec 4.10) can suggest some more common
tests.