home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / os2tex.zip / disk3.zip / l2.cmd < prev    next >
OS/2 REXX Batch file  |  1996-06-17  |  16KB  |  788 lines

  1. /* Rexx-Script zur Erzeugung der OS2TeX-Objekte */
  2.  
  3.  
  4.  
  5.  
  6.  
  7. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  8. call SysLoadFuncs
  9.  
  10.  
  11. parse arg language target
  12.  
  13.  
  14.  
  15. if language = '' then do
  16.    exit 1
  17. end
  18.  
  19.  
  20. if target = '' then do
  21.    exit 1
  22. end
  23.  
  24.  
  25.  
  26. /* SysDestroyObject('<TEX_SHELL_FOLDER>') */
  27.  
  28.  
  29.  
  30.  
  31. if language = '049' then do
  32.  
  33.  
  34.  
  35. co='Erzeuge Objekt'
  36. cf='Erzeuge Ordner'
  37.  
  38.  
  39. /* OS2TeX Ordner erzeugen */
  40.  
  41.  
  42.  
  43.  
  44. classname = 'WPFolder'
  45. title     = 'OS/2-TeX'
  46. location  = '<WP_DESKTOP>'
  47. setup     = 'ICONFILE='target'\bin\folder.ico;OBJECTID=<OS2TEX_FOLDER>;ICONVIEW=NONFLOWED;OPEN=ICON'
  48. duplicate = 'update'
  49.  
  50. say cf title
  51.  
  52. rc = SysCreateObject(classname,title,location,setup,duplicate)
  53.  
  54. if rc = 0 then do 
  55.    exit 1
  56. end
  57.  
  58.  
  59.  
  60.  
  61. /* Dokumentations Ordner */
  62.  
  63.  
  64.  
  65.  
  66. classname = 'WPFolder'
  67. title     = 'Dokumentation'
  68. location  = '<OS2TEX_FOLDER>'
  69. setup     = 'OBJECTID=<OS2TEX_DOC_FOLDER>;ICONVIEW=NONFLOWED,MINI;OPEN=ICON'
  70. duplicate = 'update'
  71.  
  72.  
  73. say cf title
  74.  
  75. rc = SysCreateObject(classname,title,location,setup,duplicate)
  76.  
  77. if rc = 0 then do 
  78.    exit 1
  79. end
  80.  
  81.  
  82.  
  83.  
  84. /* LaTeX2e Ordner erzeugen */
  85.  
  86.  
  87.  
  88.  
  89. classname = 'WPFolder'
  90. title     = 'LaTeX2e'
  91. location  = '<OS2TEX_DOC_FOLDER>'
  92. setup     = 'OBJECTID=<OS2TEX_LATEX2E_FOLDER>;ICONVIEW=NONFLOWED,MINI;OPEN=ICON'
  93. duplicate = 'update'
  94.  
  95.  
  96. say cf title
  97.  
  98. rc = SysCreateObject(classname,title,location,setup,duplicate)
  99.  
  100. if rc = 0 then do 
  101.    exit 1
  102. end
  103.  
  104.  
  105.  
  106. /* LaTeX2e Objekte erzeugen */
  107.  
  108.  
  109.  
  110.  
  111. classname = 'WPProgram'
  112. title     = 'LaTeX2e for authors'
  113. location  = '<OS2TEX_LATEX2E_FOLDER>'
  114. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_USRGUIDE>;PARAMETERS='target'\doc\usrguide.dvi'
  115. duplicate = 'update'
  116.  
  117. say co title
  118.  
  119. rc = SysCreateObject(classname,title,location,setup,duplicate)
  120.  
  121. if rc = 0 then do 
  122.    exit 1
  123. end
  124.  
  125.  
  126.  
  127.  
  128.  
  129. classname = 'WPProgram'
  130. title     = 'LaTeX2e font selection'
  131. location  = '<OS2TEX_LATEX2E_FOLDER>'
  132. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_FNTGUIDE>;PARAMETERS='target'\doc\fntguide.dvi'
  133. duplicate = 'update'
  134.  
  135.  
  136. say co title
  137.  
  138. rc = SysCreateObject(classname,title,location,setup,duplicate)
  139.  
  140. if rc = 0 then do 
  141.    exit 1
  142. end
  143.  
  144.  
  145.  
  146.  
  147. classname = 'WPProgram'
  148. title     = 'LaTeX2e for class and package writers'
  149. location  = '<OS2TEX_LATEX2E_FOLDER>'
  150. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_CLSGUIDE>;PARAMETERS='target'\doc\clsguide.dvi'
  151. duplicate = 'update'
  152.  
  153. say co title
  154.  
  155. rc = SysCreateObject(classname,title,location,setup,duplicate)
  156.  
  157. if rc = 0 then do 
  158.    exit 1
  159. end
  160.  
  161.  
  162.  
  163.  
  164. classname = 'WPProgram'
  165. title     = 'LaTeX2e Kurzanleitung '
  166. location  = '<OS2TEX_LATEX2E_FOLDER>'
  167. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_L2KURZ>;PARAMETERS='target'\doc\l2kurz.dvi'
  168. duplicate = 'update'
  169.  
  170. say co title
  171.  
  172. rc = SysCreateObject(classname,title,location,setup,duplicate)
  173.  
  174. if rc = 0 then do 
  175.    exit 1
  176. end
  177.  
  178.  
  179.  
  180.  
  181. /* Package Ordner erzeugen */
  182.  
  183.  
  184.  
  185.  
  186.  
  187. classname = 'WPFolder'
  188. title     = 'Zusatzpakete/Styles'
  189. location  = '<OS2TEX_DOC_FOLDER>'
  190. setup     = 'OBJECTID=<OS2TEX_PACKAGES_FOLDER>;ICONVIEW=NONFLOWED,MINI;OPEN=ICON'
  191. duplicate = 'update'
  192.  
  193.  
  194. say cf title
  195.  
  196. rc = SysCreateObject(classname,title,location,setup,duplicate)
  197.  
  198. if rc = 0 then do 
  199.    exit 1
  200. end
  201.  
  202.  
  203. /* german.sty Dokumentation */
  204.  
  205.  
  206.  
  207.  
  208. classname = 'WPProgram'
  209. title     = 'german [Bernd Raichle]'
  210. location  = '<OS2TEX_PACKAGES_FOLDER>'
  211. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_GERMDOC>;PARAMETERS='target'\doc\germdoc.dvi'
  212. duplicate = 'replace'
  213.  
  214. say co title
  215.  
  216. rc = SysCreateObject(classname,title,location,setup,duplicate)
  217.  
  218. if rc = 0 then do 
  219.    exit 1
  220. end
  221.  
  222.  
  223. /* grfguide.sty Dokumentation */
  224.  
  225.  
  226. classname = 'WPProgram'
  227. title     = 'graphics [D.P. Carlisle]'
  228. location  = '<OS2TEX_PACKAGES_FOLDER>'
  229. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_GRFGUIDE>;PARAMETERS='target'\doc\grfguide.dvi'
  230. duplicate = 'replace'
  231.  
  232.  
  233. say co title
  234.  
  235. rc = SysCreateObject(classname,title,location,setup,duplicate)
  236.  
  237. if rc = 0 then do 
  238.    exit 1
  239. end
  240.  
  241.  
  242. /* rotating.sty Dokumentation */
  243.  
  244.  
  245.  
  246.  
  247. classname = 'WPProgram'
  248. title     = 'rotating [S. Rahtz, L. Barroca]'
  249. location  = '<OS2TEX_PACKAGES_FOLDER>'
  250. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_ROTATINGEXAMPLES>;PARAMETERS='target'\doc\rotatingexamples.dvi'
  251. duplicate = 'replace'
  252.  
  253. say co title
  254.  
  255.  
  256. rc = SysCreateObject(classname,title,location,setup,duplicate)
  257.  
  258. if rc = 0 then do 
  259.    exit 1
  260. end
  261.  
  262.  
  263.  
  264. /* fancyheadings.sty Dokumentation */
  265.  
  266.  
  267.  
  268. classname = 'WPProgram'
  269. title     = 'fancyheadings [Piet van Oostrum]'
  270. location  = '<OS2TEX_PACKAGES_FOLDER>'
  271. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_FANCYHEADINGS>;PARAMETERS='target'\doc\fancyheadings.dvi'
  272. duplicate = 'replace'
  273.  
  274. say co title
  275.  
  276.  
  277. rc = SysCreateObject(classname,title,location,setup,duplicate)
  278.  
  279. if rc = 0 then do 
  280.    exit 1
  281. end
  282.  
  283.  
  284.  
  285.  
  286. /* dinbrief.sty Dokumentation */
  287.  
  288.  
  289.  
  290.  
  291. classname = 'WPProgram'
  292. title     = 'dinbrief [K.D. Braune, R. Gussmann]'
  293. location  = '<OS2TEX_PACKAGES_FOLDER>'
  294. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_DINBRIEF>;PARAMETERS='target'\doc\dinbrief.dvi'
  295. duplicate = 'replace'
  296.  
  297. say co title
  298.  
  299. rc = SysCreateObject(classname,title,location,setup,duplicate)
  300.  
  301. if rc = 0 then do 
  302.    exit 1
  303. end
  304.  
  305.  
  306.  
  307. /* supertabular.sty Dokumentation */
  308.  
  309.  
  310.  
  311.  
  312.  
  313. classname = 'WPProgram'
  314. title     = 'supertabular'
  315. location  = '<OS2TEX_PACKAGES_FOLDER>'
  316. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_SUPERTABULAR>;PARAMETERS='target'\doc\supertabular.dvi'
  317. duplicate = 'replace'
  318.  
  319. say co title
  320.  
  321. rc = SysCreateObject(classname,title,location,setup,duplicate)
  322.  
  323. if rc = 0 then do 
  324.    exit 1
  325. end
  326.  
  327.  
  328.  
  329. /* subfigure.sty Dokumentation */
  330.  
  331.  
  332.  
  333. classname = 'WPProgram'
  334. title     = 'subfigure [S.D. Cochran]'
  335. location  = '<OS2TEX_PACKAGES_FOLDER>'
  336. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_SUBFIGURE>;PARAMETERS='target'\doc\subfigure.dvi'
  337. duplicate = 'replace'
  338.  
  339. say co title
  340.  
  341. rc = SysCreateObject(classname,title,location,setup,duplicate)
  342.  
  343. if rc = 0 then do 
  344.    exit 1
  345. end
  346.  
  347.  
  348.  
  349. /* subeqnarray.sty Dokumentation */
  350.  
  351.  
  352.  
  353. classname = 'WPProgram'
  354. title     = 'subeqnarray [J. Braams]'
  355. location  = '<OS2TEX_PACKAGES_FOLDER>'
  356. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_SUBEQNARRAY>;PARAMETERS='target'\doc\subeqnarray.dvi'
  357. duplicate = 'replace'
  358.  
  359. say co title
  360.  
  361. rc = SysCreateObject(classname,title,location,setup,duplicate)
  362.  
  363. if rc = 0 then do 
  364.    exit 1
  365. end
  366.  
  367.  
  368.  
  369.  
  370. /* refman.cls Dokumentation */
  371.  
  372.  
  373.  
  374.  
  375. classname = 'WPProgram'
  376. title     = 'refman [H. Partl, A. Kielhorn]'
  377. location  = '<OS2TEX_PACKAGES_FOLDER>'
  378. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_REFMANLAYOUT>;PARAMETERS='target'\doc\refmanlayout.dvi'
  379. duplicate = 'replace'
  380.  
  381. say co title
  382.  
  383. rc = SysCreateObject(classname,title,location,setup,duplicate)
  384.  
  385. if rc = 0 then do 
  386.    exit 1
  387. end
  388.  
  389.  
  390. /* floatfigure Dokumentation */
  391.  
  392.  
  393.  
  394. classname = 'WPProgram'
  395. title     = 'floatfig [Thomas Kneser]'
  396. location  = '<OS2TEX_PACKAGES_FOLDER>'
  397. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_FLOATFIG>;PARAMETERS='target'\doc\floatfig.dvi'
  398. duplicate = 'replace'
  399.  
  400. say co title
  401.  
  402. rc = SysCreateObject(classname,title,location,setup,duplicate)
  403.  
  404. if rc = 0 then do 
  405.    exit 1
  406. end
  407.  
  408.  
  409.  
  410. end
  411.  
  412.  
  413.  
  414.  
  415. /* Objekte fuer die Englische Version */
  416.  
  417.  
  418.  
  419. if language = '044' then do
  420.  
  421.  
  422. cf = 'Creating folder'
  423. co = 'Creating object'
  424.  
  425.  
  426.  
  427. /* OS2TeX Ordner erzeugen */
  428.  
  429.  
  430. classname = 'WPFolder'
  431. title     = 'OS/2-TeX'
  432. location  = '<WP_DESKTOP>'
  433. setup     = 'ICONFILE='target'\bin\folder.ico;OBJECTID=<OS2TEX_FOLDER>;ICONVIEW=NONFLOWED;OPEN=ICON'
  434. duplicate = 'update'
  435.  
  436.  
  437. say cf title
  438.  
  439.  
  440. rc = SysCreateObject(classname,title,location,setup,duplicate)
  441.  
  442. if rc = 0 then do 
  443.    exit 1
  444. end
  445.  
  446.  
  447.  
  448.  
  449. /* Dokumentations Ordner */
  450.  
  451.  
  452. classname = 'WPFolder'
  453. title     = 'Documentation'
  454. location  = '<OS2TEX_FOLDER>'
  455. setup     = 'OBJECTID=<OS2TEX_DOC_FOLDER>;ICONVIEW=NONFLOWED,MINI;OPEN=ICON'
  456. duplicate = 'update'
  457.  
  458. say cf title
  459.  
  460.  
  461. rc = SysCreateObject(classname,title,location,setup,duplicate)
  462.  
  463. if rc = 0 then do 
  464.    exit 1
  465. end
  466.  
  467.  
  468.  
  469.  
  470. /* LaTeX2e Ordner erzeugen */
  471.  
  472.  
  473. classname = 'WPFolder'
  474. title     = 'LaTeX2e'
  475. location  = '<OS2TEX_DOC_FOLDER>'
  476. setup     = 'OBJECTID=<OS2TEX_LATEX2E_FOLDER>;ICONVIEW=NONFLOWED,MINI;OPEN=ICON'
  477. duplicate = 'update'
  478.  
  479. say cf title
  480.  
  481.  
  482. rc = SysCreateObject(classname,title,location,setup,duplicate)
  483.  
  484. if rc = 0 then do 
  485.    exit 1
  486. end
  487.  
  488.  
  489.  
  490. /* LaTeX2e Objekte erzeugen */
  491.  
  492.  
  493. classname = 'WPProgram'
  494. title     = 'LaTeX2e for authors'
  495. location  = '<OS2TEX_LATEX2E_FOLDER>'
  496. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_USRGUIDE>;PARAMETERS=-044 'target'\doc\usrguide.dvi'
  497. duplicate = 'update'
  498.  
  499. say co title
  500.  
  501. rc = SysCreateObject(classname,title,location,setup,duplicate)
  502.  
  503. if rc = 0 then do 
  504.    exit 1
  505. end
  506.  
  507.  
  508.  
  509. classname = 'WPProgram'
  510. title     = 'LaTeX2e font selection '
  511. location  = '<OS2TEX_LATEX2E_FOLDER>'
  512. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_FNTGUIDE>;PARAMETERS=-044 'target'\doc\fntguide.dvi'
  513. duplicate = 'update'
  514.  
  515. say co title
  516.  
  517. rc = SysCreateObject(classname,title,location,setup,duplicate)
  518.  
  519. if rc = 0 then do 
  520.    exit 1
  521. end
  522.  
  523.  
  524.  
  525. classname = 'WPProgram'
  526. title     = 'LaTeX2e for class and package writers '
  527. location  = '<OS2TEX_LATEX2E_FOLDER>'
  528. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_CLSGUIDE>;PARAMETERS=-044 'target'\doc\clsguide.dvi'
  529. duplicate = 'update'
  530.  
  531. say co title
  532.  
  533.  
  534. rc = SysCreateObject(classname,title,location,setup,duplicate)
  535.  
  536. if rc = 0 then do 
  537.    exit 1
  538. end
  539.  
  540.  
  541. classname = 'WPProgram'
  542. title     = 'LaTeX2e quick referece'
  543. location  = '<OS2TEX_LATEX2E_FOLDER>'
  544. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_L2KURZ>;PARAMETERS=-044 'target'\doc\l2kurz.dvi'
  545. duplicate = 'update'
  546.  
  547. say co title
  548.  
  549. rc = SysCreateObject(classname,title,location,setup,duplicate)
  550.  
  551. if rc = 0 then do 
  552.    exit 1
  553. end
  554.  
  555.  
  556.  
  557.  
  558. /* Package Ordner erzeugen */
  559.  
  560.  
  561.  
  562. classname = 'WPFolder'
  563. title     = 'Packages/Styles'
  564. location  = '<OS2TEX_DOC_FOLDER>'
  565. setup     = 'OBJECTID=<OS2TEX_PACKAGES_FOLDER>;ICONVIEW=NONFLOWED,MINI;OPEN=ICON'
  566. duplicate = 'update'
  567.  
  568. say cf title
  569.  
  570. rc = SysCreateObject(classname,title,location,setup,duplicate)
  571.  
  572. if rc = 0 then do 
  573.    exit 1
  574. end
  575.  
  576.  
  577. /* german.sty Dokumentation */
  578.  
  579.  
  580. classname = 'WPProgram'
  581. title     = 'german [Bernd Raichle]'
  582. location  = '<OS2TEX_PACKAGES_FOLDER>'
  583. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_GERMDOC>;PARAMETERS=-044 'target'\doc\germdoc.dvi'
  584. duplicate = 'replace'
  585.  
  586. say co title
  587.  
  588.  
  589. rc = SysCreateObject(classname,title,location,setup,duplicate)
  590.  
  591. if rc = 0 then do 
  592.    exit 1
  593. end
  594.  
  595.  
  596. /* grfguide.sty Dokumentation */
  597.  
  598.  
  599. classname = 'WPProgram'
  600. title     = 'graphics [D.P. Carlisle]'
  601. location  = '<OS2TEX_PACKAGES_FOLDER>'
  602. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_GRFGUIDE>;PARAMETERS=-044 'target'\doc\grfguide.dvi'
  603. duplicate = 'replace'
  604.  
  605. say co title
  606.  
  607.  
  608. rc = SysCreateObject(classname,title,location,setup,duplicate)
  609.  
  610. if rc = 0 then do 
  611.    exit 1
  612. end
  613.  
  614.  
  615. /* rotating.sty Dokumentation */
  616.  
  617.  
  618. classname = 'WPProgram'
  619. title     = 'rotating [S. Rahtz, L. Barroca]'
  620. location  = '<OS2TEX_PACKAGES_FOLDER>'
  621. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_ROTATINGEXAMPLES>;PARAMETERS=-044 'target'\doc\rotatingexamples.dvi'
  622. duplicate = 'replace'
  623.  
  624. say co title
  625.  
  626.  
  627.  
  628. rc = SysCreateObject(classname,title,location,setup,duplicate)
  629.  
  630. if rc = 0 then do 
  631.    exit 1
  632. end
  633.  
  634.  
  635.  
  636. /* fancyheadings.sty Dokumentation */
  637.  
  638.  
  639. classname = 'WPProgram'
  640. title     = 'fancyheadings [Piet van Oostrum]'
  641. location  = '<OS2TEX_PACKAGES_FOLDER>'
  642. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_FANCYHEADINGS>;PARAMETERS=-044 'target'\doc\fancyheadings.dvi'
  643. duplicate = 'replace'
  644.  
  645. say co title
  646.  
  647. rc = SysCreateObject(classname,title,location,setup,duplicate)
  648.  
  649. if rc = 0 then do 
  650.    exit 1
  651. end
  652.  
  653.  
  654.  
  655.  
  656. /* dinbrief.sty Dokumentation */
  657.  
  658.  
  659. classname = 'WPProgram'
  660. title     = 'dinbrief [K.D. Braune, R. Gussmann]'
  661. location  = '<OS2TEX_PACKAGES_FOLDER>'
  662. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_DINBRIEF>;PARAMETERS=-044 'target'\doc\dinbrief.dvi'
  663. duplicate = 'replace'
  664.  
  665. say co title
  666.  
  667.  
  668. rc = SysCreateObject(classname,title,location,setup,duplicate)
  669.  
  670. if rc = 0 then do 
  671.    exit 1
  672. end
  673.  
  674.  
  675.  
  676. /* supertabular.sty Dokumentation */
  677.  
  678.  
  679. classname = 'WPProgram'
  680. title     = 'supertabular'
  681. location  = '<OS2TEX_PACKAGES_FOLDER>'
  682. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_SUPERTABULAR>;PARAMETERS=-044 'target'\doc\supertabular.dvi'
  683. duplicate = 'replace'
  684.  
  685. say co title
  686.  
  687.  
  688.  
  689. rc = SysCreateObject(classname,title,location,setup,duplicate)
  690.  
  691. if rc = 0 then do 
  692.    exit 1
  693. end
  694.  
  695.  
  696.  
  697. /* subfigure.sty Dokumentation */
  698.  
  699.  
  700. classname = 'WPProgram'
  701. title     = 'subfigure [S.D. Cochran]'
  702. location  = '<OS2TEX_PACKAGES_FOLDER>'
  703. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_SUBFIGURE>;PARAMETERS=-044 'target'\doc\subfigure.dvi'
  704. duplicate = 'replace'
  705.  
  706. say co title
  707.  
  708.  
  709. rc = SysCreateObject(classname,title,location,setup,duplicate)
  710.  
  711. if rc = 0 then do 
  712.    exit 1
  713. end
  714.  
  715.  
  716.  
  717. /* subeqnarray.sty Dokumentation */
  718.  
  719.  
  720. classname = 'WPProgram'
  721. title     = 'subeqnarray [J. Braams]'
  722. location  = '<OS2TEX_PACKAGES_FOLDER>'
  723. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_SUBEQNARRAY>;PARAMETERS=-044 'target'\doc\subeqnarray.dvi'
  724. duplicate = 'replace'
  725.  
  726. say co title
  727.  
  728.  
  729. rc = SysCreateObject(classname,title,location,setup,duplicate)
  730.  
  731. if rc = 0 then do 
  732.    exit 1
  733. end
  734.  
  735.  
  736.  
  737.  
  738. /* refman.cls Dokumentation */
  739.  
  740.  
  741. classname = 'WPProgram'
  742. title     = 'refman [H. Partl, A. Kielhorn]'
  743. location  = '<OS2TEX_PACKAGES_FOLDER>'
  744. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_REFMANLAYOUT>;PARAMETERS=-044 'target'\doc\refmanlayout.dvi'
  745. duplicate = 'replace'
  746.  
  747. say co title
  748.  
  749.  
  750. rc = SysCreateObject(classname,title,location,setup,duplicate)
  751.  
  752. if rc = 0 then do 
  753.    exit 1
  754. end
  755.  
  756.  
  757. /* floatfigure Dokumentation */
  758.  
  759.  
  760. classname = 'WPProgram'
  761. title     = 'floatfig [Thomas Kneser]'
  762. location  = '<OS2TEX_PACKAGES_FOLDER>'
  763. setup     = 'EXENAME='target'\bin\dvi.exe;PROGTYPE=PM;STARTUPDIR='target'\bin;OBJECTID=<OS2TEX_FLOATFIG>;PARAMETERS=-044 'target'\doc\floatfig.dvi'
  764. duplicate = 'replace'
  765.  
  766. say co title
  767.  
  768.  
  769.  
  770. rc = SysCreateObject(classname,title,location,setup,duplicate)
  771.  
  772. if rc = 0 then do 
  773.    exit 1
  774. end
  775.  
  776.  
  777.  
  778.  
  779. end
  780.  
  781.  
  782.  
  783. exit 0
  784.  
  785.  
  786.  
  787.  
  788.