File: install.tex

package info (click to toggle)
gap-radiroot 2.9-1
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 556 kB
  • sloc: makefile: 117; sh: 12
file content (74 lines) | stat: -rw-r--r-- 2,604 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%W  install.tex          Radiroot documentation           Andreas Distler
%%
%Y  2005
%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Chapter{Installation}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Getting and Installing this Package}

This package is available at

\begintt
https://gap-packages.github.io/radiroot/
\endtt

in form of a gzipped tar-archive. For installation instructions see
Chapter~"ref:Installing a GAP Package" in the {\GAP} reference manual. 
Normally you will unpack the archive in the `pkg' directory of your
{\GAP} version by typing:

\beginexample
    bash> tar xfz radiroot-2.9.tar.gz        # for the gzipped tar-archive
\endexample

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Loading and Testing the Package}

To use the {\Radiroot} package you have to request it explicitly. This  is
done by calling

\beginexample
gap> LoadPackage("radiroot");
-----------------------------------------------------------------------------
Loading  RadiRoot 2.9 (Roots of a Polynomial as Radicals)
by Andreas Distler (a.distler@tu-bs.de).
Homepage: https://gap-packages.github.io/radiroot/
-----------------------------------------------------------------------------
true
\endexample

The `LoadPackage' command is described  in  Section~"ref:LoadPackage"  in
the {\GAP} reference manual.

If you want to load the {\Radiroot} package by default, you  can  put  the
`LoadPackage' command  into  your  `gaprc'  file  (see  Section~"ref:The
gaprc file" in the {\GAP} reference manual).

Once the package is loaded, it is possible to check the correct
    installation by running the test suite of the package with the command

\beginexample
    gap> ReadPackage( "radiroot", "tst/testall.g" );
\endexample

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Additional Requirements}

To use {\Radiroot} the package {\Alnuth} in version 3.0 or higher
has to be loaded with its interface fully functional.

In the standard mode a dvi file is created to display the roots of a
polynomial. As default the package uses the command `latex' searched
for in your system programs to create the dvi file and the command
`xdvi' to start the dvi viewer. If you can not use this settings you
will have to change the function `RR_Display' in the file `Strings.gi'
in the subdirectory `lib' of the package.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%E