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,19 @@
1
+ Start job chain for test_gloss.tex
2
+ INFO test_gloss.tex: Start job chain for test/test_gloss.tex
3
+ INFO test_gloss.tex: 01 Start TeX-run 1
4
+ INFO test_gloss.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_gloss.tex: 01-02 Call BibTeX<test_gloss.gls.bbl>
6
+ INFO test_gloss.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
7
+ INFO test_gloss.tex: 02 Start TeX-run 2
8
+ INFO test_gloss.tex: 02-01 Call (La)TeX<pdflatex>
9
+ INFO test_gloss.tex: 02-02 Call BibTeX<test_gloss.gls.bbl>
10
+ INFO test_gloss.tex: 02--- Rerun necessary (Aux-File changed)
11
+ INFO test_gloss.tex: 03 Start TeX-run 3
12
+ INFO test_gloss.tex: 03-01 Call (La)TeX<pdflatex>
13
+ INFO test_gloss.tex: 03-02 Call BibTeX<test_gloss.gls.bbl>
14
+ ---
15
+ - test_gloss.pdf
16
+ - 1 Page
17
+ - 18KB
18
+ BibTeX<test_gloss.gls.bbl>: Information: 1;
19
+ More Details see test_gloss.tex.runtex_summary.txt or test_gloss.log.zip
@@ -0,0 +1,11 @@
1
+ Start job chain for test_gloss.tex
2
+ INFO test_gloss.tex: Start job chain for test/test_gloss.tex
3
+ INFO test_gloss.tex: 01 Start TeX-run 1
4
+ INFO test_gloss.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_gloss.tex: 01-02 Call BibTeX<test_gloss.gls.bbl>
6
+ ---
7
+ - test_gloss.pdf
8
+ - 1 Page
9
+ - 18KB
10
+ BibTeX<test_gloss.gls.bbl>: Information: 1;
11
+ More Details see test_gloss.tex.runtex_summary.txt or test_gloss.log.zip
@@ -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 (La)TeX<pdflatex>
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 BibTeX<test_gloss_newgloss.gls.bbl>
10
+ DEBUG test_gloss_newgloss.tex: 01-01 Add new step BibTeX<test_gloss_newgloss.animals.bbl>
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 BibTeX<test_gloss_newgloss.gls.bbl>
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 BibTeX<test_gloss_newgloss.animals.bbl>
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 (La)TeX<pdflatex>
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 BibTeX<test_gloss_newgloss.gls.bbl>
30
+ DEBUG test_gloss_newgloss.tex: 02-01 Add new step BibTeX<test_gloss_newgloss.animals.bbl>
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 BibTeX<test_gloss_newgloss.gls.bbl>
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 BibTeX<test_gloss_newgloss.animals.bbl>
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 (La)TeX<pdflatex>
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 BibTeX<test_gloss_newgloss.gls.bbl>
48
+ DEBUG test_gloss_newgloss.tex: 03-01 Add new step BibTeX<test_gloss_newgloss.animals.bbl>
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 BibTeX<test_gloss_newgloss.gls.bbl>
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 BibTeX<test_gloss_newgloss.animals.bbl>
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.lof, test_gloss_newgloss.lot, test_gloss_newgloss.lox, test_gloss_newgloss.nav, 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,20 @@
1
+ INFO test_gloss_newgloss.tex: Start job chain for test/test_gloss_newgloss.tex
2
+ DEBUG test_gloss_newgloss.tex: Re-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 (La)TeX<pdflatex>
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 BibTeX<test_gloss_newgloss.gls.bbl>
10
+ DEBUG test_gloss_newgloss.tex: 01-01 Add new step BibTeX<test_gloss_newgloss.animals.bbl>
11
+ DEBUG test_gloss_newgloss.tex: 01-01 -> File: test_gloss_newgloss.pdf, 1 Page, 20KB
12
+ INFO test_gloss_newgloss.tex: 01-02 Call BibTeX<test_gloss_newgloss.gls.bbl>
13
+ DEBUG test_gloss_newgloss.tex: 01-02 Call bibtex test_gloss_newgloss.gls.aux
14
+ DEBUG test_gloss_newgloss.tex: 01-02 -> Info: Database file test_gloss.bib used
15
+ INFO test_gloss_newgloss.tex: 01-03 Call BibTeX<test_gloss_newgloss.animals.bbl>
16
+ DEBUG test_gloss_newgloss.tex: 01-03 Call bibtex test_gloss_newgloss.animals.aux
17
+ DEBUG test_gloss_newgloss.tex: 01-03 -> Info: Database file test_gloss.bib used
18
+ DEBUG test_gloss_newgloss.tex: Zip help files for later use (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, test_gloss_newgloss.toc, test_gloss_newgloss.lof, test_gloss_newgloss.lot, test_gloss_newgloss.lox, test_gloss_newgloss.nav, test_gloss_newgloss-blx.bib)
19
+ 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, test_gloss_newgloss.log, test_gloss_newgloss.gls.blg, test_gloss_newgloss.animals.blg
20
+ 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,24 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_gloss_newgloss.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_gloss_newgloss.pdf
11
+ - 1 Page
12
+ - 20KB
13
+
14
+ ==================================================
15
+ BibTeX<test_gloss_newgloss.gls.bbl>
16
+ ==================================================
17
+ Information:
18
+ - Database file test_gloss.bib used
19
+
20
+ ==================================================
21
+ BibTeX<test_gloss_newgloss.animals.bbl>
22
+ ==================================================
23
+ Information:
24
+ - Database file test_gloss.bib used
@@ -0,0 +1,23 @@
1
+ Start job chain for test_gloss_newgloss.tex
2
+ INFO test_gloss_newgloss.tex: Start job chain for test/test_gloss_newgloss.tex
3
+ INFO test_gloss_newgloss.tex: 01 Start TeX-run 1
4
+ INFO test_gloss_newgloss.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_gloss_newgloss.tex: 01-02 Call BibTeX<test_gloss_newgloss.gls.bbl>
6
+ INFO test_gloss_newgloss.tex: 01-03 Call BibTeX<test_gloss_newgloss.animals.bbl>
7
+ INFO test_gloss_newgloss.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed, Bibliography changed)
8
+ INFO test_gloss_newgloss.tex: 02 Start TeX-run 2
9
+ INFO test_gloss_newgloss.tex: 02-01 Call (La)TeX<pdflatex>
10
+ INFO test_gloss_newgloss.tex: 02-02 Call BibTeX<test_gloss_newgloss.gls.bbl>
11
+ INFO test_gloss_newgloss.tex: 02-03 Call BibTeX<test_gloss_newgloss.animals.bbl>
12
+ INFO test_gloss_newgloss.tex: 02--- Rerun necessary (Aux-File changed)
13
+ INFO test_gloss_newgloss.tex: 03 Start TeX-run 3
14
+ INFO test_gloss_newgloss.tex: 03-01 Call (La)TeX<pdflatex>
15
+ INFO test_gloss_newgloss.tex: 03-02 Call BibTeX<test_gloss_newgloss.gls.bbl>
16
+ INFO test_gloss_newgloss.tex: 03-03 Call BibTeX<test_gloss_newgloss.animals.bbl>
17
+ ---
18
+ - test_gloss_newgloss.pdf
19
+ - 1 Page
20
+ - 20KB
21
+ BibTeX<test_gloss_newgloss.gls.bbl>: Information: 1;
22
+ BibTeX<test_gloss_newgloss.animals.bbl>: Information: 1;
23
+ More Details see test_gloss_newgloss.tex.runtex_summary.txt or test_gloss_newgloss.log.zip
@@ -0,0 +1,13 @@
1
+ Start job chain for test_gloss_newgloss.tex
2
+ INFO test_gloss_newgloss.tex: Start job chain for test/test_gloss_newgloss.tex
3
+ INFO test_gloss_newgloss.tex: 01 Start TeX-run 1
4
+ INFO test_gloss_newgloss.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_gloss_newgloss.tex: 01-02 Call BibTeX<test_gloss_newgloss.gls.bbl>
6
+ INFO test_gloss_newgloss.tex: 01-03 Call BibTeX<test_gloss_newgloss.animals.bbl>
7
+ ---
8
+ - test_gloss_newgloss.pdf
9
+ - 1 Page
10
+ - 20KB
11
+ BibTeX<test_gloss_newgloss.gls.bbl>: Information: 1;
12
+ BibTeX<test_gloss_newgloss.animals.bbl>: Information: 1;
13
+ More Details see test_gloss_newgloss.tex.runtex_summary.txt or test_gloss_newgloss.log.zip
@@ -0,0 +1,56 @@
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 (La)TeX<pdflatex>
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 Glossary test_glossaries.glo detected
14
+ DEBUG test_glossaries.tex: 01-01 Glossary in non-dtx found test_glossaries.glo
15
+ DEBUG test_glossaries.tex: 01-01 Glossary test_glossaries.glsext_out detected
16
+ DEBUG test_glossaries.tex: 01-01 Glossary in non-dtx found test_glossaries.glsext_out
17
+ DEBUG test_glossaries.tex: 01-01 Aux.file changed -> New TeX run
18
+ DEBUG test_glossaries.tex: 01 Rerun necessary (Aux-File changed)
19
+ DEBUG test_glossaries.tex: 01-01 -> File: test_glossaries.pdf, 1 Page, 9KB, 4 Errors; Errors: xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)During a \TeX-run, \extension{tex}s (line 32), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...on{tex}s are taken, and a \extension{aux} (line 32), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)Later, the \extension{aux} (line 34), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...ion{aux} is used to build \extension{toc}. (line 34)
20
+ INFO test_glossaries.tex: 01-02 Call Makeindex<main glossary>
21
+ DEBUG test_glossaries.tex: 01-02 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.gls -t test_glossaries.glg test_glossaries.glo
22
+ DEBUG test_glossaries.tex: 01 Rerun necessary (Index test_glossaries.gls changed)
23
+ DEBUG test_glossaries.tex: 01-02 Analyse log-file
24
+ DEBUG test_glossaries.tex: 01-02 -> Info: input file test_glossaries.glo (0 entries accepted, 0 rejected)
25
+ INFO test_glossaries.tex: 01-03 Call Makeindex<ext>
26
+ 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
27
+ DEBUG test_glossaries.tex: 01 Rerun necessary (Index test_glossaries.glsext_in changed)
28
+ DEBUG test_glossaries.tex: 01-03 Analyse log-file
29
+ DEBUG test_glossaries.tex: 01-03 -> Info: input file test_glossaries.glsext_out. (4 entries accepted, 0 rejected)
30
+ INFO test_glossaries.tex: 01--- Rerun necessary (Aux-File changed, Index test_glossaries.gls changed, Index test_glossaries.glsext_in changed)
31
+ INFO test_glossaries.tex: 02 Start TeX-run 2
32
+ INFO test_glossaries.tex: 02-01 Call (La)TeX<pdflatex>
33
+ DEBUG test_glossaries.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_glossaries.tex
34
+ DEBUG test_glossaries.tex: 02-01 LaTeX finished
35
+ DEBUG test_glossaries.tex: 02-01 Analyse aux-file
36
+ DEBUG test_glossaries.tex: 02-01 Find glossary main
37
+ DEBUG test_glossaries.tex: 02-01 Find glossary ext
38
+ DEBUG test_glossaries.tex: 02-01 Add new step Makeindex<main glossary>
39
+ DEBUG test_glossaries.tex: 02-01 Add new step Makeindex<ext>
40
+ DEBUG test_glossaries.tex: 02-01 Analyse log-file
41
+ DEBUG test_glossaries.tex: 02-01 Glossary test_glossaries.glo detected
42
+ DEBUG test_glossaries.tex: 02-01 Glossary in non-dtx found test_glossaries.glo
43
+ DEBUG test_glossaries.tex: 02-01 Glossary test_glossaries.glsext_out detected
44
+ DEBUG test_glossaries.tex: 02-01 Glossary in non-dtx found test_glossaries.glsext_out
45
+ DEBUG test_glossaries.tex: 02-01 -> File: test_glossaries.pdf, 1 Page, 15KB, 4 Errors; Errors: xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)During a \TeX-run, \extension{tex}s (line 32), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...on{tex}s are taken, and a \extension{aux} (line 32), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)Later, the \extension{aux} (line 34), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...ion{aux} is used to build \extension{toc}. (line 34)
46
+ INFO test_glossaries.tex: 02-02 Call Makeindex<main glossary>
47
+ DEBUG test_glossaries.tex: 02-02 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.gls -t test_glossaries.glg test_glossaries.glo
48
+ DEBUG test_glossaries.tex: 02-02 Analyse log-file
49
+ DEBUG test_glossaries.tex: 02-02 -> Info: input file test_glossaries.glo (0 entries accepted, 0 rejected)
50
+ INFO test_glossaries.tex: 02-03 Call Makeindex<ext>
51
+ 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
52
+ DEBUG test_glossaries.tex: 02-03 Analyse log-file
53
+ DEBUG test_glossaries.tex: 02-03 -> Info: input file test_glossaries.glsext_out. (4 entries accepted, 0 rejected)
54
+ DEBUG test_glossaries.tex: Zip help files for later use (test_glossaries.aux, test_glossaries.out, test_glossaries.toc, test_glossaries.lof, test_glossaries.lot, test_glossaries.lox, test_glossaries.nav, test_glossaries.glo, test_glossaries.gls, test_glossaries.glsext_out, test_glossaries.glsext_in)
55
+ 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
56
+ 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,28 @@
1
+ INFO test_glossaries.tex: Start job chain for test/test_glossaries.tex
2
+ DEBUG test_glossaries.tex: Re-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 (La)TeX<pdflatex>
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 Glossary test_glossaries.glo detected
14
+ DEBUG test_glossaries.tex: 01-01 Glossary in non-dtx found test_glossaries.glo
15
+ DEBUG test_glossaries.tex: 01-01 Glossary test_glossaries.glsext_out detected
16
+ DEBUG test_glossaries.tex: 01-01 Glossary in non-dtx found test_glossaries.glsext_out
17
+ DEBUG test_glossaries.tex: 01-01 -> File: test_glossaries.pdf, 1 Page, 15KB, 4 Errors; Errors: xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)During a \TeX-run, \extension{tex}s (line 32), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...on{tex}s are taken, and a \extension{aux} (line 32), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)Later, the \extension{aux} (line 34), xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...ion{aux} is used to build \extension{toc}. (line 34)
18
+ INFO test_glossaries.tex: 01-02 Call Makeindex<main glossary>
19
+ DEBUG test_glossaries.tex: 01-02 Start Makeindex: makeindex -s test_glossaries.ist -o test_glossaries.gls -t test_glossaries.glg test_glossaries.glo
20
+ DEBUG test_glossaries.tex: 01-02 Analyse log-file
21
+ DEBUG test_glossaries.tex: 01-02 -> Info: input file test_glossaries.glo (0 entries accepted, 0 rejected)
22
+ INFO test_glossaries.tex: 01-03 Call Makeindex<ext>
23
+ 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
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
+ DEBUG test_glossaries.tex: Zip help files for later use (test_glossaries.aux, test_glossaries.out, test_glossaries.glo, test_glossaries.gls, test_glossaries.glsext_out, test_glossaries.glsext_in, test_glossaries.toc, test_glossaries.lof, test_glossaries.lot, test_glossaries.lox, test_glossaries.nav)
27
+ 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, test_glossaries.log, test_glossaries.glg, test_glossaries.TeX-extensions
28
+ 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,30 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_glossaries.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_glossaries.pdf
11
+ - 1 Page
12
+ - 15KB
13
+ - 4 Errors
14
+ Errors:
15
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)During a \TeX-run, \extension{tex}s (line 32)
16
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...on{tex}s are taken, and a \extension{aux} (line 32)
17
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)Later, the \extension{aux} (line 34)
18
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...ion{aux} is used to build \extension{toc}. (line 34)
19
+
20
+ ==================================================
21
+ Makeindex<main glossary>
22
+ ==================================================
23
+ Information:
24
+ - input file test_glossaries.glo (0 entries accepted, 0 rejected)
25
+
26
+ ==================================================
27
+ Makeindex<ext>
28
+ ==================================================
29
+ Information:
30
+ - input file test_glossaries.glsext_out. (4 entries accepted, 0 rejected)
@@ -0,0 +1,24 @@
1
+ Start job chain for test_glossaries.tex
2
+ INFO test_glossaries.tex: Start job chain for test/test_glossaries.tex
3
+ INFO test_glossaries.tex: 01 Start TeX-run 1
4
+ INFO test_glossaries.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_glossaries.tex: 01-02 Call Makeindex<main glossary>
6
+ INFO test_glossaries.tex: 01-03 Call Makeindex<ext>
7
+ INFO test_glossaries.tex: 01--- Rerun necessary (Aux-File changed, Index test_glossaries.gls changed, Index test_glossaries.glsext_in changed)
8
+ INFO test_glossaries.tex: 02 Start TeX-run 2
9
+ INFO test_glossaries.tex: 02-01 Call (La)TeX<pdflatex>
10
+ INFO test_glossaries.tex: 02-02 Call Makeindex<main glossary>
11
+ INFO test_glossaries.tex: 02-03 Call Makeindex<ext>
12
+ ---
13
+ - test_glossaries.pdf
14
+ - 1 Page
15
+ - 15KB
16
+ - 4 Errors
17
+ Errors:
18
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)During a \TeX-run, \extension{tex}s (line 32)
19
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...on{tex}s are taken, and a \extension{aux} (line 32)
20
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)Later, the \extension{aux} (line 34)
21
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...ion{aux} is used to build \extension{toc}. (line 34)
22
+ Makeindex<main glossary>: Information: 1;
23
+ Makeindex<ext>: Information: 1;
24
+ More Details see test_glossaries.tex.runtex_summary.txt or test_glossaries.log.zip
@@ -0,0 +1,19 @@
1
+ Start job chain for test_glossaries.tex
2
+ INFO test_glossaries.tex: Start job chain for test/test_glossaries.tex
3
+ INFO test_glossaries.tex: 01 Start TeX-run 1
4
+ INFO test_glossaries.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_glossaries.tex: 01-02 Call Makeindex<main glossary>
6
+ INFO test_glossaries.tex: 01-03 Call Makeindex<ext>
7
+ ---
8
+ - test_glossaries.pdf
9
+ - 1 Page
10
+ - 15KB
11
+ - 4 Errors
12
+ Errors:
13
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)During a \TeX-run, \extension{tex}s (line 32)
14
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...on{tex}s are taken, and a \extension{aux} (line 32)
15
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)Later, the \extension{aux} (line 34)
16
+ - xkeyval.sty: `ext' undefined in families `glslink'. (package xkeyval)...ion{aux} is used to build \extension{toc}. (line 34)
17
+ Makeindex<main glossary>: Information: 1;
18
+ Makeindex<ext>: Information: 1;
19
+ More Details see test_glossaries.tex.runtex_summary.txt or test_glossaries.log.zip
@@ -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 (La)TeX<pdflatex>
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 (La)TeX<pdflatex>
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 || {\indexname }\ifx \index@prologue \@empty \els... ||\begin{theindex} (line 1); 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.lof, test_index.lot, test_index.lox, test_index.nav, 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,18 @@
1
+ INFO test_index.tex: Start job chain for test/test_index.tex
2
+ DEBUG test_index.tex: Re-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 (La)TeX<pdflatex>
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 -> File: test_index.pdf, 16 Pages, 69KB, 1 Error; Errors: Undefined control sequence. <argument> \@makeschapterhead || {\indexname }\ifx \index@prologue \@empty \els... ||\begin{theindex} (line 1); 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.
12
+ INFO test_index.tex: 01-02 Call Makeindex<Index>
13
+ DEBUG test_index.tex: 01-02 Start Makeindex: makeindex -o test_index.ind -t test_index.ilg test_index.idx
14
+ DEBUG test_index.tex: 01-02 Analyse log-file
15
+ DEBUG test_index.tex: 01-02 -> Info: input file test_index.idx. (2 entries accepted, 0 rejected)
16
+ DEBUG test_index.tex: Zip help files for later use (test_index.aux, test_index.out, test_index.idx, test_index.ind, test_index.toc, test_index.lof, test_index.lot, test_index.lox, test_index.nav)
17
+ DEBUG test_index.tex: Delete log files test_index.log, test_index.ilg, test_index.log, test_index.ilg, test_index.log, test_index.ilg
18
+ DEBUG test_index.tex: Delete helpfiles test_index.aux, test_index.out, test_index.idx, test_index.ind
@@ -0,0 +1,24 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_index.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_index.pdf
11
+ - 16 Pages
12
+ - 69KB
13
+ - 1 Error
14
+ Errors:
15
+ - Undefined control sequence. <argument> \@makeschapterhead || {\indexname }\ifx \index@prologue \@empty \els... ||\begin{theindex} (line 1)
16
+ Warnings:
17
+ - Command \markboth has changed.
18
+ - Command \markright has changed.
19
+
20
+ ==================================================
21
+ Makeindex<Index>
22
+ ==================================================
23
+ Information:
24
+ - input file test_index.idx. (2 entries accepted, 0 rejected)
@@ -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 (La)TeX<pdflatex>
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 (La)TeX<pdflatex>
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.lof, test_index2.lot, test_index2.lox, test_index2.nav, 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