diff options
Diffstat (limited to 'systems/amiga/tpp/TPP410EN')
-rw-r--r-- | systems/amiga/tpp/TPP410EN/Disk.info | bin | 0 -> 1432 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/History | 51 | ||||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/History.info | bin | 0 -> 842 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/Install_E | 336 | ||||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/Install_E.info | bin | 0 -> 523 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/ReadMe | 66 | ||||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/ReadMe.info | bin | 0 -> 842 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/TPPEnglish.lha | bin | 0 -> 256308 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/TPPGlobal.lha | bin | 0 -> 253594 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/c/MuchMore | bin | 0 -> 16380 bytes | |||
-rw-r--r-- | systems/amiga/tpp/TPP410EN/c/lha | bin | 0 -> 52132 bytes |
11 files changed, 453 insertions, 0 deletions
diff --git a/systems/amiga/tpp/TPP410EN/Disk.info b/systems/amiga/tpp/TPP410EN/Disk.info Binary files differnew file mode 100644 index 0000000000..1c1027d9c6 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/Disk.info diff --git a/systems/amiga/tpp/TPP410EN/History b/systems/amiga/tpp/TPP410EN/History new file mode 100644 index 0000000000..f6580c194d --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/History @@ -0,0 +1,51 @@ +History + +Deutsch: + +4.10 (17.01.93) +· Volle Unterstützung von LaTeX durch TPP. + Zwei neue Umgebungen LBuch und LArtikel. +· Automatische Erzeugung eines sortierten Index mittels MakeIndex. +· Ausdruck über PRT: ist wieder möglich. TeX ist hierfür nicht nötig. +· Selbstdefinierbare Schlüsselwörter +· Neue Schalter im Drucken-Fenster: Async, Datum. +· HOffset und VOffset werden mit jeder '.tpp'-Datei abgespeichert. +· Der Befehl 'TeX' kann jetzt in Tabellen-Umgebungen benutzt werden. +· '.tex'-Dateien werden nur noch von TPP gelöscht, wenn sie vorher von + TPP erzeugt wurden und beim Compilieren ein Fehler auftrat. +· Einige Benutzer hatten bemängelt, daß der A2024-10Hz-Modus mit TPP nicht + funktionieren würde. Unter OS3.0 ohne Änderung des Sourcecodes + funktionierte es. Es befand sich vermutlich ein Fehler im OS2.0x-A2024- + Gerätetreiber, den TPP konsequent ausgenutzt hat. +· Viele kleine Bugfixes. + +4.00 (22.06.92) +Erstmalige Unterstützung von TeX durch TPP. + +1.00 - 3.xx 1988-1992 +verjährt + +English: + +4.10 (17.01.93) +· LaTeX is now fully supported by TPP. + Two new environments LBook and LArticle. +· Automatic generation of a sorted index using MakeIndex. +· Printing via PRT: is possible again. You do not need TeX for this. +· User defined keywords. +· New switches in the print-requenster: Async, Date. +· HOffset and VOffset are saved with all '.tpp'-files. +· The command 'TeX' may now be used within Table-environments. +· '.tex'-files are only deleted by TPP, if they have been created by TPP and + if an error occurred during compilation. + Some user complained about the malfunction of the A2024-10Hz-mode when used + as TPP's screenmode. But it works under OS3.0 without any change to the + sourcecode. Probably, there was a bug in the OS2.0x-A2024-device-driver + which caused this malfunction. +· Numerous little bugfixes. + +4.00 (22.06.92) +First support of TeX by TPP. + +1.00 - 3.xx 1988-1992 +beyond written history diff --git a/systems/amiga/tpp/TPP410EN/History.info b/systems/amiga/tpp/TPP410EN/History.info Binary files differnew file mode 100644 index 0000000000..6254193084 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/History.info diff --git a/systems/amiga/tpp/TPP410EN/Install_E b/systems/amiga/tpp/TPP410EN/Install_E new file mode 100644 index 0000000000..98fcd9f3ed --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/Install_E @@ -0,0 +1,336 @@ +; $VER: Installation TPP V4.10E (17.01.93) + +.BRA { +.KET } + +; default root directory + +Set DefaultDir "work:tpp" + +; set some internal flags +Set ARexxIsInstalled Yes +Set PaxTeXIsInstalled Yes +Set MakeIndexIsInstalled Yes +Set Update No +Set LHAbin "c/LHA -q -m -a x" +Set LangArc TPPEnglish.lha +Set GlobArc TPPGlobal.lha + +Lab Start + +; get the root directory of `TeXt Plus Professional' + +Echo "TeXt Plus Professional V4.10*n" + +Echo "If this is an update from 4.00 to 4.10," +Echo "*.Config and *.parse files are not" +Echo "overwritten.*n" + +Echo "Please, enter a name for the TeXt" +Echo "Plus Professional root-directory." +Echo "Directory (<Return> = $DefaultDir) ? " NoLine + +; unset previous value + +UnSet Directory + +; get target directory + +Set >NIL: Directory ? + +; If only <Return> has been pressed, use <DefaultDir> + +If "$Directory" EQ "*$Directory" + Set Directory $DefaultDir +EndIf + +; remember the original path + +Set OrigDir $Directory + +; check wether a '/' is to be appended to the directory name + +FailAt 21 + +Assign >NIL: ${Directory} Exists + +If FAIL + FailAt 10 + + ; directory already exists + + If NOT EXISTS $Directory + FailAt 21 + + ; okay, try to make the directory + + MakeDir "$Directory" + + ; Das war nichts ... + + If FAIL + Echo "*NUnable to make $Directory" + + FailAt 10 + + ; back where we started + + Skip Back Start + EndIf + EndIf + + ; append a '/' to the directory-name + + Set Temp "$Directory/" + + Set Directory $Temp + + UnSet Temp +EndIf + +; Fist all english programs are installed + +; unpack main binaries + +$LHAbin $LangArc bin/TeXtPlusProfessional(.info|%) "${Directory}" + +; unpack documentation + +$LHAbin $LangArc doc/#? "${Directory}" + +Set DocDefaultDir "S:" + +Lab DocStart + +; Where to place 'TPP.guide'? + +Echo "*NPlease, enter the directory-name, where" +Echo "the HyperText-documentation is to be installed to." +Echo "Directory (<Return> = $DocDefaultDir) ? " NoLine + +; unset previously set value + +UnSet DocDirectory + +; get target directory + +Set >NIL: DocDirectory ? + +; if only <Return> has been pressed, use <DocDefaultDir> + +If "$DocDirectory" EQ "*$DocDirectory" + Set DocDirectory $DocDefaultDir +EndIf + +; check wether a '/' is to be appended to the directory name + +FailAt 21 + +Assign >NIL: ${DocDirectory} Exists + +If FAIL + FailAt 10 + + ; directory already exists? + + If NOT EXISTS $DocDirectory + FailAt 21 + + ; okay, try to make a directory + + MakeDir "$DocDirectory" + + ; failed + + If FAIL + Echo "*NUnable to make $DocDirectory" + + FailAt 10 + + ; back where be started + + Skip Back DocStart + EndIf + EndIf +EndIf + +; copy hypertext documentation +Copy ${Directory}doc/TPP.guide(.info|%) $DocDirectory Quiet Clone +; and delete +Delete >NIL: ${Directory}doc/TPP.guide(.info|%) + +; copy handler +$LHAbin $LangArc l/TeXtPlus-Handler L: + +; install configuration files +; save old configration files +If $Update EQ Yes + If Exists ${Directory}config + Rename >NIL: ${Directory}config ${Directory}config.old + Endif +Endif + +; install +$LHAbin $LangArc config/#? ${Directory} + +; ------------------------------------------------------------ + +; install all global files + +; save old parse files +If $Update EQ Yes + If Exists ${Directory}parse + Rename >NIL: ${Directory}parse ${Directory}parse.old + Endif +Endif + +; decrunch everything +$LHAbin $GlobArc #? ${Directory} + +; copy the readme file +Copy ReadMe(.info|%) ${Directory}doc Quiet Clone + +; copy the history file +Copy History(.info|%) ${Directory}doc Quiet Clone + +; Copy Nico François' powerpacker.library (35.344) and +; reqtools.library (38.961) +; They are only installed if no newer version is +; already installed + +FailAt 21 + +Version >NIL: reqtools.library 38 961 +If Warn + Copy ${Directory}libs/reqtools.library libs: Quiet Clone +endif + +Version >NIL: powerpacker.library 35 344 +If Warn + Copy ${Directory}libs/powerpacker.library libs: Quiet Clone +endif + +; and clean up +Delete >NIL: ${Directory}libs All + +; is there a 'rexx:'-directory + +If NOT EXISTS REXX: + + ; unfortunately not + + Echo "*NThere is no REXX:-directory!" + Echo "The ARexx-macros are not going to be installed." + Echo "If you nevertheless want to install them, you" + Echo "have to invoke this script for a second time," + Echo "AFTER you have installed ARexx!" + Echo "Working with TPP without ARexx is not sensible!" + + Set ARexxIsInstalled No + +EndIf + +; not everybody gets macros ... + +If NOT $ARexxIsInstalled EQ No + + ; copy the arexx macros + Copy ${Directory}rexx/tpl rexx:tpl All Quiet Clone + Copy ${Directory}rexx/#?.tpl rexx: All Quiet Clone + Copy ${Directory}rexx/#?.sd rexx: All Quiet Clone + + ; and clean up + Delete >NIL: ${Directory}rexx All + +EndIf + +; Is PaxTeX installed? + +IF NOT EXISTS TeX:macros + + ; unfortunately not + + Echo "*NThere is no directory 'TeX:macros'!" + Echo "The TeX-macros are not going to be installed." + Echo "If you nevertheless want to install them, you" + Echo "have to invoke this script for a second time," + Echo "AFTER you have installed PasTeX!" + Echo "You cannot compile or print documents without" + Echo "the TeX-macros!" + + Set PasTeXIsInstalled No + +EndIf + +; Without TeX we are lost + +If NOT $PasTeXIsInstalled EQ No + + ; copy the tex-macros + Copy ${Directory}tex/macros TeX:macros All Quiet Clone + + ; and clean up + Delete >NIL: ${Directory}tex/macros All + +EndIf + +; Can MakeIndex be installed? + +IF NOT EXISTS TeX:bin + + ; unfortunately not + + Echo "*NThere is no directory 'TeX:bin'!" + Echo "MakeIndex is not installed." + Echo "If you nevertheless want to install it, you" + Echo "have to invoke this script for a second time," + Echo "AFTER you have installed PasTeX!" + Echo "You create a sorted index without MakeIndex!*n" + + Set MakeIndexIsInstalled No + +EndIf + +; lost again? + +If NOT $MakeIndexIsInstalled EQ No + + ; copy MakeIndex + Copy ${Directory}tex/bin/#? TeX:bin All Quiet Clone + + ; and clean up + Delete >NIL: ${Directory}tex/bin All + +EndIf + +; this is the end of the script as I know it ... + +Echo "*NTeXt Plus Professional has been installed." +Echo "You only have to add the following line" +Echo "to your S:Startup-Sequence or S:User-Startup:" + +Echo "*NAssign TPP: $OrigDir" + +; bitch a bit +IF $ARexxIsInstalled EQ No + +Echo "*NDo not forget to install the ARexx macros!" + +EndIf + +IF $PasTeXIsInstalled EQ No + +Echo "*NDo not forget to install the PasTeX macros!" + +EndIf + +IF $MakeIndexIsInstalled EQ No + +Echo "*NDo not forget to install MakeIndex!" + +EndIf + +; execute the assign for prophylactical reasons +Assign >NIL: TPP: "$OrigDir" + +Echo "*NEnjoy TeXt Plus Professional!" diff --git a/systems/amiga/tpp/TPP410EN/Install_E.info b/systems/amiga/tpp/TPP410EN/Install_E.info Binary files differnew file mode 100644 index 0000000000..64c92bd160 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/Install_E.info diff --git a/systems/amiga/tpp/TPP410EN/ReadMe b/systems/amiga/tpp/TPP410EN/ReadMe new file mode 100644 index 0000000000..af87bcac47 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/ReadMe @@ -0,0 +1,66 @@ +TeXt Plus Professional + +Hello user! + + In order to install TPP you only have to double-click the 'Install'-icon. +Due to the fact that working with TPP and much more with TeX is not sensible +without an harddisk, a script to install TPP on disks was not provided. +Before you start to install TPP, make sure you already have installed ARexx +and PasTeX, i. e. the directories 'REXX:' and 'TeX' exist. + +If this is an update from 4.00 to 4.10, you can use the install script, too. +'*.Config' and '*.parse' are not overwritten. The format of the '*.Config'-files +has changed. So, please, use the new ones and modify them instead of the old ones, +if you want to make any changes to the configuration. Anyway, old configuration-files +still can be read. + + Owing to fit on the disk TPP has been packed. Please, +reassure yourself, that you have at least 1.5 MB harddisk space. + +The hard- and software requirements for TPP in cooperation with PasTeX are: + +· Amiga OS 2.04 or higher +· at least 2 MB RAM +· at least 10 MB harddisk space +· PasTeX 1.3 or higher (incl. the macro package NICETeX) +· LaTeX (25th March 1992) (All needed files are part of this distribution). + + I decided not to inform all registered users on the release of this +version. Instead of this all users already registered for 4.00 can get a free +update by sending me either a disk and a self addressed stamped envelope or +DM 5/$5/£3 in cash. Refer to the docs on how to update from 2.xx/3.xx to +4.10. + + If you want to get informed about updates, send me your e-mail address. +If you do not have one, you have to consult Amiga magazines in order to get +informed about the contents of the latest Fish-disks. + +Read the history file to find out what is new since 4.00. + +Enjoy TeXt Plus Professional! + + Martin Steppler + +---------------------------------------------------------------------------- +PasTeX ist © by Georg Hessmann +You can order PasTeX from: + +Karl Skibinski +Steinbrunn 9 +8399 Dommelstadl ++49-(0)8507-1858 + +or via ftp: + +ftp.uni-passau.de /pub/amiga/tex/PasTeX13 +---------------------------------------------------------------------------- +LHA is © by Stefan Boberg +The registered version of LHA can be ordered from: + +Stefan Boberg +Rydsvägen 242 A:25 +S-58251 Linköping +Sweden +---------------------------------------------------------------------------- +ARexx is © by William Hawes +and is part of Amiga OS 2.xx diff --git a/systems/amiga/tpp/TPP410EN/ReadMe.info b/systems/amiga/tpp/TPP410EN/ReadMe.info Binary files differnew file mode 100644 index 0000000000..7c38128b3f --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/ReadMe.info diff --git a/systems/amiga/tpp/TPP410EN/TPPEnglish.lha b/systems/amiga/tpp/TPP410EN/TPPEnglish.lha Binary files differnew file mode 100644 index 0000000000..ae5d4bc72c --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/TPPEnglish.lha diff --git a/systems/amiga/tpp/TPP410EN/TPPGlobal.lha b/systems/amiga/tpp/TPP410EN/TPPGlobal.lha Binary files differnew file mode 100644 index 0000000000..fde3aeb593 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/TPPGlobal.lha diff --git a/systems/amiga/tpp/TPP410EN/c/MuchMore b/systems/amiga/tpp/TPP410EN/c/MuchMore Binary files differnew file mode 100644 index 0000000000..20a1148722 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/c/MuchMore diff --git a/systems/amiga/tpp/TPP410EN/c/lha b/systems/amiga/tpp/TPP410EN/c/lha Binary files differnew file mode 100644 index 0000000000..fafff63880 --- /dev/null +++ b/systems/amiga/tpp/TPP410EN/c/lha |