[BACK]Return to load.oxw CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-contrib / packages / doc / top

File: [local] / OpenXM / src / asir-contrib / packages / doc / top / load.oxw (download)

Revision 1.1, Wed May 18 05:48:45 2005 UTC (19 years, 1 month ago) by takayama
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9

Added a section on how to load asir/contrib.

@c $OpenXM: OpenXM/src/asir-contrib/packages/doc/top/load.oxw,v 1.1 2005/05/18 05:48:45 takayama Exp $
/*&C
@node Loading Asir/Contrib,,, Top
*/
/*&ja
@chapter Asir/Contrib $B$N%m!<%IJ}K!(B.

@file{OpenXM/rc/asirrc}
$B$r%m!<%I$9$k$3$H$K$h$j(B Asir/Contrib $B$N<g$J4X?t$,MxMQ2DG=$H$J$k(B.
OpenXM/Risa/Asir $B$G$O(B @code{ASIR_CONFIG} $B4D6-JQ?t$K$h$j(B
$B$3$N%U%!%$%k$r5/F0;~$KFI$_$3$s$G$$$k(B.
@file{names.rr} $B$,(B Asir/Contrib $B$N%H%C%W%l%Y%k$N%U%!%$%k$G$"$k(B.
$B$3$N%U%!%$%k$h$j$=$NB>$N%U%!%$%k$,FI$_9~$^$l$F$$$k(B.
$B0lIt$N%Q%C%1!<%8$O(B @file{names.rr} $B$+$i$OFI$_9~$^$l$J$$$N$G(B,
$BL@<(E*$KFI$_9~$`I,MW$,$"$k(B.


*/

/*&en

@chapter How to load Asir/Contrib

With loading @file{OpenXM/rc/asirrc}, we can use most functions
in Asir/Contrib.
The OpenXM/Risa/Asir reads this file, which is specified by
the @code{ASIR_CONFIG} environmental variable, when it starts.
The file @file{names.rr} is the top level file of the Asir/Contrib.
Most other files are loaded from @file{names.rr}.
Some packages are not loaded from @file{names.rr} and they must be
loaded individually.

*/

/*&C

A sample of @file{asirrc} to use Asir/Contrib.

@example
load("gr")$
load("primdec")$
load("katsura")$
load("bfct")$
load("names.rr")$
load("oxrfc103.rr")$
User_asirrc=which(getenv("HOME")+"/.asirrc")$
if (type(User_asirrc)!=0) {
   if (!ctrl("quiet_mode")) print("Loading ~/.asirrc")$
   load(User_asirrc)$
}else{ }$
end$
@end example

@page

*/