up previous next
Alias In

temporarily override global aliases
Syntax

Alias B_1,...,B_r In C EndAlias

where each B_i is a binding of the form: Identifier := $PackageName,
and C is a command sequence.


Description
This command allows one to use the aliases defined by the B_i's in the command sequence C without affecting the global aliases.

Example
Aliases(); -- the global aliases

H      = $help
IO     = $io
GB     = $gb
HP     = $hp
HL     = $hilop
List   = $list
Mat    = $mat
Latex  = $latex
LaTeX  = $latex
Toric  = $toric
Coclib = $coclib
-------------------------------
Alias HP := $help In HP.Man("Alias In") EndAlias;
============ Alias In =============
SYNTAX
Alias B_1,...,B_r In C EndAlias

where each B_i is a binding of the form: Identifier := $PackageName,
and C is a command sequence.
   ---> Output suppressed <---
HP.Examples();  -- the global alias HP is unaffected

    ----   STANDARD   ----
    Use R ::= Q[t,x,y,z];
    Poincare(R);
   ---> Output suppressed <---


See Also