]> www.ginac.de Git - ginac.git/blobdiff - doc/tutorial/ginac.texi
- more typos fixed
[ginac.git] / doc / tutorial / ginac.texi
index d7699aff1ec91dcecbbd89cbe69ef75c7ed56fac..95dd05e49687146b1fe77199a1dac251ccebdac7 100644 (file)
@@ -37,6 +37,7 @@ notice identical to this one.
 @titlepage
 @title GiNaC @value{VERSION}
 @subtitle An open framework for symbolic computation within the C++ programming language
+@subtitle @value{UPDATED}
 @author The GiNaC Group:
 @author Christian Bauer, Alexander Frink, Richard B. Kreckel
 
@@ -492,16 +493,20 @@ $ ./configure --disable-shared --prefix=$(HOME)
 
 After proper configuration you should just build the whole
 library by typing
+
 @example
 $ make
 @end example
+
 at the command prompt and go for a cup of coffee.
 
 Just to make sure GiNaC works properly you may run a simple test
 suite by typing
+
 @example
 $ make check
 @end example
+
 This will compile some sample programs, run them and compare the output
 to reference output. Each of the checks should return a message @samp{passed}
 together with the CPU time used for that particular test.  If it does
@@ -517,6 +522,7 @@ this step is unlikely to return any errors.
 @section Installing GiNaC
 
 To install GiNaC on your system, simply type
+
 @example
 $ make install
 @end example
@@ -792,7 +798,7 @@ but for internal routines when no output is desired it is often
 enough.  We'll come across examples of such symbols later in this
 tutorial.
 
-This implies that the stings passed to symbols at construction
+This implies that the strings passed to symbols at construction
 time may not be used for comparing two of them.  It is perfectly
 legitimate to write @code{symbol x("x"),y("x");} but it is
 likely to lead into trouble.  Here, @code{x} and
@@ -1128,7 +1134,7 @@ int main()
     cout << "gamma(" << foo << ") -> " << gamma(foo) << endl;
     ex bar = foo.subs(y==1);
     cout << "gamma(" << bar << ") -> " << gamma(bar) << endl;
-    ex foobar= bar.subs(x==7);
+    ex foobar = bar.subs(x==7);
     cout << "gamma(" << foobar << ") -> " << gamma(foobar) << endl;
     // ...
 @}
@@ -1302,7 +1308,7 @@ The functions for polynomial greatest common divisor and least common
 multiple have the synopsis:
 
 @example
-#include <GiNaC/normal.h>
+#include <ginac/normal.h>
 ex gcd(const ex & a, const ex & b);
 ex lcm(const ex & a, const ex & b);
 @end example