up previous next

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.
    

Summary

temporarily override global aliases

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      = $cocoa/help
IO     = $cocoa/io
GB     = $cocoa/gb
HP     = $cocoa/hp
HL     = $cocoa/hilop
List   = $cocoa/list
Mat    = $cocoa/mat
Latex  = $cocoa/latex
LaTeX  = $cocoa/latex
Toric  = $cocoa/toric
Coclib = $cocoa/coclib
-------------------------------
Alias HP := $cocoa/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[txyz];
    Poincare(R);
   ---> Output suppressed <---
        
    

See Also