Browse Source

* pp2tex and pp2tex.bat moved to main doc directory

florian 27 years ago
parent
commit
1cfdc11178

+ 1 - 1
docs/crtex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 1 - 1
docs/dosex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 3 - 3
docs/internal.tex

@@ -111,8 +111,8 @@ They are used to describe types, for example the type of a variable
 symbol is given by a definition and the result type
 of a expression is given as a definition. 
 They have nothing to do with the definition of a procedure.
-Definitions are implemented as a object (symtable.pas, tdef and
-it's descendents). There are a lot of different
+Definitions are implemented as a object (in file \file{symtable.pas},
+\var{tdef} and it's descendents). There are a lot of different
 definitions: for example to describe
 ordinal types, arrays, pointers, procedures
 
@@ -218,7 +218,7 @@ occurs.
 \subsection{The first pass}
 
 This is a part of the first pass for a pointer dereferencation
-(\var{p\^\ }), the type determination and some other stuff are left out
+(\var{p\^\ }), the type determination and some other stuff are left out.
 
 \begin{verbatim}
 procedure firstderef(var p : ptree);

+ 1 - 1
docs/linuxex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 1 - 1
docs/mouseex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 1 - 1
docs/optex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 5 - 0
docs/pp2tex

@@ -0,0 +1,5 @@
+#!/bin/sh
+# Simply paste a header and footer to the program.
+cat head.tex >  $1.tex
+cat $1.pp    >> $1.tex
+cat foot.tex >> $1.tex

+ 6 - 0
docs/pp2tex.bat

@@ -0,0 +1,6 @@
+@echo off
+rem msdos batch file
+rem Simply paste a header and footer to the program.
+type head.tex >  %1.tex
+type %1.pp    >> %1.tex
+type foot.tex >> %1.tex

+ 1 - 1
docs/printex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 1 - 1
docs/sockex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex

+ 1 - 1
docs/stringex/Makefile

@@ -15,7 +15,7 @@ PP=ppc386
 PPOPTS=
 
 # Script to convert the programs to LaTeX examples which can be included.
-PP2TEX=pp2tex
+PP2TEX=../pp2tex
 
 # Script to collect all examples in 1 file.
 MAKETEX=make1tex