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,12 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_rail.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_rail.pdf
11
+ - 1 Page
12
+ - 25KB
@@ -0,0 +1,13 @@
1
+ Start job chain for test_rail.tex
2
+ INFO test_rail.tex: Start job chain for test/test_rail.tex
3
+ INFO test_rail.tex: 01 Start TeX-run 1
4
+ INFO test_rail.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_rail.tex: 01-02 Call Rail
6
+ 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)
7
+ INFO test_rail.tex: 02 Start TeX-run 2
8
+ INFO test_rail.tex: 02-01 Call (La)TeX<pdflatex>
9
+ ---
10
+ - test_rail.pdf
11
+ - 1 Page
12
+ - 25KB
13
+ More Details see test_rail.tex.runtex_summary.txt or test_rail.log.zip
@@ -0,0 +1,9 @@
1
+ Start job chain for test_rail.tex
2
+ INFO test_rail.tex: Start job chain for test/test_rail.tex
3
+ INFO test_rail.tex: 01 Start TeX-run 1
4
+ INFO test_rail.tex: 01-01 Call (La)TeX<pdflatex>
5
+ ---
6
+ - test_rail.pdf
7
+ - 1 Page
8
+ - 25KB
9
+ More Details see test_rail.tex.runtex_summary.txt or test_rail.log.zip
@@ -0,0 +1,37 @@
1
+ INFO test_rail_error.tex: Start job chain for test/test_rail_error.tex
2
+ DEBUG test_rail_error.tex: Create log/help-zip test_rail_error.log.zip
3
+ INFO test_rail_error.tex: 01 Start TeX-run 1
4
+ INFO test_rail_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_rail_error.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_rail_error.tex
6
+ DEBUG test_rail_error.tex: 01-01 LaTeX finished
7
+ DEBUG test_rail_error.tex: 01-01 Analyse aux-file
8
+ DEBUG test_rail_error.tex: 01-01 Analyse log-file
9
+ DEBUG test_rail_error.tex: 01-01 Rerun necessary (Rail diagram 1 on line 11)
10
+ DEBUG test_rail_error.tex: 01 Rerun necessary (Rail diagram 1 on line 11 changed)
11
+ DEBUG test_rail_error.tex: 01-01 Add new step Rail
12
+ DEBUG test_rail_error.tex: 01-01 Rerun necessary (Rail diagram changed)
13
+ DEBUG test_rail_error.tex: 01 Rerun necessary (Rail diagram changed)
14
+ DEBUG test_rail_error.tex: 01-01 Add new step Rail
15
+ DEBUG test_rail_error.tex: 01-01 Aux.file changed -> New TeX run
16
+ DEBUG test_rail_error.tex: 01 Rerun necessary (Aux-File changed)
17
+ DEBUG test_rail_error.tex: 01-01 -> File: test_rail_error.pdf, 1 Page, 9KB
18
+ INFO test_rail_error.tex: 01-02 Call Rail
19
+ DEBUG test_rail_error.tex: 01-02 Call Rail.exe to create rail-diagramms.
20
+ ERROR test_rail_error.tex: 01-02 Error Rail: No rao-File created
21
+ ERROR test_rail_error.tex: 01-02 Rail: .rao-File is missing
22
+ DEBUG test_rail_error.tex: 01-02 -> Errors: No rao-File created, Line 1: syntax error in rule 'block', Rail: .rao-File is missing; Info: Rail version 1.1 #0 was called
23
+ INFO test_rail_error.tex: 01--- Rerun necessary (Rail diagram 1 on line 11 changed, Rail diagram changed, Aux-File changed)
24
+ INFO test_rail_error.tex: 02 Start TeX-run 2
25
+ INFO test_rail_error.tex: 02-01 Call (La)TeX<pdflatex>
26
+ DEBUG test_rail_error.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_rail_error.tex
27
+ DEBUG test_rail_error.tex: 02-01 LaTeX finished
28
+ DEBUG test_rail_error.tex: 02-01 Analyse aux-file
29
+ DEBUG test_rail_error.tex: 02-01 Analyse log-file
30
+ DEBUG test_rail_error.tex: 02-01 Rerun necessary (Rail diagram 1 on line 11)
31
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
32
+ DEBUG test_rail_error.tex: 02-01 Rerun necessary (Rail diagram changed)
33
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
34
+ DEBUG test_rail_error.tex: 02-01 -> File: test_rail_error.pdf, 1 Page, 9KB
35
+ DEBUG test_rail_error.tex: Zip help files for later use (test_rail_error.aux, test_rail_error.out, test_rail_error.toc, test_rail_error.lof, test_rail_error.lot, test_rail_error.lox, test_rail_error.nav, test_rail_error.rao, test_rail_error.rai)
36
+ DEBUG test_rail_error.tex: Delete log files test_rail_error.log, test_rail_error.log
37
+ DEBUG test_rail_error.tex: Delete helpfiles test_rail_error.aux, test_rail_error.rai
@@ -0,0 +1,35 @@
1
+ INFO test_rail_error.tex: Start job chain for test/test_rail_error.tex
2
+ DEBUG test_rail_error.tex: Re-Create log/help-zip test_rail_error.log.zip
3
+ INFO test_rail_error.tex: 01 Start TeX-run 1
4
+ INFO test_rail_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_rail_error.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_rail_error.tex
6
+ DEBUG test_rail_error.tex: 01-01 LaTeX finished
7
+ DEBUG test_rail_error.tex: 01-01 Analyse aux-file
8
+ DEBUG test_rail_error.tex: 01-01 Analyse log-file
9
+ DEBUG test_rail_error.tex: 01-01 Rerun necessary (Rail diagram 1 on line 11)
10
+ DEBUG test_rail_error.tex: 01 Rerun necessary (Rail diagram 1 on line 11 changed)
11
+ DEBUG test_rail_error.tex: 01-01 Add new step Rail
12
+ DEBUG test_rail_error.tex: 01-01 Rerun necessary (Rail diagram changed)
13
+ DEBUG test_rail_error.tex: 01 Rerun necessary (Rail diagram changed)
14
+ DEBUG test_rail_error.tex: 01-01 Add new step Rail
15
+ DEBUG test_rail_error.tex: 01-01 -> File: test_rail_error.pdf, 1 Page, 9KB
16
+ INFO test_rail_error.tex: 01-02 Call Rail
17
+ DEBUG test_rail_error.tex: 01-02 Call Rail.exe to create rail-diagramms.
18
+ ERROR test_rail_error.tex: 01-02 Error Rail: No rao-File created
19
+ ERROR test_rail_error.tex: 01-02 Rail: .rao-File is missing
20
+ DEBUG test_rail_error.tex: 01-02 -> Errors: No rao-File created, Line 1: syntax error in rule 'block', Rail: .rao-File is missing; Info: Rail version 1.1 #0 was called
21
+ INFO test_rail_error.tex: 01--- Rerun necessary (Rail diagram 1 on line 11 changed, Rail diagram changed)
22
+ INFO test_rail_error.tex: 02 Start TeX-run 2
23
+ INFO test_rail_error.tex: 02-01 Call (La)TeX<pdflatex>
24
+ DEBUG test_rail_error.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_rail_error.tex
25
+ DEBUG test_rail_error.tex: 02-01 LaTeX finished
26
+ DEBUG test_rail_error.tex: 02-01 Analyse aux-file
27
+ DEBUG test_rail_error.tex: 02-01 Analyse log-file
28
+ DEBUG test_rail_error.tex: 02-01 Rerun necessary (Rail diagram 1 on line 11)
29
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
30
+ DEBUG test_rail_error.tex: 02-01 Rerun necessary (Rail diagram changed)
31
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
32
+ DEBUG test_rail_error.tex: 02-01 -> File: test_rail_error.pdf, 1 Page, 9KB
33
+ DEBUG test_rail_error.tex: Zip help files for later use (test_rail_error.aux, test_rail_error.rai, test_rail_error.out, test_rail_error.toc, test_rail_error.lof, test_rail_error.lot, test_rail_error.lox, test_rail_error.nav, test_rail_error.rao)
34
+ DEBUG test_rail_error.tex: Delete log files test_rail_error.log, test_rail_error.log, test_rail_error.log, test_rail_error.log
35
+ DEBUG test_rail_error.tex: Delete helpfiles test_rail_error.aux, test_rail_error.rai
@@ -0,0 +1,18 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_rail_error.tex"
3
+ | 2000-01-01 12:00, TeX-run 2
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_rail_error.pdf
11
+ - 1 Page
12
+ - 9KB
13
+
14
+ ==================================================
15
+ !! Rerun-Stopp for rail
16
+ ==================================================
17
+ - Rail: No rao-file created
18
+ - Rail: syntax error in rule 'block' on line 1
@@ -0,0 +1,18 @@
1
+ Start job chain for test_rail_error.tex
2
+ INFO test_rail_error.tex: Start job chain for test/test_rail_error.tex
3
+ INFO test_rail_error.tex: 01 Start TeX-run 1
4
+ INFO test_rail_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_rail_error.tex: 01-02 Call Rail
6
+ ERROR test_rail_error.tex: 01-02 Error Rail: No rao-File created
7
+ ERROR test_rail_error.tex: 01-02 Rail: .rao-File is missing
8
+ INFO test_rail_error.tex: 01--- Rerun necessary (Rail diagram 1 on line 11 changed, Rail diagram changed, Aux-File changed)
9
+ INFO test_rail_error.tex: 02 Start TeX-run 2
10
+ INFO test_rail_error.tex: 02-01 Call (La)TeX<pdflatex>
11
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
12
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
13
+ ---
14
+ - test_rail_error.pdf
15
+ - 1 Page
16
+ - 9KB
17
+ !! Rerun-Stopp for rail!
18
+ More Details see test_rail_error.tex.runtex_summary.txt or test_rail_error.log.zip
@@ -0,0 +1,18 @@
1
+ Start job chain for test_rail_error.tex
2
+ INFO test_rail_error.tex: Start job chain for test/test_rail_error.tex
3
+ INFO test_rail_error.tex: 01 Start TeX-run 1
4
+ INFO test_rail_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_rail_error.tex: 01-02 Call Rail
6
+ ERROR test_rail_error.tex: 01-02 Error Rail: No rao-File created
7
+ ERROR test_rail_error.tex: 01-02 Rail: .rao-File is missing
8
+ INFO test_rail_error.tex: 01--- Rerun necessary (Rail diagram 1 on line 11 changed, Rail diagram changed)
9
+ INFO test_rail_error.tex: 02 Start TeX-run 2
10
+ INFO test_rail_error.tex: 02-01 Call (La)TeX<pdflatex>
11
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
12
+ WARN test_rail_error.tex: 02-01 Rail-Rerun blocked by previous error
13
+ ---
14
+ - test_rail_error.pdf
15
+ - 1 Page
16
+ - 9KB
17
+ !! Rerun-Stopp for rail!
18
+ More Details see test_rail_error.tex.runtex_summary.txt or test_rail_error.log.zip
@@ -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 (La)TeX<pdflatex>
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 SplitIndex<>
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 SplitIndex<>
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 (La)TeX<pdflatex>
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 SplitIndex<>
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 SplitIndex<>
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.lof, test_splitindex.lot, test_splitindex.lox, test_splitindex.nav, 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_splitindex.tex: Start job chain for test/test_splitindex.tex
2
+ DEBUG test_splitindex.tex: Re-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 (La)TeX<pdflatex>
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 SplitIndex<>
13
+ DEBUG test_splitindex.tex: 01-01 Replace Makeindex by Splitindex
14
+ DEBUG test_splitindex.tex: 01-01 -> File: test_splitindex.pdf, 4 Pages, 38KB
15
+ INFO test_splitindex.tex: 01-02 Call SplitIndex<>
16
+ DEBUG test_splitindex.tex: 01-02 Split index into sub indices (RunTeX::Splitindex)
17
+ DEBUG test_splitindex.tex: 01-02 Build Split-index aut
18
+ DEBUG test_splitindex.tex: 01-01 Add new step Makeindex<Sub-Index aut>
19
+ DEBUG test_splitindex.tex: 01-02 Build Split-index idx
20
+ DEBUG test_splitindex.tex: 01-01 Add new step Makeindex<Sub-Index idx>
21
+ DEBUG test_splitindex.tex: 01-02 -> Info: Build Split-index aut, Build Split-index idx
22
+ INFO test_splitindex.tex: 01-03 Call Makeindex<Sub-Index aut>
23
+ DEBUG test_splitindex.tex: 01-03 Start Makeindex: makeindex -o test_splitindex-aut.ind -t test_splitindex-aut.ilg test_splitindex-aut.idx
24
+ DEBUG test_splitindex.tex: 01-03 Analyse log-file
25
+ DEBUG test_splitindex.tex: 01-03 -> Info: input file test_splitindex-aut.idx. (2 entries accepted, 0 rejected)
26
+ INFO test_splitindex.tex: 01-04 Call Makeindex<Sub-Index idx>
27
+ DEBUG test_splitindex.tex: 01-04 Start Makeindex: makeindex -o test_splitindex-idx.ind -t test_splitindex-idx.ilg test_splitindex-idx.idx
28
+ DEBUG test_splitindex.tex: 01-04 Analyse log-file
29
+ DEBUG test_splitindex.tex: 01-04 -> Info: input file test_splitindex-idx.idx. (2 entries accepted, 0 rejected)
30
+ DEBUG test_splitindex.tex: Zip help files for later use (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, test_splitindex.toc, test_splitindex.lof, test_splitindex.lot, test_splitindex.lox, test_splitindex.nav)
31
+ 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, test_splitindex.log, test_splitindex-aut.ilg, test_splitindex-idx.ilg
32
+ 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,31 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_splitindex.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_splitindex.pdf
11
+ - 4 Pages
12
+ - 38KB
13
+
14
+ ==================================================
15
+ SplitIndex<>
16
+ ==================================================
17
+ Information:
18
+ - Build Split-index aut
19
+ - Build Split-index idx
20
+
21
+ ==================================================
22
+ Makeindex<Sub-Index aut>
23
+ ==================================================
24
+ Information:
25
+ - input file test_splitindex-aut.idx. (2 entries accepted, 0 rejected)
26
+
27
+ ==================================================
28
+ Makeindex<Sub-Index idx>
29
+ ==================================================
30
+ Information:
31
+ - input file test_splitindex-idx.idx. (2 entries accepted, 0 rejected)
@@ -0,0 +1,21 @@
1
+ Start job chain for test_splitindex.tex
2
+ INFO test_splitindex.tex: Start job chain for test/test_splitindex.tex
3
+ INFO test_splitindex.tex: 01 Start TeX-run 1
4
+ INFO test_splitindex.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_splitindex.tex: 01-02 Call SplitIndex<>
6
+ INFO test_splitindex.tex: 01-03 Call Makeindex<Sub-Index aut>
7
+ INFO test_splitindex.tex: 01-04 Call Makeindex<Sub-Index idx>
8
+ INFO test_splitindex.tex: 01--- Rerun necessary (Aux-File changed, Index test_splitindex-aut.ind changed, Index test_splitindex-idx.ind changed)
9
+ INFO test_splitindex.tex: 02 Start TeX-run 2
10
+ INFO test_splitindex.tex: 02-01 Call (La)TeX<pdflatex>
11
+ INFO test_splitindex.tex: 02-02 Call SplitIndex<>
12
+ INFO test_splitindex.tex: 02-03 Call Makeindex<Sub-Index aut>
13
+ INFO test_splitindex.tex: 02-04 Call Makeindex<Sub-Index idx>
14
+ ---
15
+ - test_splitindex.pdf
16
+ - 4 Pages
17
+ - 38KB
18
+ SplitIndex<>: Information: 2;
19
+ Makeindex<Sub-Index aut>: Information: 1;
20
+ Makeindex<Sub-Index idx>: Information: 1;
21
+ More Details see test_splitindex.tex.runtex_summary.txt or test_splitindex.log.zip
@@ -0,0 +1,15 @@
1
+ Start job chain for test_splitindex.tex
2
+ INFO test_splitindex.tex: Start job chain for test/test_splitindex.tex
3
+ INFO test_splitindex.tex: 01 Start TeX-run 1
4
+ INFO test_splitindex.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_splitindex.tex: 01-02 Call SplitIndex<>
6
+ INFO test_splitindex.tex: 01-03 Call Makeindex<Sub-Index aut>
7
+ INFO test_splitindex.tex: 01-04 Call Makeindex<Sub-Index idx>
8
+ ---
9
+ - test_splitindex.pdf
10
+ - 4 Pages
11
+ - 38KB
12
+ SplitIndex<>: Information: 2;
13
+ Makeindex<Sub-Index aut>: Information: 1;
14
+ Makeindex<Sub-Index idx>: Information: 1;
15
+ More Details see test_splitindex.tex.runtex_summary.txt or test_splitindex.log.zip
@@ -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 (La)TeX<pdflatex>
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 (La)TeX<pdflatex>
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 (La)TeX<pdflatex>
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.lof, test_test.lot, test_test.lox, test_test.nav)
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,12 @@
1
+ INFO test_test.tex: Start job chain for test/test_test.tex
2
+ DEBUG test_test.tex: Re-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 (La)TeX<pdflatex>
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 -> File: test_test.pdf, 15 Pages, 72KB
10
+ DEBUG test_test.tex: Zip help files for later use (test_test.aux, test_test.out, test_test.toc, test_test.lof, test_test.lot, test_test.lox, test_test.nav)
11
+ DEBUG test_test.tex: Delete log files test_test.log, test_test.log, test_test.log, test_test.log
12
+ DEBUG test_test.tex: Delete helpfiles test_test.aux, test_test.out, test_test.toc
@@ -0,0 +1,12 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_test.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_test.pdf
11
+ - 15 Pages
12
+ - 72KB
@@ -0,0 +1,15 @@
1
+ Start job chain for test_test.tex
2
+ INFO test_test.tex: Start job chain for test/test_test.tex
3
+ INFO test_test.tex: 01 Start TeX-run 1
4
+ INFO test_test.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_test.tex: 01--- Rerun necessary (Aux-File changed)
6
+ INFO test_test.tex: 02 Start TeX-run 2
7
+ INFO test_test.tex: 02-01 Call (La)TeX<pdflatex>
8
+ INFO test_test.tex: 02--- Rerun necessary (Aux-File changed)
9
+ INFO test_test.tex: 03 Start TeX-run 3
10
+ INFO test_test.tex: 03-01 Call (La)TeX<pdflatex>
11
+ ---
12
+ - test_test.pdf
13
+ - 15 Pages
14
+ - 72KB
15
+ More Details see test_test.tex.runtex_summary.txt or test_test.log.zip
@@ -0,0 +1,9 @@
1
+ Start job chain for test_test.tex
2
+ INFO test_test.tex: Start job chain for test/test_test.tex
3
+ INFO test_test.tex: 01 Start TeX-run 1
4
+ INFO test_test.tex: 01-01 Call (La)TeX<pdflatex>
5
+ ---
6
+ - test_test.pdf
7
+ - 15 Pages
8
+ - 72KB
9
+ More Details see test_test.tex.runtex_summary.txt or test_test.log.zip
@@ -0,0 +1,31 @@
1
+ INFO test_bibliography.tex: Start job chain for test/test_bibliography.tex
2
+ DEBUG test_bibliography.tex: Create log/help-zip test_bibliography.log.zip
3
+ INFO test_bibliography.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography.tex: 01-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
5
+ DEBUG test_bibliography.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography.tex
6
+ DEBUG test_bibliography.tex: 01-01 LaTeX finished
7
+ DEBUG test_bibliography.tex: 01-01 Analyse aux-file
8
+ DEBUG test_bibliography.tex: 01-01 Add new step RunTeX::BibTeX<{:target=>"test_bibliography.bbl", :log=>"test_bibliography.blg", :source=>"test_bibliography.aux"}>
9
+ DEBUG test_bibliography.tex: 01-01 Analyse log-file
10
+ DEBUG test_bibliography.tex: 01-01 Aux.file changed -> New TeX run
11
+ DEBUG test_bibliography.tex: 01 Rerun necessary (Aux-File changed)
12
+ DEBUG test_bibliography.tex: 01-01 -> File: test_bibliography.pdf, 1 Page, 22KB; Warnings: Empty bibliography on input line 22., There were undefined references., biblatex: Please (re)run BibTeX on the file(s):; Empty bibliography on input line 22.There were undefined references.biblatex: Please (re)run BibTeX on the file(s):: Empty bibliography on input line 22., There were undefined references., biblatex: Please (re)run BibTeX on the file(s):; 'ABAP-OO2001' on page 1 undefined on input line 18.: 'ABAP-OO2001' on page 1 undefined on input line 18.
13
+ INFO test_bibliography.tex: 01-02 Call RunTeX::BibTeX<{:target=>"test_bibliography.bbl", :log=>"test_bibliography.blg", :source=>"test_bibliography.aux"}>
14
+ DEBUG test_bibliography.tex: 01-02 Call bibtex test_bibliography.aux
15
+ DEBUG test_bibliography.tex: 01 Rerun necessary (Bibliography changed)
16
+ DEBUG test_bibliography.tex: 01-02 -> Warnings: Invalid format of field 'month' in entry 'ABAP-OO2001'; Info: Database file test_bibliography-blx.bib used, Database file FestoShort.bib used, Database file FestoGenerated.bib used, Database file FestoLiteratur.bib.bib used; Invalid format of field 'month' in entry 'ABAP-OO2001': Invalid format of field 'month' in entry 'ABAP-OO2001'
17
+ INFO test_bibliography.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
18
+ INFO test_bibliography.tex: 02 Start TeX-run 2
19
+ INFO test_bibliography.tex: 02-01 Call RunTeX::LaTeX<{:format=>"pdflatex", :overfull=>100, :underfull=>9000}>
20
+ DEBUG test_bibliography.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography.tex
21
+ DEBUG test_bibliography.tex: 02-01 LaTeX finished
22
+ DEBUG test_bibliography.tex: 02-01 Analyse aux-file
23
+ DEBUG test_bibliography.tex: 02-01 Add new step RunTeX::BibTeX<{:target=>"test_bibliography.bbl", :log=>"test_bibliography.blg", :source=>"test_bibliography.aux"}>
24
+ DEBUG test_bibliography.tex: 02-01 Analyse log-file
25
+ DEBUG test_bibliography.tex: 02-01 -> File: test_bibliography.pdf, 1 Page, 32KB; Warnings: biblatex: BibTeX reported the following issues; biblatex: BibTeX reported the following issues: biblatex: BibTeX reported the following issues
26
+ INFO test_bibliography.tex: 02-02 Call RunTeX::BibTeX<{:target=>"test_bibliography.bbl", :log=>"test_bibliography.blg", :source=>"test_bibliography.aux"}>
27
+ DEBUG test_bibliography.tex: 02-02 Call bibtex test_bibliography.aux
28
+ DEBUG test_bibliography.tex: 02-02 -> Warnings: Invalid format of field 'month' in entry 'ABAP-OO2001'; Info: Database file test_bibliography-blx.bib used, Database file FestoShort.bib used, Database file FestoGenerated.bib used, Database file FestoLiteratur.bib.bib used; Invalid format of field 'month' in entry 'ABAP-OO2001': Invalid format of field 'month' in entry 'ABAP-OO2001'
29
+ DEBUG test_bibliography.tex: Zip help files for later use (test_bibliography.aux, test_bibliography.out, test_bibliography.toc, test_bibliography.lox, test_bibliography.bbl, test_bibliography-blx.bib)
30
+ DEBUG test_bibliography.tex: Delete log files test_bibliography.log, test_bibliography.blg, test_bibliography.log, test_bibliography.blg
31
+ DEBUG test_bibliography.tex: Delete helpfiles test_bibliography.aux, test_bibliography.out, test_bibliography.bbl, test_bibliography-blx.bib