runtex 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. data/lib/Code_zum_Pluendern_rtex4newrtex.rb +275 -0
  2. data/lib/catch_output.rb +99 -0
  3. data/lib/runtex.rb +221 -0
  4. data/lib/runtex_bibtex.rb +111 -0
  5. data/lib/runtex_job_chain.rb +371 -0
  6. data/lib/runtex_latex.rb +373 -0
  7. data/lib/runtex_makeindex.rb +114 -0
  8. data/lib/runtex_pathes.yaml +59 -0
  9. data/lib/runtex_rail.rb +116 -0
  10. data/lib/runtex_splitindex.rb +78 -0
  11. data/lib/runtex_tool.rb +128 -0
  12. data/lppl.txt +416 -0
  13. data/readme +73 -0
  14. data/unittest/expected/test_bibliography_babelbib.debug1.txt +31 -0
  15. data/unittest/expected/test_bibliography_babelbib.debug2.txt +16 -0
  16. data/unittest/expected/test_bibliography_babelbib.tex.runtex_summary.txt +19 -0
  17. data/unittest/expected/test_bibliography_babelbib_1.txt +15 -0
  18. data/unittest/expected/test_bibliography_babelbib_2.txt +11 -0
  19. data/unittest/expected/test_bibliography_plain.debug1.txt +45 -0
  20. data/unittest/expected/test_bibliography_plain.debug2.txt +16 -0
  21. data/unittest/expected/test_bibliography_plain.tex.runtex_summary.txt +18 -0
  22. data/unittest/expected/test_bibliography_plain_1.txt +19 -0
  23. data/unittest/expected/test_bibliography_plain_2.txt +11 -0
  24. data/unittest/expected/test_error.debug1.txt +22 -0
  25. data/unittest/expected/test_error.debug2.txt +12 -0
  26. data/unittest/expected/test_error.tex.runtex_summary.txt +15 -0
  27. data/unittest/expected/test_error_1.txt +15 -0
  28. data/unittest/expected/test_error_2.txt +12 -0
  29. data/unittest/expected/test_gloss.debug1.txt +45 -0
  30. data/unittest/expected/test_gloss.debug2.txt +16 -0
  31. data/unittest/expected/test_gloss.tex.runtex_summary.txt +18 -0
  32. data/unittest/expected/test_gloss_1.txt +19 -0
  33. data/unittest/expected/test_gloss_2.txt +11 -0
  34. data/unittest/expected/test_gloss_newgloss.debug1.txt +58 -0
  35. data/unittest/expected/test_gloss_newgloss.debug2.txt +20 -0
  36. data/unittest/expected/test_gloss_newgloss.tex.runtex_summary.txt +24 -0
  37. data/unittest/expected/test_gloss_newgloss_1.txt +23 -0
  38. data/unittest/expected/test_gloss_newgloss_2.txt +13 -0
  39. data/unittest/expected/test_glossaries.debug1.txt +56 -0
  40. data/unittest/expected/test_glossaries.debug2.txt +28 -0
  41. data/unittest/expected/test_glossaries.tex.runtex_summary.txt +30 -0
  42. data/unittest/expected/test_glossaries_1.txt +24 -0
  43. data/unittest/expected/test_glossaries_2.txt +19 -0
  44. data/unittest/expected/test_index.debug1.txt +35 -0
  45. data/unittest/expected/test_index.debug2.txt +18 -0
  46. data/unittest/expected/test_index.tex.runtex_summary.txt +24 -0
  47. data/unittest/expected/test_index2.debug1.txt +58 -0
  48. data/unittest/expected/test_index2.debug2.txt +29 -0
  49. data/unittest/expected/test_index2.tex.runtex_summary.txt +27 -0
  50. data/unittest/expected/test_index2_1.txt +23 -0
  51. data/unittest/expected/test_index2_2.txt +17 -0
  52. data/unittest/expected/test_index_1.txt +21 -0
  53. data/unittest/expected/test_index_2.txt +17 -0
  54. data/unittest/expected/test_makeindex.debug1.txt +35 -0
  55. data/unittest/expected/test_makeindex.debug2.txt +18 -0
  56. data/unittest/expected/test_makeindex.tex.runtex_summary.txt +18 -0
  57. data/unittest/expected/test_makeindex_1.txt +15 -0
  58. data/unittest/expected/test_makeindex_2.txt +11 -0
  59. data/unittest/expected/test_packagedoc_dtx.debug1.txt +54 -0
  60. data/unittest/expected/test_packagedoc_dtx.debug2.txt +27 -0
  61. data/unittest/expected/test_packagedoc_dtx.dtx.runtex_summary.txt +31 -0
  62. data/unittest/expected/test_packagedoc_dtx_1.txt +18 -0
  63. data/unittest/expected/test_packagedoc_dtx_2.txt +13 -0
  64. data/unittest/expected/test_rail.debug1.txt +35 -0
  65. data/unittest/expected/test_rail.debug2.txt +12 -0
  66. data/unittest/expected/test_rail.tex.runtex_summary.txt +12 -0
  67. data/unittest/expected/test_rail_1.txt +13 -0
  68. data/unittest/expected/test_rail_2.txt +9 -0
  69. data/unittest/expected/test_rail_error.debug1.txt +37 -0
  70. data/unittest/expected/test_rail_error.debug2.txt +35 -0
  71. data/unittest/expected/test_rail_error.tex.runtex_summary.txt +18 -0
  72. data/unittest/expected/test_rail_error_1.txt +18 -0
  73. data/unittest/expected/test_rail_error_2.txt +18 -0
  74. data/unittest/expected/test_splitindex.debug1.txt +64 -0
  75. data/unittest/expected/test_splitindex.debug2.txt +32 -0
  76. data/unittest/expected/test_splitindex.tex.runtex_summary.txt +31 -0
  77. data/unittest/expected/test_splitindex_1.txt +21 -0
  78. data/unittest/expected/test_splitindex_2.txt +15 -0
  79. data/unittest/expected/test_test.debug1.txt +32 -0
  80. data/unittest/expected/test_test.debug2.txt +12 -0
  81. data/unittest/expected/test_test.tex.runtex_summary.txt +12 -0
  82. data/unittest/expected/test_test_1.txt +15 -0
  83. data/unittest/expected/test_test_2.txt +9 -0
  84. data/unittest/expected/test_test_bibliography.debug1.txt +31 -0
  85. data/unittest/expected/test_test_gloss.debug1.txt +45 -0
  86. data/unittest/expected/test_test_gloss_newgloss.debug1.txt +58 -0
  87. data/unittest/expected/test_test_glossaries.debug1.txt +48 -0
  88. data/unittest/expected/test_test_index.debug1.txt +35 -0
  89. data/unittest/expected/test_test_index2.debug1.txt +58 -0
  90. data/unittest/expected/test_test_makeindex.debug1.txt +35 -0
  91. data/unittest/expected/test_test_rail.debug1.txt +35 -0
  92. data/unittest/expected/test_test_splitindex.debug1.txt +64 -0
  93. data/unittest/expected/test_test_test.debug1.txt +32 -0
  94. data/unittest/testcases.yaml +427 -0
  95. data/unittest/unittest_catch_output.rb +66 -0
  96. data/unittest/unittest_runtex.rb +282 -0
  97. metadata +149 -0
@@ -0,0 +1,45 @@
1
+ INFO test_gloss.tex: Start job chain for test/test_gloss.tex
2
+ DEBUG test_gloss.tex: Create log/help-zip test_gloss.log.zip
3
+ INFO test_gloss.tex: 01 Start TeX-run 1
4
+ INFO test_gloss.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_gloss.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_gloss.tex
6
+ DEBUG test_gloss.tex: 01-01 LaTeX finished
7
+ DEBUG test_gloss.tex: 01-01 Analyse aux-file
8
+ DEBUG test_gloss.tex: 01-01 Analyse log-file
9
+ DEBUG test_gloss.tex: 01-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss.gls.bbl", :log=>"test_gloss.gls.blg", :source=>"test_gloss.gls.aux"}>
10
+ DEBUG test_gloss.tex: 01-01 Aux.file changed -> New TeX run
11
+ DEBUG test_gloss.tex: 01 Rerun necessary (Aux-File changed)
12
+ DEBUG test_gloss.tex: 01-01 -> File: test_gloss.pdf, 1 Page, 18KB; Warnings: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `default' o, There were undefined references.; gloss: Term `gnu' on page 1 not defined in glossary `default' ogloss: Term `gnu' on page 1 not defined in glossary `default' oThere were undefined references.: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `default' o, There were undefined references.
13
+ INFO test_gloss.tex: 01-02 Call RunTeX::BibTeX<{:target=>"test_gloss.gls.bbl", :log=>"test_gloss.gls.blg", :source=>"test_gloss.gls.aux"}>
14
+ DEBUG test_gloss.tex: 01-02 Call bibtex test_gloss.gls.aux
15
+ DEBUG test_gloss.tex: 01 Rerun necessary (Bibliography changed)
16
+ DEBUG test_gloss.tex: 01-02 -> Info: Database file test_gloss.bib used
17
+ INFO test_gloss.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
18
+ INFO test_gloss.tex: 02 Start TeX-run 2
19
+ INFO test_gloss.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
20
+ DEBUG test_gloss.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_gloss.tex
21
+ DEBUG test_gloss.tex: 02-01 LaTeX finished
22
+ DEBUG test_gloss.tex: 02-01 Analyse aux-file
23
+ DEBUG test_gloss.tex: 02-01 Analyse log-file
24
+ DEBUG test_gloss.tex: 02-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss.gls.bbl", :log=>"test_gloss.gls.blg", :source=>"test_gloss.gls.aux"}>
25
+ DEBUG test_gloss.tex: 02-01 Aux.file changed -> New TeX run
26
+ DEBUG test_gloss.tex: 02 Rerun necessary (Aux-File changed)
27
+ DEBUG test_gloss.tex: 02-01 -> File: test_gloss.pdf, 1 Page, 22KB; Warnings: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `default' o, There were undefined references.; gloss: Term `gnu' on page 1 not defined in glossary `default' ogloss: Term `gnu' on page 1 not defined in glossary `default' oThere were undefined references.: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `default' o, There were undefined references.
28
+ INFO test_gloss.tex: 02-02 Call RunTeX::BibTeX<{:target=>"test_gloss.gls.bbl", :log=>"test_gloss.gls.blg", :source=>"test_gloss.gls.aux"}>
29
+ DEBUG test_gloss.tex: 02-02 Call bibtex test_gloss.gls.aux
30
+ DEBUG test_gloss.tex: 02-02 -> Info: Database file test_gloss.bib used
31
+ INFO test_gloss.tex: 02--- Rerun necessary (Aux-File changed)
32
+ INFO test_gloss.tex: 03 Start TeX-run 3
33
+ INFO test_gloss.tex: 03-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
34
+ DEBUG test_gloss.tex: 03-01 Start LaTeX pdflatex -interaction=batchmode test_gloss.tex
35
+ DEBUG test_gloss.tex: 03-01 LaTeX finished
36
+ DEBUG test_gloss.tex: 03-01 Analyse aux-file
37
+ DEBUG test_gloss.tex: 03-01 Analyse log-file
38
+ DEBUG test_gloss.tex: 03-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss.gls.bbl", :log=>"test_gloss.gls.blg", :source=>"test_gloss.gls.aux"}>
39
+ DEBUG test_gloss.tex: 03-01 -> File: test_gloss.pdf, 1 Page, 18KB
40
+ INFO test_gloss.tex: 03-02 Call RunTeX::BibTeX<{:target=>"test_gloss.gls.bbl", :log=>"test_gloss.gls.blg", :source=>"test_gloss.gls.aux"}>
41
+ DEBUG test_gloss.tex: 03-02 Call bibtex test_gloss.gls.aux
42
+ DEBUG test_gloss.tex: 03-02 -> Info: Database file test_gloss.bib used
43
+ DEBUG test_gloss.tex: Zip help files for later use (test_gloss.aux, test_gloss.out, test_gloss.toc, test_gloss.lox, test_gloss.gls.aux, test_gloss.gls.bbl, test_gloss-blx.bib)
44
+ DEBUG test_gloss.tex: Delete log files test_gloss.log, test_gloss.gls.blg, test_gloss.log, test_gloss.gls.blg, test_gloss.log, test_gloss.gls.blg
45
+ DEBUG test_gloss.tex: Delete helpfiles test_gloss.aux, test_gloss.out, test_gloss.gls.aux, test_gloss.gls.bbl
@@ -0,0 +1,58 @@
1
+ INFO test_gloss_newgloss.tex: Start job chain for test/test_gloss_newgloss.tex
2
+ DEBUG test_gloss_newgloss.tex: Create log/help-zip test_gloss_newgloss.log.zip
3
+ INFO test_gloss_newgloss.tex: 01 Start TeX-run 1
4
+ INFO test_gloss_newgloss.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_gloss_newgloss.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_gloss_newgloss.tex
6
+ DEBUG test_gloss_newgloss.tex: 01-01 LaTeX finished
7
+ DEBUG test_gloss_newgloss.tex: 01-01 Analyse aux-file
8
+ DEBUG test_gloss_newgloss.tex: 01-01 Analyse log-file
9
+ DEBUG test_gloss_newgloss.tex: 01-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss_newgloss.gls.bbl", :log=>"test_gloss_newgloss.gls.blg", :source=>"test_gloss_newgloss.gls.aux"}>
10
+ DEBUG test_gloss_newgloss.tex: 01-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss_newgloss.animals.bbl", :log=>"test_gloss_newgloss.animals.blg", :source=>"test_gloss_newgloss.animals.aux"}>
11
+ DEBUG test_gloss_newgloss.tex: 01-01 Aux.file changed -> New TeX run
12
+ DEBUG test_gloss_newgloss.tex: 01 Rerun necessary (Aux-File changed)
13
+ DEBUG test_gloss_newgloss.tex: 01-01 -> File: test_gloss_newgloss.pdf, 1 Page, 18KB; Warnings: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, There were undefined references.; gloss: Term `gnu' on page 1 not defined in glossary `default' ogloss: Term `gnu' on page 1 not defined in glossary `animals' ogloss: Term `gnu' on page 1 not defined in glossary `animals' oThere were undefined references.: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, There were undefined references.
14
+ INFO test_gloss_newgloss.tex: 01-02 Call RunTeX::BibTeX<{:target=>"test_gloss_newgloss.gls.bbl", :log=>"test_gloss_newgloss.gls.blg", :source=>"test_gloss_newgloss.gls.aux"}>
15
+ DEBUG test_gloss_newgloss.tex: 01-02 Call bibtex test_gloss_newgloss.gls.aux
16
+ DEBUG test_gloss_newgloss.tex: 01 Rerun necessary (Bibliography changed)
17
+ DEBUG test_gloss_newgloss.tex: 01-02 -> Info: Database file test_gloss.bib used
18
+ INFO test_gloss_newgloss.tex: 01-03 Call RunTeX::BibTeX<{:target=>"test_gloss_newgloss.animals.bbl", :log=>"test_gloss_newgloss.animals.blg", :source=>"test_gloss_newgloss.animals.aux"}>
19
+ DEBUG test_gloss_newgloss.tex: 01-03 Call bibtex test_gloss_newgloss.animals.aux
20
+ DEBUG test_gloss_newgloss.tex: 01 Rerun necessary (Bibliography changed)
21
+ DEBUG test_gloss_newgloss.tex: 01-03 -> Info: Database file test_gloss.bib used
22
+ INFO test_gloss_newgloss.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed, Bibliography changed)
23
+ INFO test_gloss_newgloss.tex: 02 Start TeX-run 2
24
+ INFO test_gloss_newgloss.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
25
+ DEBUG test_gloss_newgloss.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_gloss_newgloss.tex
26
+ DEBUG test_gloss_newgloss.tex: 02-01 LaTeX finished
27
+ DEBUG test_gloss_newgloss.tex: 02-01 Analyse aux-file
28
+ DEBUG test_gloss_newgloss.tex: 02-01 Analyse log-file
29
+ DEBUG test_gloss_newgloss.tex: 02-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss_newgloss.gls.bbl", :log=>"test_gloss_newgloss.gls.blg", :source=>"test_gloss_newgloss.gls.aux"}>
30
+ DEBUG test_gloss_newgloss.tex: 02-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss_newgloss.animals.bbl", :log=>"test_gloss_newgloss.animals.blg", :source=>"test_gloss_newgloss.animals.aux"}>
31
+ DEBUG test_gloss_newgloss.tex: 02-01 Aux.file changed -> New TeX run
32
+ DEBUG test_gloss_newgloss.tex: 02 Rerun necessary (Aux-File changed)
33
+ DEBUG test_gloss_newgloss.tex: 02-01 -> File: test_gloss_newgloss.pdf, 1 Page, 23KB; Warnings: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, There were undefined references.; gloss: Term `gnu' on page 1 not defined in glossary `default' ogloss: Term `gnu' on page 1 not defined in glossary `animals' ogloss: Term `gnu' on page 1 not defined in glossary `animals' oThere were undefined references.: gloss: Term `gnu' on page 1 not defined in glossary `default' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, gloss: Term `gnu' on page 1 not defined in glossary `animals' o, There were undefined references.
34
+ INFO test_gloss_newgloss.tex: 02-02 Call RunTeX::BibTeX<{:target=>"test_gloss_newgloss.gls.bbl", :log=>"test_gloss_newgloss.gls.blg", :source=>"test_gloss_newgloss.gls.aux"}>
35
+ DEBUG test_gloss_newgloss.tex: 02-02 Call bibtex test_gloss_newgloss.gls.aux
36
+ DEBUG test_gloss_newgloss.tex: 02-02 -> Info: Database file test_gloss.bib used
37
+ INFO test_gloss_newgloss.tex: 02-03 Call RunTeX::BibTeX<{:target=>"test_gloss_newgloss.animals.bbl", :log=>"test_gloss_newgloss.animals.blg", :source=>"test_gloss_newgloss.animals.aux"}>
38
+ DEBUG test_gloss_newgloss.tex: 02-03 Call bibtex test_gloss_newgloss.animals.aux
39
+ DEBUG test_gloss_newgloss.tex: 02-03 -> Info: Database file test_gloss.bib used
40
+ INFO test_gloss_newgloss.tex: 02--- Rerun necessary (Aux-File changed)
41
+ INFO test_gloss_newgloss.tex: 03 Start TeX-run 3
42
+ INFO test_gloss_newgloss.tex: 03-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
43
+ DEBUG test_gloss_newgloss.tex: 03-01 Start LaTeX pdflatex -interaction=batchmode test_gloss_newgloss.tex
44
+ DEBUG test_gloss_newgloss.tex: 03-01 LaTeX finished
45
+ DEBUG test_gloss_newgloss.tex: 03-01 Analyse aux-file
46
+ DEBUG test_gloss_newgloss.tex: 03-01 Analyse log-file
47
+ DEBUG test_gloss_newgloss.tex: 03-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss_newgloss.gls.bbl", :log=>"test_gloss_newgloss.gls.blg", :source=>"test_gloss_newgloss.gls.aux"}>
48
+ DEBUG test_gloss_newgloss.tex: 03-01 Add new step RunTeX::BibTeX<{:target=>"test_gloss_newgloss.animals.bbl", :log=>"test_gloss_newgloss.animals.blg", :source=>"test_gloss_newgloss.animals.aux"}>
49
+ DEBUG test_gloss_newgloss.tex: 03-01 -> File: test_gloss_newgloss.pdf, 1 Page, 20KB
50
+ INFO test_gloss_newgloss.tex: 03-02 Call RunTeX::BibTeX<{:target=>"test_gloss_newgloss.gls.bbl", :log=>"test_gloss_newgloss.gls.blg", :source=>"test_gloss_newgloss.gls.aux"}>
51
+ DEBUG test_gloss_newgloss.tex: 03-02 Call bibtex test_gloss_newgloss.gls.aux
52
+ DEBUG test_gloss_newgloss.tex: 03-02 -> Info: Database file test_gloss.bib used
53
+ INFO test_gloss_newgloss.tex: 03-03 Call RunTeX::BibTeX<{:target=>"test_gloss_newgloss.animals.bbl", :log=>"test_gloss_newgloss.animals.blg", :source=>"test_gloss_newgloss.animals.aux"}>
54
+ DEBUG test_gloss_newgloss.tex: 03-03 Call bibtex test_gloss_newgloss.animals.aux
55
+ DEBUG test_gloss_newgloss.tex: 03-03 -> Info: Database file test_gloss.bib used
56
+ DEBUG test_gloss_newgloss.tex: Zip help files for later use (test_gloss_newgloss.aux, test_gloss_newgloss.out, test_gloss_newgloss.toc, test_gloss_newgloss.lox, test_gloss_newgloss.gls.aux, test_gloss_newgloss.gls.bbl, test_gloss_newgloss-blx.bib, test_gloss_newgloss.animals.aux, test_gloss_newgloss.animals.bbl)
57
+ DEBUG test_gloss_newgloss.tex: Delete log files test_gloss_newgloss.log, test_gloss_newgloss.gls.blg, test_gloss_newgloss.animals.blg, test_gloss_newgloss.log, test_gloss_newgloss.gls.blg, test_gloss_newgloss.animals.blg, test_gloss_newgloss.log, test_gloss_newgloss.gls.blg, test_gloss_newgloss.animals.blg
58
+ DEBUG test_gloss_newgloss.tex: Delete helpfiles test_gloss_newgloss.aux, test_gloss_newgloss.out, test_gloss_newgloss.gls.aux, test_gloss_newgloss.gls.bbl, test_gloss_newgloss.animals.aux, test_gloss_newgloss.animals.bbl
@@ -0,0 +1,48 @@
1
+ INFO test_glossaries.tex: Start job chain for test/test_glossaries.tex
2
+ DEBUG test_glossaries.tex: Create log/help-zip test_glossaries.log.zip
3
+ INFO test_glossaries.tex: 01 Start TeX-run 1
4
+ INFO test_glossaries.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_glossaries.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_glossaries.tex
6
+ DEBUG test_glossaries.tex: 01-01 LaTeX finished
7
+ DEBUG test_glossaries.tex: 01-01 Analyse aux-file
8
+ DEBUG test_glossaries.tex: 01-01 Find glossary main
9
+ DEBUG test_glossaries.tex: 01-01 Find glossary ext
10
+ DEBUG test_glossaries.tex: 01-01 Add new step Makeindex<main glossary>
11
+ DEBUG test_glossaries.tex: 01-01 Add new step Makeindex<ext>
12
+ DEBUG test_glossaries.tex: 01-01 Analyse log-file
13
+ DEBUG test_glossaries.tex: 01-01 Aux.file changed -> New TeX run
14
+ DEBUG test_glossaries.tex: 01 Rerun necessary (Aux-File changed)
15
+ DEBUG test_glossaries.tex: 01-01 -> File: test_glossaries.pdf, 1 Page, 9KB, 4 Errors; Errors: xkeyval.sty: `ext' undefined in families `glslink'., xkeyval.sty: `ext' undefined in families `glslink'., xkeyval.sty: `ext' undefined in families `glslink'., xkeyval.sty: `ext' undefined in families `glslink'.
16
+ INFO test_glossaries.tex: 01-02 Call Makeindex<main glossary>
17
+ DEBUG test_glossaries.tex: 01-02 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.gls -t test_glossaries.glg test_glossaries.glo
18
+ DEBUG test_glossaries.tex: 01 Rerun necessary (Index test_glossaries.gls changed)
19
+ DEBUG test_glossaries.tex: 01-02 Analyse log-file
20
+ DEBUG test_glossaries.tex: 01-02 -> Info: input file test_glossaries.glo (0 entries accepted, 0 rejected)
21
+ INFO test_glossaries.tex: 01-03 Call Makeindex<ext>
22
+ DEBUG test_glossaries.tex: 01-03 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.glsext_in -t test_glossaries.TeX-extensions test_glossaries.glsext_out
23
+ DEBUG test_glossaries.tex: 01 Rerun necessary (Index test_glossaries.glsext_in changed)
24
+ DEBUG test_glossaries.tex: 01-03 Analyse log-file
25
+ DEBUG test_glossaries.tex: 01-03 -> Info: input file test_glossaries.glsext_out. (4 entries accepted, 0 rejected)
26
+ INFO test_glossaries.tex: 01--- Rerun necessary (Aux-File changed, Index test_glossaries.gls changed, Index test_glossaries.glsext_in changed)
27
+ INFO test_glossaries.tex: 02 Start TeX-run 2
28
+ INFO test_glossaries.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
29
+ DEBUG test_glossaries.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_glossaries.tex
30
+ DEBUG test_glossaries.tex: 02-01 LaTeX finished
31
+ DEBUG test_glossaries.tex: 02-01 Analyse aux-file
32
+ DEBUG test_glossaries.tex: 02-01 Find glossary main
33
+ DEBUG test_glossaries.tex: 02-01 Find glossary ext
34
+ DEBUG test_glossaries.tex: 02-01 Add new step Makeindex<main glossary>
35
+ DEBUG test_glossaries.tex: 02-01 Add new step Makeindex<ext>
36
+ DEBUG test_glossaries.tex: 02-01 Analyse log-file
37
+ DEBUG test_glossaries.tex: 02-01 -> File: test_glossaries.pdf, 1 Page, 15KB, 4 Errors; Errors: xkeyval.sty: `ext' undefined in families `glslink'., xkeyval.sty: `ext' undefined in families `glslink'., xkeyval.sty: `ext' undefined in families `glslink'., xkeyval.sty: `ext' undefined in families `glslink'.
38
+ INFO test_glossaries.tex: 02-02 Call Makeindex<main glossary>
39
+ DEBUG test_glossaries.tex: 02-02 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.gls -t test_glossaries.glg test_glossaries.glo
40
+ DEBUG test_glossaries.tex: 02-02 Analyse log-file
41
+ DEBUG test_glossaries.tex: 02-02 -> Info: input file test_glossaries.glo (0 entries accepted, 0 rejected)
42
+ INFO test_glossaries.tex: 02-03 Call Makeindex<ext>
43
+ DEBUG test_glossaries.tex: 02-03 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.glsext_in -t test_glossaries.TeX-extensions test_glossaries.glsext_out
44
+ DEBUG test_glossaries.tex: 02-03 Analyse log-file
45
+ DEBUG test_glossaries.tex: 02-03 -> Info: input file test_glossaries.glsext_out. (4 entries accepted, 0 rejected)
46
+ DEBUG test_glossaries.tex: Zip help files for later use (test_glossaries.aux, test_glossaries.out, test_glossaries.toc, test_glossaries.lox, test_glossaries.glo, test_glossaries.gls, test_glossaries.glsext_out, test_glossaries.glsext_in)
47
+ DEBUG test_glossaries.tex: Delete log files test_glossaries.log, test_glossaries.glg, test_glossaries.TeX-extensions, test_glossaries.log, test_glossaries.glg, test_glossaries.TeX-extensions
48
+ DEBUG test_glossaries.tex: Delete helpfiles test_glossaries.aux, test_glossaries.out, test_glossaries.glo, test_glossaries.gls, test_glossaries.glsext_out, test_glossaries.glsext_in
@@ -0,0 +1,35 @@
1
+ INFO test_index.tex: Start job chain for test/test_index.tex
2
+ DEBUG test_index.tex: Create log/help-zip test_index.log.zip
3
+ INFO test_index.tex: 01 Start TeX-run 1
4
+ INFO test_index.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_index.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_index.tex
6
+ DEBUG test_index.tex: 01-01 LaTeX finished
7
+ DEBUG test_index.tex: 01-01 Analyse aux-file
8
+ DEBUG test_index.tex: 01-01 Analyse log-file
9
+ DEBUG test_index.tex: 01-01 Index test_index.idx detected
10
+ DEBUG test_index.tex: 01-01 Add new step Makeindex<Index>
11
+ DEBUG test_index.tex: 01-01 Aux.file changed -> New TeX run
12
+ DEBUG test_index.tex: 01 Rerun necessary (Aux-File changed)
13
+ DEBUG test_index.tex: 01-01 -> File: test_index.pdf, 15 Pages, 66KB; Warnings: Command \markboth has changed., Command \markright has changed.; Command \markboth has changed.Command \markright has changed.: Command \markboth has changed., Command \markright has changed.
14
+ INFO test_index.tex: 01-02 Call Makeindex<Index>
15
+ DEBUG test_index.tex: 01-02 Start Makeindex: makeindex -o test_index.ind -t test_index.ilg test_index.idx
16
+ DEBUG test_index.tex: 01 Rerun necessary (Index test_index.ind changed)
17
+ DEBUG test_index.tex: 01-02 Analyse log-file
18
+ DEBUG test_index.tex: 01-02 -> Info: input file test_index.idx. (2 entries accepted, 0 rejected)
19
+ INFO test_index.tex: 01--- Rerun necessary (Aux-File changed, Index test_index.ind changed)
20
+ INFO test_index.tex: 02 Start TeX-run 2
21
+ INFO test_index.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
22
+ DEBUG test_index.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_index.tex
23
+ DEBUG test_index.tex: 02-01 LaTeX finished
24
+ DEBUG test_index.tex: 02-01 Analyse aux-file
25
+ DEBUG test_index.tex: 02-01 Analyse log-file
26
+ DEBUG test_index.tex: 02-01 Index test_index.idx detected
27
+ DEBUG test_index.tex: 02-01 Add new step Makeindex<Index>
28
+ DEBUG test_index.tex: 02-01 -> File: test_index.pdf, 16 Pages, 69KB, 1 Error; Errors: Undefined control sequence. (<argument> \@makeschapterhead ); Warnings: Command \markboth has changed., Command \markright has changed.; Command \markboth has changed.Command \markright has changed.: Command \markboth has changed., Command \markright has changed.
29
+ INFO test_index.tex: 02-02 Call Makeindex<Index>
30
+ DEBUG test_index.tex: 02-02 Start Makeindex: makeindex -o test_index.ind -t test_index.ilg test_index.idx
31
+ DEBUG test_index.tex: 02-02 Analyse log-file
32
+ DEBUG test_index.tex: 02-02 -> Info: input file test_index.idx. (2 entries accepted, 0 rejected)
33
+ DEBUG test_index.tex: Zip help files for later use (test_index.aux, test_index.out, test_index.toc, test_index.lox, test_index.idx, test_index.ind)
34
+ DEBUG test_index.tex: Delete log files test_index.log, test_index.ilg, test_index.log, test_index.ilg
35
+ DEBUG test_index.tex: Delete helpfiles test_index.aux, test_index.out, test_index.idx, test_index.ind
@@ -0,0 +1,58 @@
1
+ INFO test_index2.tex: Start job chain for test/test_index2.tex
2
+ DEBUG test_index2.tex: Create log/help-zip test_index2.log.zip
3
+ INFO test_index2.tex: 01 Start TeX-run 1
4
+ INFO test_index2.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_index2.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_index2.tex
6
+ DEBUG test_index2.tex: 01-01 LaTeX finished
7
+ DEBUG test_index2.tex: 01-01 Analyse aux-file
8
+ DEBUG test_index2.tex: 01-01 Analyse log-file
9
+ DEBUG test_index2.tex: 01-01 Index test_index2.idx detected
10
+ DEBUG test_index2.tex: 01-01 Add new step Makeindex<Index>
11
+ DEBUG test_index2.tex: 01-01 Index test_index2.idx detected (->test_index2.ind)
12
+ DEBUG test_index2.tex: 01-01 Add new step Makeindex<Index2-test_index2.idx>
13
+ DEBUG test_index2.tex: 01-01 Replace Makeindex by Index2-test_index2.idx
14
+ DEBUG test_index2.tex: 01-01 Index test_index2.adx detected
15
+ WARN test_index2.tex: 01-01 Warning: index.sty is not supported, please use index2 (test_index2.adx)
16
+ DEBUG test_index2.tex: 01-01 Index test_index2.adx detected (->test_index2.and)
17
+ DEBUG test_index2.tex: 01-01 Add new step Makeindex<Index2-test_index2.adx>
18
+ DEBUG test_index2.tex: 01-01 Aux.file changed -> New TeX run
19
+ DEBUG test_index2.tex: 01 Rerun necessary (Aux-File changed)
20
+ DEBUG test_index2.tex: 01-01 -> File: test_index2.pdf, 15 Pages, 66KB; Warnings: Command \markboth has changed., Command \markright has changed.; Command \markboth has changed.Command \markright has changed.: Command \markboth has changed., Command \markright has changed.
21
+ INFO test_index2.tex: 01-02 Call Makeindex<Index2-test_index2.idx>
22
+ DEBUG test_index2.tex: 01-02 Start Makeindex: makeindex -o test_index2.ind -t test_index2.idx.ilg test_index2.idx
23
+ DEBUG test_index2.tex: 01 Rerun necessary (Index test_index2.ind changed)
24
+ DEBUG test_index2.tex: 01-02 Analyse log-file
25
+ DEBUG test_index2.tex: 01-02 -> Info: input file test_index2.idx. (2 entries accepted, 0 rejected)
26
+ INFO test_index2.tex: 01-03 Call Makeindex<Index2-test_index2.adx>
27
+ DEBUG test_index2.tex: 01-03 Start Makeindex: makeindex -o test_index2.and -t test_index2.adx.ilg test_index2.adx
28
+ DEBUG test_index2.tex: 01 Rerun necessary (Index test_index2.and changed)
29
+ DEBUG test_index2.tex: 01-03 Analyse log-file
30
+ DEBUG test_index2.tex: 01-03 -> Info: input file test_index2.adx. (2 entries accepted, 0 rejected)
31
+ INFO test_index2.tex: 01--- Rerun necessary (Aux-File changed, Index test_index2.ind changed, Index test_index2.and changed)
32
+ INFO test_index2.tex: 02 Start TeX-run 2
33
+ INFO test_index2.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
34
+ DEBUG test_index2.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_index2.tex
35
+ DEBUG test_index2.tex: 02-01 LaTeX finished
36
+ DEBUG test_index2.tex: 02-01 Analyse aux-file
37
+ DEBUG test_index2.tex: 02-01 Analyse log-file
38
+ DEBUG test_index2.tex: 02-01 Index test_index2.idx detected
39
+ DEBUG test_index2.tex: 02-01 Add new step Makeindex<Index>
40
+ DEBUG test_index2.tex: 02-01 Index test_index2.idx detected (->test_index2.ind)
41
+ DEBUG test_index2.tex: 02-01 Add new step Makeindex<Index2-test_index2.idx>
42
+ DEBUG test_index2.tex: 02-01 Replace Makeindex by Index2-test_index2.idx
43
+ DEBUG test_index2.tex: 02-01 Index test_index2.adx detected
44
+ WARN test_index2.tex: 02-01 Warning: index.sty is not supported, please use index2 (test_index2.adx)
45
+ DEBUG test_index2.tex: 02-01 Index test_index2.adx detected (->test_index2.and)
46
+ DEBUG test_index2.tex: 02-01 Add new step Makeindex<Index2-test_index2.adx>
47
+ DEBUG test_index2.tex: 02-01 -> File: test_index2.pdf, 17 Pages, 71KB; Warnings: Command \markboth has changed., Command \markright has changed.; Command \markboth has changed.Command \markright has changed.: Command \markboth has changed., Command \markright has changed.
48
+ INFO test_index2.tex: 02-02 Call Makeindex<Index2-test_index2.idx>
49
+ DEBUG test_index2.tex: 02-02 Start Makeindex: makeindex -o test_index2.ind -t test_index2.idx.ilg test_index2.idx
50
+ DEBUG test_index2.tex: 02-02 Analyse log-file
51
+ DEBUG test_index2.tex: 02-02 -> Info: input file test_index2.idx. (2 entries accepted, 0 rejected)
52
+ INFO test_index2.tex: 02-03 Call Makeindex<Index2-test_index2.adx>
53
+ DEBUG test_index2.tex: 02-03 Start Makeindex: makeindex -o test_index2.and -t test_index2.adx.ilg test_index2.adx
54
+ DEBUG test_index2.tex: 02-03 Analyse log-file
55
+ DEBUG test_index2.tex: 02-03 -> Info: input file test_index2.adx. (2 entries accepted, 0 rejected)
56
+ DEBUG test_index2.tex: Zip help files for later use (test_index2.aux, test_index2.out, test_index2.toc, test_index2.lox, test_index2.adx, test_index2.idx, test_index2.ind, test_index2.and)
57
+ DEBUG test_index2.tex: Delete log files test_index2.log, test_index2.idx.ilg, test_index2.adx.ilg, test_index2.log, test_index2.idx.ilg, test_index2.adx.ilg
58
+ DEBUG test_index2.tex: Delete helpfiles test_index2.aux, test_index2.out, test_index2.adx, test_index2.idx, test_index2.ind, test_index2.and
@@ -0,0 +1,35 @@
1
+ INFO test_makeindex.tex: Start job chain for test/test_makeindex.tex
2
+ DEBUG test_makeindex.tex: Create log/help-zip test_makeindex.log.zip
3
+ INFO test_makeindex.tex: 01 Start TeX-run 1
4
+ INFO test_makeindex.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_makeindex.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_makeindex.tex
6
+ DEBUG test_makeindex.tex: 01-01 LaTeX finished
7
+ DEBUG test_makeindex.tex: 01-01 Analyse aux-file
8
+ DEBUG test_makeindex.tex: 01-01 Analyse log-file
9
+ DEBUG test_makeindex.tex: 01-01 Index test_makeindex.idx detected
10
+ DEBUG test_makeindex.tex: 01-01 Add new step Makeindex<Index>
11
+ DEBUG test_makeindex.tex: 01-01 Aux.file changed -> New TeX run
12
+ DEBUG test_makeindex.tex: 01 Rerun necessary (Aux-File changed)
13
+ DEBUG test_makeindex.tex: 01-01 -> File: test_makeindex.pdf, 15 Pages, 66KB
14
+ INFO test_makeindex.tex: 01-02 Call Makeindex<Index>
15
+ DEBUG test_makeindex.tex: 01-02 Start Makeindex: makeindex -o test_makeindex.ind -t test_makeindex.ilg test_makeindex.idx
16
+ DEBUG test_makeindex.tex: 01 Rerun necessary (Index test_makeindex.ind changed)
17
+ DEBUG test_makeindex.tex: 01-02 Analyse log-file
18
+ DEBUG test_makeindex.tex: 01-02 -> Info: input file test_makeindex.idx. (2 entries accepted, 0 rejected)
19
+ INFO test_makeindex.tex: 01--- Rerun necessary (Aux-File changed, Index test_makeindex.ind changed)
20
+ INFO test_makeindex.tex: 02 Start TeX-run 2
21
+ INFO test_makeindex.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
22
+ DEBUG test_makeindex.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_makeindex.tex
23
+ DEBUG test_makeindex.tex: 02-01 LaTeX finished
24
+ DEBUG test_makeindex.tex: 02-01 Analyse aux-file
25
+ DEBUG test_makeindex.tex: 02-01 Analyse log-file
26
+ DEBUG test_makeindex.tex: 02-01 Index test_makeindex.idx detected
27
+ DEBUG test_makeindex.tex: 02-01 Add new step Makeindex<Index>
28
+ DEBUG test_makeindex.tex: 02-01 -> File: test_makeindex.pdf, 16 Pages, 70KB
29
+ INFO test_makeindex.tex: 02-02 Call Makeindex<Index>
30
+ DEBUG test_makeindex.tex: 02-02 Start Makeindex: makeindex -o test_makeindex.ind -t test_makeindex.ilg test_makeindex.idx
31
+ DEBUG test_makeindex.tex: 02-02 Analyse log-file
32
+ DEBUG test_makeindex.tex: 02-02 -> Info: input file test_makeindex.idx. (2 entries accepted, 0 rejected)
33
+ DEBUG test_makeindex.tex: Zip help files for later use (test_makeindex.aux, test_makeindex.out, test_makeindex.toc, test_makeindex.lox, test_makeindex.idx, test_makeindex.ind)
34
+ DEBUG test_makeindex.tex: Delete log files test_makeindex.log, test_makeindex.ilg, test_makeindex.log, test_makeindex.ilg
35
+ DEBUG test_makeindex.tex: Delete helpfiles test_makeindex.aux, test_makeindex.out, test_makeindex.idx, test_makeindex.ind
@@ -0,0 +1,35 @@
1
+ INFO test_rail.tex: Start job chain for test/test_rail.tex
2
+ DEBUG test_rail.tex: Create log/help-zip test_rail.log.zip
3
+ INFO test_rail.tex: 01 Start TeX-run 1
4
+ INFO test_rail.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_rail.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_rail.tex
6
+ DEBUG test_rail.tex: 01-01 LaTeX finished
7
+ DEBUG test_rail.tex: 01-01 Analyse aux-file
8
+ DEBUG test_rail.tex: 01-01 Analyse log-file
9
+ DEBUG test_rail.tex: 01-01 Rerun necessary (Rail diagram 1 on line 31)
10
+ DEBUG test_rail.tex: 01 Rerun necessary (Rail diagram 1 on line 31 changed)
11
+ DEBUG test_rail.tex: 01-01 Add new step RunTeX::Rail<{:target=>"test_rail.rao", :source=>"test_rail.rai"}>
12
+ DEBUG test_rail.tex: 01-01 Rerun necessary (Rail diagram 2 on line 42)
13
+ DEBUG test_rail.tex: 01 Rerun necessary (Rail diagram 2 on line 42 changed)
14
+ DEBUG test_rail.tex: 01-01 Add new step RunTeX::Rail<{:target=>"test_rail.rao", :source=>"test_rail.rai"}>
15
+ DEBUG test_rail.tex: 01-01 Rerun necessary (Rail diagram changed)
16
+ DEBUG test_rail.tex: 01 Rerun necessary (Rail diagram changed)
17
+ DEBUG test_rail.tex: 01-01 Add new step RunTeX::Rail<{:target=>"test_rail.rao", :source=>"test_rail.rai"}>
18
+ DEBUG test_rail.tex: 01-01 Aux.file changed -> New TeX run
19
+ DEBUG test_rail.tex: 01 Rerun necessary (Aux-File changed)
20
+ DEBUG test_rail.tex: 01-01 -> File: test_rail.pdf, 1 Page, 10KB
21
+ INFO test_rail.tex: 01-02 Call RunTeX::Rail<{:target=>"test_rail.rao", :source=>"test_rail.rai"}>
22
+ DEBUG test_rail.tex: 01-02 Call Rail.exe to create rail-diagramms.
23
+ DEBUG test_rail.tex: 01 Rerun necessary (Rail: rao-file changed)
24
+ DEBUG test_rail.tex: 01-02 -> Info: Rail version 1.1 #0 was called
25
+ INFO test_rail.tex: 01--- Rerun necessary (Rail diagram 1 on line 31 changed, Rail diagram 2 on line 42 changed, Rail diagram changed, Aux-File changed, Rail: rao-file changed)
26
+ INFO test_rail.tex: 02 Start TeX-run 2
27
+ INFO test_rail.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
28
+ DEBUG test_rail.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_rail.tex
29
+ DEBUG test_rail.tex: 02-01 LaTeX finished
30
+ DEBUG test_rail.tex: 02-01 Analyse aux-file
31
+ DEBUG test_rail.tex: 02-01 Analyse log-file
32
+ DEBUG test_rail.tex: 02-01 -> File: test_rail.pdf, 1 Page, 25KB
33
+ DEBUG test_rail.tex: Zip help files for later use (test_rail.aux, test_rail.out, test_rail.toc, test_rail.lox, test_rail.rao, test_rail.rai)
34
+ DEBUG test_rail.tex: Delete log files test_rail.log, test_rail.log
35
+ DEBUG test_rail.tex: Delete helpfiles test_rail.aux, test_rail.out, test_rail.rao, test_rail.rai
@@ -0,0 +1,64 @@
1
+ INFO test_splitindex.tex: Start job chain for test/test_splitindex.tex
2
+ DEBUG test_splitindex.tex: Create log/help-zip test_splitindex.log.zip
3
+ INFO test_splitindex.tex: 01 Start TeX-run 1
4
+ INFO test_splitindex.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_splitindex.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_splitindex.tex
6
+ DEBUG test_splitindex.tex: 01-01 LaTeX finished
7
+ DEBUG test_splitindex.tex: 01-01 Analyse aux-file
8
+ DEBUG test_splitindex.tex: 01-01 Analyse log-file
9
+ DEBUG test_splitindex.tex: 01-01 Index test_splitindex.idx detected
10
+ DEBUG test_splitindex.tex: 01-01 Add new step Makeindex<Index>
11
+ DEBUG test_splitindex.tex: 01-01 Found splitindex for test_splitindex.idx
12
+ DEBUG test_splitindex.tex: 01-01 Add new step RunTeX::Splitindex<{:source=>"test_splitindex.idx"}>
13
+ DEBUG test_splitindex.tex: 01-01 Replace Makeindex by Splitindex
14
+ DEBUG test_splitindex.tex: 01-01 Aux.file changed -> New TeX run
15
+ DEBUG test_splitindex.tex: 01 Rerun necessary (Aux-File changed)
16
+ DEBUG test_splitindex.tex: 01-01 -> File: test_splitindex.pdf, 3 Pages, 34KB
17
+ INFO test_splitindex.tex: 01-02 Call RunTeX::Splitindex<{:source=>"test_splitindex.idx"}>
18
+ DEBUG test_splitindex.tex: 01-02 Split index into sub indices (RunTeX::Splitindex)
19
+ DEBUG test_splitindex.tex: 01-02 Build Split-index aut
20
+ DEBUG test_splitindex.tex: 01-01 Add new step Makeindex<Sub-Index aut>
21
+ DEBUG test_splitindex.tex: 01-02 Build Split-index idx
22
+ DEBUG test_splitindex.tex: 01-01 Add new step Makeindex<Sub-Index idx>
23
+ DEBUG test_splitindex.tex: 01-02 -> Info: Build Split-index aut, Build Split-index idx
24
+ INFO test_splitindex.tex: 01-03 Call Makeindex<Sub-Index aut>
25
+ DEBUG test_splitindex.tex: 01-03 Start Makeindex: makeindex -o test_splitindex-aut.ind -t test_splitindex-aut.ilg test_splitindex-aut.idx
26
+ DEBUG test_splitindex.tex: 01 Rerun necessary (Index test_splitindex-aut.ind changed)
27
+ DEBUG test_splitindex.tex: 01-03 Analyse log-file
28
+ DEBUG test_splitindex.tex: 01-03 -> Info: input file test_splitindex-aut.idx. (2 entries accepted, 0 rejected)
29
+ INFO test_splitindex.tex: 01-04 Call Makeindex<Sub-Index idx>
30
+ DEBUG test_splitindex.tex: 01-04 Start Makeindex: makeindex -o test_splitindex-idx.ind -t test_splitindex-idx.ilg test_splitindex-idx.idx
31
+ DEBUG test_splitindex.tex: 01 Rerun necessary (Index test_splitindex-idx.ind changed)
32
+ DEBUG test_splitindex.tex: 01-04 Analyse log-file
33
+ DEBUG test_splitindex.tex: 01-04 -> Info: input file test_splitindex-idx.idx. (2 entries accepted, 0 rejected)
34
+ INFO test_splitindex.tex: 01--- Rerun necessary (Aux-File changed, Index test_splitindex-aut.ind changed, Index test_splitindex-idx.ind changed)
35
+ INFO test_splitindex.tex: 02 Start TeX-run 2
36
+ INFO test_splitindex.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
37
+ DEBUG test_splitindex.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_splitindex.tex
38
+ DEBUG test_splitindex.tex: 02-01 LaTeX finished
39
+ DEBUG test_splitindex.tex: 02-01 Analyse aux-file
40
+ DEBUG test_splitindex.tex: 02-01 Analyse log-file
41
+ DEBUG test_splitindex.tex: 02-01 Index test_splitindex.idx detected
42
+ DEBUG test_splitindex.tex: 02-01 Add new step Makeindex<Index>
43
+ DEBUG test_splitindex.tex: 02-01 Found splitindex for test_splitindex.idx
44
+ DEBUG test_splitindex.tex: 02-01 Add new step RunTeX::Splitindex<{:source=>"test_splitindex.idx"}>
45
+ DEBUG test_splitindex.tex: 02-01 Replace Makeindex by Splitindex
46
+ DEBUG test_splitindex.tex: 02-01 -> File: test_splitindex.pdf, 4 Pages, 38KB
47
+ INFO test_splitindex.tex: 02-02 Call RunTeX::Splitindex<{:source=>"test_splitindex.idx"}>
48
+ DEBUG test_splitindex.tex: 02-02 Split index into sub indices (RunTeX::Splitindex)
49
+ DEBUG test_splitindex.tex: 02-02 Build Split-index aut
50
+ DEBUG test_splitindex.tex: 02-01 Add new step Makeindex<Sub-Index aut>
51
+ DEBUG test_splitindex.tex: 02-02 Build Split-index idx
52
+ DEBUG test_splitindex.tex: 02-01 Add new step Makeindex<Sub-Index idx>
53
+ DEBUG test_splitindex.tex: 02-02 -> Info: Build Split-index aut, Build Split-index idx
54
+ INFO test_splitindex.tex: 02-03 Call Makeindex<Sub-Index aut>
55
+ DEBUG test_splitindex.tex: 02-03 Start Makeindex: makeindex -o test_splitindex-aut.ind -t test_splitindex-aut.ilg test_splitindex-aut.idx
56
+ DEBUG test_splitindex.tex: 02-03 Analyse log-file
57
+ DEBUG test_splitindex.tex: 02-03 -> Info: input file test_splitindex-aut.idx. (2 entries accepted, 0 rejected)
58
+ INFO test_splitindex.tex: 02-04 Call Makeindex<Sub-Index idx>
59
+ DEBUG test_splitindex.tex: 02-04 Start Makeindex: makeindex -o test_splitindex-idx.ind -t test_splitindex-idx.ilg test_splitindex-idx.idx
60
+ DEBUG test_splitindex.tex: 02-04 Analyse log-file
61
+ DEBUG test_splitindex.tex: 02-04 -> Info: input file test_splitindex-idx.idx. (2 entries accepted, 0 rejected)
62
+ DEBUG test_splitindex.tex: Zip help files for later use (test_splitindex.aux, test_splitindex.out, test_splitindex.toc, test_splitindex.lox, test_splitindex.idx, test_splitindex-aut.idx, test_splitindex-aut.ind, test_splitindex-idx.idx, test_splitindex-idx.ind)
63
+ DEBUG test_splitindex.tex: Delete log files test_splitindex.log, test_splitindex-aut.ilg, test_splitindex-idx.ilg, test_splitindex.log, test_splitindex-aut.ilg, test_splitindex-idx.ilg
64
+ DEBUG test_splitindex.tex: Delete helpfiles test_splitindex.aux, test_splitindex.out, test_splitindex.idx, test_splitindex-aut.idx, test_splitindex-aut.ind, test_splitindex-idx.idx, test_splitindex-idx.ind
@@ -0,0 +1,32 @@
1
+ INFO test_test.tex: Start job chain for test/test_test.tex
2
+ DEBUG test_test.tex: Create log/help-zip test_test.log.zip
3
+ INFO test_test.tex: 01 Start TeX-run 1
4
+ INFO test_test.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_test.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_test.tex
6
+ DEBUG test_test.tex: 01-01 LaTeX finished
7
+ DEBUG test_test.tex: 01-01 Analyse aux-file
8
+ DEBUG test_test.tex: 01-01 Analyse log-file
9
+ DEBUG test_test.tex: 01-01 Aux.file changed -> New TeX run
10
+ DEBUG test_test.tex: 01 Rerun necessary (Aux-File changed)
11
+ DEBUG test_test.tex: 01-01 -> File: test_test.pdf, 15 Pages, 66KB
12
+ INFO test_test.tex: 01--- Rerun necessary (Aux-File changed)
13
+ INFO test_test.tex: 02 Start TeX-run 2
14
+ INFO test_test.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
15
+ DEBUG test_test.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_test.tex
16
+ DEBUG test_test.tex: 02-01 LaTeX finished
17
+ DEBUG test_test.tex: 02-01 Analyse aux-file
18
+ DEBUG test_test.tex: 02-01 Analyse log-file
19
+ DEBUG test_test.tex: 02-01 Aux.file changed -> New TeX run
20
+ DEBUG test_test.tex: 02 Rerun necessary (Aux-File changed)
21
+ DEBUG test_test.tex: 02-01 -> File: test_test.pdf, 15 Pages, 72KB
22
+ INFO test_test.tex: 02--- Rerun necessary (Aux-File changed)
23
+ INFO test_test.tex: 03 Start TeX-run 3
24
+ INFO test_test.tex: 03-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
25
+ DEBUG test_test.tex: 03-01 Start LaTeX pdflatex -interaction=batchmode test_test.tex
26
+ DEBUG test_test.tex: 03-01 LaTeX finished
27
+ DEBUG test_test.tex: 03-01 Analyse aux-file
28
+ DEBUG test_test.tex: 03-01 Analyse log-file
29
+ DEBUG test_test.tex: 03-01 -> File: test_test.pdf, 15 Pages, 72KB
30
+ DEBUG test_test.tex: Zip help files for later use (test_test.aux, test_test.out, test_test.toc, test_test.lox)
31
+ DEBUG test_test.tex: Delete log files test_test.log, test_test.log, test_test.log
32
+ DEBUG test_test.tex: Delete helpfiles test_test.aux, test_test.out, test_test.toc
@@ -0,0 +1,427 @@
1
+ ---
2
+ bibliography.bib: |
3
+ @book{goossens93,
4
+ author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
5
+ title = "The Latex Companion",
6
+ year = "1993",
7
+ publisher = "Addison-Wesley",
8
+ address = "Reading, Massachusetts"
9
+ }
10
+
11
+ bibliography_plain: |
12
+ \documentclass[ngerman]{scrartcl}
13
+ \usepackage{babel}
14
+ \usepackage[ansinew]{inputenc}
15
+ \usepackage{blindtext}
16
+ \usepackage{hyperref}
17
+ % ----------------------------------------------------------------
18
+ \begin{document}
19
+ \blindtext
20
+
21
+ Citation: \cite{goossens93}
22
+
23
+ \blindtext
24
+
25
+ \bibliographystyle{plain}
26
+ \bibliography{test_bibliography}
27
+
28
+ \end{document}
29
+ % ----------------------------------------------------------------
30
+
31
+
32
+ bibliography_babelbib: |
33
+ \documentclass[ngerman]{scrartcl}
34
+ \usepackage{babel}
35
+ \usepackage[ansinew]{inputenc}
36
+ \usepackage{blindtext}
37
+ \usepackage{hyperref}
38
+ % ----------------------------------------------------------------
39
+ \RequirePackage{csquotes}%babel+biblatex needs it
40
+ \RequirePackage[
41
+ % hyperref=true,
42
+ % style=authortitle, %setzt autocite=footnote
43
+ % autocite=plain,
44
+ ]{biblatex}
45
+ \bibliography{test_bibliography}
46
+ % ----------------------------------------------------------------
47
+ \begin{document}
48
+ \blindtext
49
+
50
+ Citation: \cite{goossens93}
51
+
52
+ \blindtext
53
+
54
+ \printbibliography
55
+
56
+ \end{document}
57
+ % ----------------------------------------------------------------
58
+
59
+ glossaries: |
60
+ \documentclass[ngerman]{scrartcl}
61
+ \usepackage{babel,hyperref,graphicx}
62
+ \usepackage[]{glossaries}
63
+
64
+ \newglossary[TeX-extensions]{ext}{glsext_in}{glsext_out}{Extensions}
65
+ \makeglossaries
66
+
67
+ %\loadglsentries[ext]{TeX-Extensions.tex}
68
+ \newglossaryentry{tex}{
69
+ type=ext,
70
+ name=tex,
71
+ text=tex,
72
+ description={TeX-File},
73
+ }
74
+ \newglossaryentry{aux}{
75
+ type=ext,
76
+ name=aux,
77
+ text=aux,
78
+ description={Auxiliary File, created during TeX-run},
79
+ }
80
+ \newglossaryentry{toc}{
81
+ type=ext,
82
+ name=toc,
83
+ text=toc,
84
+ description={Table of contents},
85
+ }
86
+ \newcommand\extension[1]{\gls[ext]{#1}}
87
+
88
+ % ----------------------------------------------------------------
89
+ \begin{document}
90
+
91
+ During a \TeX-run, \extension{tex}s are taken, and a \extension{aux} is created.
92
+
93
+ Later, the \extension{aux} is used to build \extension{toc}.
94
+
95
+
96
+ \printglossaries
97
+ \end{document}
98
+ % ----------------------------------------------------------------
99
+
100
+ index: |
101
+ \documentclass[ngerman]{scrartcl}
102
+ \usepackage{babel}
103
+ \usepackage[ansinew]{inputenc}
104
+ \usepackage{index}\makeindex
105
+ \usepackage{blindtext}
106
+ \usepackage{hyperref}
107
+ % ----------------------------------------------------------------
108
+ \begin{document}
109
+ \index{test}
110
+ \Blinddocument
111
+ \index{test}
112
+
113
+ \printindex
114
+ \end{document}
115
+ % ----------------------------------------------------------------
116
+
117
+ index2: |
118
+ \documentclass[ngerman]{scrartcl}
119
+ \usepackage{babel}
120
+ \usepackage[ansinew]{inputenc}
121
+ \usepackage{index2}\makeindex
122
+ \usepackage{blindtext}
123
+ \usepackage{hyperref}
124
+ % ----------------------------------------------------------------
125
+ \newindex{aut}{adx}{and}{Name Index}
126
+ % ----------------------------------------------------------------
127
+ \begin{document}
128
+ \index{test}\index[aut]{name}
129
+ \Blinddocument
130
+ \index{test}\index[aut]{name}
131
+
132
+ \printindex
133
+ \printindex[aut]
134
+ \end{document}
135
+ % ----------------------------------------------------------------
136
+
137
+ makeindex: |
138
+ \documentclass[ngerman]{scrartcl}
139
+ \usepackage{babel}
140
+ \usepackage[ansinew]{inputenc}
141
+ \usepackage{makeidx}\makeindex
142
+ \usepackage{blindtext}
143
+ \usepackage{hyperref}
144
+ % ----------------------------------------------------------------
145
+ \begin{document}
146
+ \index{test}
147
+ \Blinddocument
148
+ \index{test}
149
+ \printindex
150
+ \end{document}
151
+ % ----------------------------------------------------------------
152
+
153
+ rail: |
154
+ \documentclass[ngerman]{scrartcl}
155
+ \usepackage{babel}
156
+ \usepackage[ansinew]{inputenc}
157
+ \usepackage{rail}
158
+ \usepackage{blindtext}
159
+ \usepackage{hyperref}
160
+ % ----------------------------------------------------------------
161
+ % ----------------------------------------------------------------
162
+ \begin{document}
163
+
164
+ Diagramm 1
165
+ \begin{rail}
166
+ body :
167
+ [1] (
168
+ ( '[' string ']' )
169
+ ? body[2--6] + '|'
170
+ )
171
+ | [2] body[3--6] '*' body[5--6]
172
+ | [2] body[3--6] '+' body[5--6]
173
+ | [3] ( body[4--5] + )
174
+ | [4] body[5] '?'
175
+ | [5] identifier ( '[' string ']' ) ?
176
+ | [5] quote string quote
177
+ | [5] dquote string dquote
178
+ | [5] '(' body[1--6] ')'
179
+ | [5] cr
180
+ | [6]
181
+ ;
182
+
183
+ ;
184
+ \end{rail}
185
+
186
+ Diagramm 2
187
+ \begin{rail}
188
+ block :
189
+ ( lbrace | 'begin' )
190
+ ( ( '|' ( variable + ',' ) '|' ) | [Keine Blockvariablen] )
191
+ comm
192
+ ( rbrace | 'end' )
193
+
194
+ ;
195
+ \end{rail}
196
+
197
+
198
+
199
+ \end{document}
200
+ % ----------------------------------------------------------------
201
+ rail_error: |
202
+ \documentclass[ngerman]{scrartcl}
203
+ \usepackage{babel}
204
+ \usepackage[ansinew]{inputenc}
205
+ \usepackage{rail}
206
+ % ----------------------------------------------------------------
207
+ \begin{document}
208
+ Diagramm
209
+ \begin{rail}
210
+ block :
211
+ ( lbrace | 'begin'
212
+ \end{rail}
213
+ \end{document}
214
+ % ----------------------------------------------------------------
215
+
216
+ splitindex: |
217
+ \documentclass[ngerman]{scrartcl}
218
+ \usepackage{babel}
219
+ \usepackage[ansinew]{inputenc}
220
+ \usepackage{splitidx}\makeindex
221
+ \usepackage{blindtext}
222
+ \usepackage{hyperref}
223
+ % ----------------------------------------------------------------
224
+ \newindex[Name Index]{aut}
225
+ % ----------------------------------------------------------------
226
+ \begin{document}
227
+ \index{test}\sindex[aut]{name}
228
+ \blinddocument
229
+ \index{test}\sindex[aut]{name}
230
+
231
+ \printindex
232
+ \printindex[aut]
233
+ \end{document}
234
+ % ----------------------------------------------------------------
235
+
236
+ test: |
237
+ \documentclass[ngerman]{scrartcl}
238
+ \usepackage{babel}
239
+ \usepackage[ansinew]{inputenc}
240
+ %\usepackage{makeidx}\makeindex
241
+ \usepackage{blindtext}
242
+ \usepackage{hyperref}
243
+ % ----------------------------------------------------------------
244
+ \begin{document}
245
+ \tableofcontents
246
+ \Blinddocument
247
+
248
+ \end{document}
249
+ % ----------------------------------------------------------------
250
+
251
+ error: |
252
+ \documentclass[ngerman]{scrartcl}
253
+ \usepackage{babel}
254
+ \usepackage[ansinew]{inputenc}
255
+ %\usepackage{makeidx}\makeindex
256
+ \usepackage{blindtext}
257
+ \usepackage{hyperref}
258
+ % ----------------------------------------------------------------
259
+ \begin{document}
260
+ \blindtext
261
+
262
+ \unbekanntesMakro
263
+
264
+ \blindtext
265
+
266
+ \end{document}
267
+ % ----------------------------------------------------------------
268
+
269
+ gloss.bib: |
270
+ @gd{gnu,
271
+ word = {gnu},
272
+ definition = {Extrange animal}
273
+ }
274
+ gloss: |
275
+ \documentclass[english]{scrartcl}
276
+ \usepackage{babel}
277
+ \usepackage[ansinew]{inputenc}
278
+ \usepackage{blindtext}
279
+ \usepackage{hyperref}
280
+ % ----------------------------------------------------------------
281
+ \usepackage{gloss}
282
+ \makegloss
283
+ % ----------------------------------------------------------------
284
+ \begin{document}
285
+
286
+ \gloss{gnu}
287
+ \blindtext
288
+ \gloss{gnu}
289
+
290
+ \printgloss{test_gloss}
291
+ \end{document}
292
+ % ----------------------------------------------------------------
293
+ gloss_newgloss: |
294
+ \documentclass[english]{scrartcl}
295
+ \usepackage{babel}
296
+ \usepackage[ansinew]{inputenc}
297
+ \usepackage{blindtext}
298
+ \usepackage{hyperref}
299
+ % ----------------------------------------------------------------
300
+ \usepackage{gloss}
301
+ \makegloss
302
+ \newgloss{animals}{.animals}{Animals}{glsplain}
303
+ % ----------------------------------------------------------------
304
+ \begin{document}
305
+
306
+ \gloss{gnu}
307
+ \gloss[animals]{gnu}
308
+ \blindtext
309
+ \gloss[animals]{gnu}
310
+
311
+ \printgloss{test_gloss}
312
+ \printgloss[animals]{test_gloss}
313
+ \end{document}
314
+ % ----------------------------------------------------------------
315
+
316
+ packagedoc_dtx: |
317
+ \def\filepackagename{my-dtx-test}
318
+ \def\fileversion{v1}
319
+ \def\filedate{2009/06/10}
320
+ % \CheckSum{1}
321
+ %%
322
+ %% \CharacterTable
323
+ %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
324
+ %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
325
+ %% Digits \0\1\2\3\4\5\6\7\8\9
326
+ %% Exclamation \! Double quote \" Hash (number) \#
327
+ %% Dollar \$ Percent \% Ampersand \&
328
+ %% Acute accent \' Left paren \( Right paren \)
329
+ %% Asterisk \* Plus \+ Comma \,
330
+ %% Minus \- Point \. Solidus \/
331
+ %% Colon \: Semicolon \; Less than \<
332
+ %% Equals \= Greater than \> Question mark \?
333
+ %% Commercial at \@ Left bracket \[ Backslash \\
334
+ %% Right bracket \] Circumflex \^ Underscore \_
335
+ %% Grave accent \` Left brace \{ Vertical bar \|
336
+ %% Right brace \} Tilde \~}
337
+ %%
338
+ % \iffalse
339
+ %<*driver>
340
+ \documentclass[english]{ltxdoc}
341
+ \usepackage{babel}
342
+ \usepackage{makeidx}
343
+ \usepackage{blindtext}
344
+ \usepackage{hyperref}
345
+ \CodelineIndex
346
+ \makeindex
347
+ %
348
+ %^^A\OnlyDescription
349
+ \begin{document}
350
+ \RecordChanges
351
+ \DocInput{\jobname.dtx}
352
+ \end{document}
353
+ %</driver>
354
+ %<*package>
355
+ % \fi
356
+ % \title{\filepackagename}
357
+ % \author{The Package-Author}
358
+ % \maketitle
359
+ %
360
+ % \section{Introduction}
361
+ % \blindtext
362
+ %
363
+ % \section{Description}
364
+ % \DescribeMacro{\testmacro}
365
+ % Description |\testmacro|
366
+ % \blindtext
367
+ %
368
+ % \DescribeEnv{test}
369
+ % Description test-environment.
370
+ % \blindtext
371
+ %
372
+ %
373
+ % \section{The Coding}
374
+ % \blindtext
375
+ % \subsection{Main definitions}
376
+ % \begin{macrocode}
377
+ \NeedsTeXFormat{LaTeX2e}
378
+ \ProvidesPackage{\filepackagename}[\filedate\space\fileversion\space \filepackagename]
379
+ \typeout{\filepackagename-Package}
380
+ % \end{macrocode}
381
+ %
382
+ % \subsection{Options}
383
+ % \begin{macrocode}
384
+ \DeclareOption{Option1}{
385
+ % \PassOptionsToPackage{option}{package}
386
+ }
387
+ % \end{macrocode}
388
+ %
389
+ % Activate the options.
390
+ % \begin{macrocode}
391
+ %\ExecuteOptions{Option}
392
+ \ProcessOptions\relax
393
+ % \end{macrocode}
394
+ %
395
+ % Do some stuff at begin and end of document.
396
+ % \begin{macrocode}
397
+ %\AtBeginDocument{}
398
+ %\AtEndOfPackage{}
399
+ % \end{macrocode}
400
+ %
401
+ % \subsection{Environments}
402
+ % \begin{environment}{test}
403
+ % \blindtext
404
+ % \begin{macrocode}
405
+ %\newenvironment{test}{}{}
406
+ % \end{macrocode}
407
+ % \end{environment}
408
+ %
409
+ % \subsection{Macros}
410
+ % \changes{V1.7b}{2001/12/26}{Support of ...}
411
+ % \blindtext
412
+ % \begin{macro}{\testmacro}
413
+ % \begin{macrocode}
414
+ %\newcommand{\testmacro}{}
415
+ % \end{macrocode}
416
+ % \end{macro}
417
+ %
418
+ % \subsection{Closing remarks}
419
+ % \blindtext
420
+ %
421
+ % \PrintIndex
422
+ % \PrintChanges
423
+ % \Finale %^^A Check the checksum
424
+ %\iffalse
425
+ %</package>
426
+ %\fi
427
+ % \end{document}