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
data/readme ADDED
@@ -0,0 +1,73 @@
1
+ runtex is a ruby script which allows you to translate a (La)TeX
2
+ file. The program runs LaTeX as often as necessary, it checks for
3
+ the need to start BibTeX, Makeindex, Rail...
4
+
5
+ After finishing the script you get an overview on all errors (from each program the
6
+ script used).
7
+
8
+ It is possible to define by switches to define the way of
9
+ processing:
10
+ - LaTeX
11
+ - pdfLaTeX
12
+ - XeLaTeX
13
+ - LuaLaTeX
14
+
15
+ There are different reasons for additional tex runs.
16
+ Beside the 'normal' LaTeX reasons for multiple TeX-calls,
17
+ the following packages from CTAN are supported by runtex:
18
+ - longtable: Allow tables to flow over page boundaries.
19
+ http://www.ctan.org/tex-archive/help/Catalogue/entries/longtable.html
20
+ http://www.ctan.org/cgi-bin/ctanPackageInformation.py?id=longtable
21
+ - glossaries: Create glossaries and lists of acronyms. (uses makeindex)
22
+ http://www.ctan.org/tex-archive/macros/latex/contrib/glossaries/
23
+ - gloss: Create glossaries using BibTeX.
24
+ http://www.ctan.org/tex-archive/macros/latex/contrib/gloss/
25
+ - splitindex: Unlimited number of indexes
26
+ http://www.ctan.org/tex-archive/macros/latex/contrib/splitindex/
27
+ (runtex replaces the other splitindex-programms like splitindex.pl, splitindex.jar, splitindex.exe, splitindex.tex).
28
+ - index: Extended index for LaTeX including multiple indexes.
29
+ http://www.ctan.org/tex-archive/macros/latex/contrib/index/
30
+ (works proper only in addition with index2.sty)
31
+ - rail: Syntax specification in EBNF.
32
+ http://www.ctan.org/tex-archive/support/rail/
33
+
34
+
35
+ Bugs, Wishes and new Features
36
+
37
+ This program is tested on a WIN2K System with TeXLive 2008 and ruby 1.8.6.
38
+ The results of the unit test depends on your TeX-installation.
39
+ No panic if there are errors!
40
+
41
+ If it does not work on your system:
42
+ 1) Please check the configuration runtex_pathes.yaml.
43
+ (where are the programs like makeindex, bibtex, rail...)
44
+ Perhaps you must adapt it.
45
+
46
+ There is no configuration for different systems.
47
+ If you need another configuration, send me please your
48
+ adaption, I will think about different configurations.
49
+
50
+ 2) It does not work with Style X.
51
+ Please inform me about it, send a minimal example, where the
52
+ script does not enough runs.
53
+
54
+ 3) The Error/Warning X is not reported/detected
55
+ Please send a minimal example an the log-file
56
+
57
+
58
+
59
+ The Files of this contribution:
60
+ runtex-0.2.1.gem:
61
+ Gem on Rubyforge
62
+
63
+ runtex-0.2.1_CTAN.zip:
64
+ - runtex.exe: The 'compiled' programm
65
+ start runtex.exe -h for the switches
66
+ - runtex-0.2.1.gem - Also available at Rubyforge
67
+ - index2.sty: Minor modification of index.sty
68
+
69
+ More details:
70
+ http://ruby.lickert.net/runtex
71
+ http://rubyforge.org/projects/runtex/
72
+
73
+ knut@lickert.net
@@ -0,0 +1,31 @@
1
+ INFO test_bibliography_babelbib.tex: Start job chain for test/test_bibliography_babelbib.tex
2
+ DEBUG test_bibliography_babelbib.tex: Create log/help-zip test_bibliography_babelbib.log.zip
3
+ INFO test_bibliography_babelbib.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_babelbib.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_bibliography_babelbib.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_babelbib.tex
6
+ DEBUG test_bibliography_babelbib.tex: 01-01 LaTeX finished
7
+ DEBUG test_bibliography_babelbib.tex: 01-01 Analyse aux-file
8
+ DEBUG test_bibliography_babelbib.tex: 01-01 Add new step BibTeX<test_bibliography_babelbib.bbl>
9
+ DEBUG test_bibliography_babelbib.tex: 01-01 Analyse log-file
10
+ DEBUG test_bibliography_babelbib.tex: 01-01 Aux.file changed -> New TeX run
11
+ DEBUG test_bibliography_babelbib.tex: 01 Rerun necessary (Aux-File changed)
12
+ DEBUG test_bibliography_babelbib.tex: 01-01 -> File: test_bibliography_babelbib.pdf, 1 Page, 23KB; 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):; 'goossens93' on page 1 undefined on input line 18.: 'goossens93' on page 1 undefined on input line 18.
13
+ INFO test_bibliography_babelbib.tex: 01-02 Call BibTeX<test_bibliography_babelbib.bbl>
14
+ DEBUG test_bibliography_babelbib.tex: 01-02 Call bibtex test_bibliography_babelbib.aux
15
+ DEBUG test_bibliography_babelbib.tex: 01 Rerun necessary (Bibliography changed)
16
+ DEBUG test_bibliography_babelbib.tex: 01-02 -> Info: Database file test_bibliography_babelbib-blx.bib used, Database file test_bibliography.bib used
17
+ INFO test_bibliography_babelbib.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
18
+ INFO test_bibliography_babelbib.tex: 02 Start TeX-run 2
19
+ INFO test_bibliography_babelbib.tex: 02-01 Call (La)TeX<pdflatex>
20
+ DEBUG test_bibliography_babelbib.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_babelbib.tex
21
+ DEBUG test_bibliography_babelbib.tex: 02-01 LaTeX finished
22
+ DEBUG test_bibliography_babelbib.tex: 02-01 Analyse aux-file
23
+ DEBUG test_bibliography_babelbib.tex: 02-01 Add new step BibTeX<test_bibliography_babelbib.bbl>
24
+ DEBUG test_bibliography_babelbib.tex: 02-01 Analyse log-file
25
+ DEBUG test_bibliography_babelbib.tex: 02-01 -> File: test_bibliography_babelbib.pdf, 1 Page, 25KB
26
+ INFO test_bibliography_babelbib.tex: 02-02 Call BibTeX<test_bibliography_babelbib.bbl>
27
+ DEBUG test_bibliography_babelbib.tex: 02-02 Call bibtex test_bibliography_babelbib.aux
28
+ DEBUG test_bibliography_babelbib.tex: 02-02 -> Info: Database file test_bibliography_babelbib-blx.bib used, Database file test_bibliography.bib used
29
+ DEBUG test_bibliography_babelbib.tex: Zip help files for later use (test_bibliography_babelbib.aux, test_bibliography_babelbib.out, test_bibliography_babelbib.toc, test_bibliography_babelbib.lof, test_bibliography_babelbib.lot, test_bibliography_babelbib.lox, test_bibliography_babelbib.nav, test_bibliography_babelbib.bbl, test_bibliography_babelbib-blx.bib)
30
+ DEBUG test_bibliography_babelbib.tex: Delete log files test_bibliography_babelbib.log, test_bibliography_babelbib.blg, test_bibliography_babelbib.log, test_bibliography_babelbib.blg
31
+ DEBUG test_bibliography_babelbib.tex: Delete helpfiles test_bibliography_babelbib.aux, test_bibliography_babelbib.out, test_bibliography_babelbib.bbl, test_bibliography_babelbib-blx.bib
@@ -0,0 +1,16 @@
1
+ INFO test_bibliography_babelbib.tex: Start job chain for test/test_bibliography_babelbib.tex
2
+ DEBUG test_bibliography_babelbib.tex: Re-Create log/help-zip test_bibliography_babelbib.log.zip
3
+ INFO test_bibliography_babelbib.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_babelbib.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_bibliography_babelbib.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_babelbib.tex
6
+ DEBUG test_bibliography_babelbib.tex: 01-01 LaTeX finished
7
+ DEBUG test_bibliography_babelbib.tex: 01-01 Analyse aux-file
8
+ DEBUG test_bibliography_babelbib.tex: 01-01 Add new step BibTeX<test_bibliography_babelbib.bbl>
9
+ DEBUG test_bibliography_babelbib.tex: 01-01 Analyse log-file
10
+ DEBUG test_bibliography_babelbib.tex: 01-01 -> File: test_bibliography_babelbib.pdf, 1 Page, 25KB
11
+ INFO test_bibliography_babelbib.tex: 01-02 Call BibTeX<test_bibliography_babelbib.bbl>
12
+ DEBUG test_bibliography_babelbib.tex: 01-02 Call bibtex test_bibliography_babelbib.aux
13
+ DEBUG test_bibliography_babelbib.tex: 01-02 -> Info: Database file test_bibliography_babelbib-blx.bib used, Database file test_bibliography.bib used
14
+ DEBUG test_bibliography_babelbib.tex: Zip help files for later use (test_bibliography_babelbib.aux, test_bibliography_babelbib.out, test_bibliography_babelbib.bbl, test_bibliography_babelbib-blx.bib, test_bibliography_babelbib.toc, test_bibliography_babelbib.lof, test_bibliography_babelbib.lot, test_bibliography_babelbib.lox, test_bibliography_babelbib.nav)
15
+ DEBUG test_bibliography_babelbib.tex: Delete log files test_bibliography_babelbib.log, test_bibliography_babelbib.blg, test_bibliography_babelbib.log, test_bibliography_babelbib.blg, test_bibliography_babelbib.log, test_bibliography_babelbib.blg
16
+ DEBUG test_bibliography_babelbib.tex: Delete helpfiles test_bibliography_babelbib.aux, test_bibliography_babelbib.out, test_bibliography_babelbib.bbl, test_bibliography_babelbib-blx.bib
@@ -0,0 +1,19 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_bibliography_babelbib.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_bibliography_babelbib.pdf
11
+ - 1 Page
12
+ - 25KB
13
+
14
+ ==================================================
15
+ BibTeX<test_bibliography_babelbib.bbl>
16
+ ==================================================
17
+ Information:
18
+ - Database file test_bibliography_babelbib-blx.bib used
19
+ - Database file test_bibliography.bib used
@@ -0,0 +1,15 @@
1
+ Start job chain for test_bibliography_babelbib.tex
2
+ INFO test_bibliography_babelbib.tex: Start job chain for test/test_bibliography_babelbib.tex
3
+ INFO test_bibliography_babelbib.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_babelbib.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_bibliography_babelbib.tex: 01-02 Call BibTeX<test_bibliography_babelbib.bbl>
6
+ INFO test_bibliography_babelbib.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
7
+ INFO test_bibliography_babelbib.tex: 02 Start TeX-run 2
8
+ INFO test_bibliography_babelbib.tex: 02-01 Call (La)TeX<pdflatex>
9
+ INFO test_bibliography_babelbib.tex: 02-02 Call BibTeX<test_bibliography_babelbib.bbl>
10
+ ---
11
+ - test_bibliography_babelbib.pdf
12
+ - 1 Page
13
+ - 25KB
14
+ BibTeX<test_bibliography_babelbib.bbl>: Information: 2;
15
+ More Details see test_bibliography_babelbib.tex.runtex_summary.txt or test_bibliography_babelbib.log.zip
@@ -0,0 +1,11 @@
1
+ Start job chain for test_bibliography_babelbib.tex
2
+ INFO test_bibliography_babelbib.tex: Start job chain for test/test_bibliography_babelbib.tex
3
+ INFO test_bibliography_babelbib.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_babelbib.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_bibliography_babelbib.tex: 01-02 Call BibTeX<test_bibliography_babelbib.bbl>
6
+ ---
7
+ - test_bibliography_babelbib.pdf
8
+ - 1 Page
9
+ - 25KB
10
+ BibTeX<test_bibliography_babelbib.bbl>: Information: 2;
11
+ More Details see test_bibliography_babelbib.tex.runtex_summary.txt or test_bibliography_babelbib.log.zip
@@ -0,0 +1,45 @@
1
+ INFO test_bibliography_plain.tex: Start job chain for test/test_bibliography_plain.tex
2
+ DEBUG test_bibliography_plain.tex: Create log/help-zip test_bibliography_plain.log.zip
3
+ INFO test_bibliography_plain.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_plain.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_bibliography_plain.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_plain.tex
6
+ DEBUG test_bibliography_plain.tex: 01-01 LaTeX finished
7
+ DEBUG test_bibliography_plain.tex: 01-01 Analyse aux-file
8
+ DEBUG test_bibliography_plain.tex: 01-01 Add new step BibTeX<test_bibliography_plain.bbl>
9
+ DEBUG test_bibliography_plain.tex: 01-01 Analyse log-file
10
+ DEBUG test_bibliography_plain.tex: 01-01 Aux.file changed -> New TeX run
11
+ DEBUG test_bibliography_plain.tex: 01 Rerun necessary (Aux-File changed)
12
+ DEBUG test_bibliography_plain.tex: 01-01 -> File: test_bibliography_plain.pdf, 1 Page, 18KB; Warnings: There were undefined references.; There were undefined references.: There were undefined references.; `goossens93' on page 1 undefined on input line 10.: `goossens93' on page 1 undefined on input line 10.
13
+ INFO test_bibliography_plain.tex: 01-02 Call BibTeX<test_bibliography_plain.bbl>
14
+ DEBUG test_bibliography_plain.tex: 01-02 Call bibtex test_bibliography_plain.aux
15
+ DEBUG test_bibliography_plain.tex: 01 Rerun necessary (Bibliography changed)
16
+ DEBUG test_bibliography_plain.tex: 01-02 -> Info: Database file test_bibliography.bib used
17
+ INFO test_bibliography_plain.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
18
+ INFO test_bibliography_plain.tex: 02 Start TeX-run 2
19
+ INFO test_bibliography_plain.tex: 02-01 Call (La)TeX<pdflatex>
20
+ DEBUG test_bibliography_plain.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_plain.tex
21
+ DEBUG test_bibliography_plain.tex: 02-01 LaTeX finished
22
+ DEBUG test_bibliography_plain.tex: 02-01 Analyse aux-file
23
+ DEBUG test_bibliography_plain.tex: 02-01 Add new step BibTeX<test_bibliography_plain.bbl>
24
+ DEBUG test_bibliography_plain.tex: 02-01 Analyse log-file
25
+ DEBUG test_bibliography_plain.tex: 02-01 Aux.file changed -> New TeX run
26
+ DEBUG test_bibliography_plain.tex: 02 Rerun necessary (Aux-File changed)
27
+ DEBUG test_bibliography_plain.tex: 02-01 -> File: test_bibliography_plain.pdf, 1 Page, 28KB; Warnings: There were undefined references., Label(s) may have changed. Rerun to get cross-references right.; There were undefined references.Label(s) may have changed. Rerun to get cross-references right.: There were undefined references., Label(s) may have changed. Rerun to get cross-references right.; `goossens93' on page 1 undefined on input line 10.: `goossens93' on page 1 undefined on input line 10.
28
+ INFO test_bibliography_plain.tex: 02-02 Call BibTeX<test_bibliography_plain.bbl>
29
+ DEBUG test_bibliography_plain.tex: 02-02 Call bibtex test_bibliography_plain.aux
30
+ DEBUG test_bibliography_plain.tex: 02-02 -> Info: Database file test_bibliography.bib used
31
+ INFO test_bibliography_plain.tex: 02--- Rerun necessary (Aux-File changed)
32
+ INFO test_bibliography_plain.tex: 03 Start TeX-run 3
33
+ INFO test_bibliography_plain.tex: 03-01 Call (La)TeX<pdflatex>
34
+ DEBUG test_bibliography_plain.tex: 03-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_plain.tex
35
+ DEBUG test_bibliography_plain.tex: 03-01 LaTeX finished
36
+ DEBUG test_bibliography_plain.tex: 03-01 Analyse aux-file
37
+ DEBUG test_bibliography_plain.tex: 03-01 Add new step BibTeX<test_bibliography_plain.bbl>
38
+ DEBUG test_bibliography_plain.tex: 03-01 Analyse log-file
39
+ DEBUG test_bibliography_plain.tex: 03-01 -> File: test_bibliography_plain.pdf, 1 Page, 26KB
40
+ INFO test_bibliography_plain.tex: 03-02 Call BibTeX<test_bibliography_plain.bbl>
41
+ DEBUG test_bibliography_plain.tex: 03-02 Call bibtex test_bibliography_plain.aux
42
+ DEBUG test_bibliography_plain.tex: 03-02 -> Info: Database file test_bibliography.bib used
43
+ DEBUG test_bibliography_plain.tex: Zip help files for later use (test_bibliography_plain.aux, test_bibliography_plain.out, test_bibliography_plain.toc, test_bibliography_plain.lof, test_bibliography_plain.lot, test_bibliography_plain.lox, test_bibliography_plain.nav, test_bibliography_plain.bbl, test_bibliography_plain-blx.bib)
44
+ DEBUG test_bibliography_plain.tex: Delete log files test_bibliography_plain.log, test_bibliography_plain.blg, test_bibliography_plain.log, test_bibliography_plain.blg, test_bibliography_plain.log, test_bibliography_plain.blg
45
+ DEBUG test_bibliography_plain.tex: Delete helpfiles test_bibliography_plain.aux, test_bibliography_plain.out, test_bibliography_plain.bbl
@@ -0,0 +1,16 @@
1
+ INFO test_bibliography_plain.tex: Start job chain for test/test_bibliography_plain.tex
2
+ DEBUG test_bibliography_plain.tex: Re-Create log/help-zip test_bibliography_plain.log.zip
3
+ INFO test_bibliography_plain.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_plain.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_bibliography_plain.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_bibliography_plain.tex
6
+ DEBUG test_bibliography_plain.tex: 01-01 LaTeX finished
7
+ DEBUG test_bibliography_plain.tex: 01-01 Analyse aux-file
8
+ DEBUG test_bibliography_plain.tex: 01-01 Add new step BibTeX<test_bibliography_plain.bbl>
9
+ DEBUG test_bibliography_plain.tex: 01-01 Analyse log-file
10
+ DEBUG test_bibliography_plain.tex: 01-01 -> File: test_bibliography_plain.pdf, 1 Page, 26KB
11
+ INFO test_bibliography_plain.tex: 01-02 Call BibTeX<test_bibliography_plain.bbl>
12
+ DEBUG test_bibliography_plain.tex: 01-02 Call bibtex test_bibliography_plain.aux
13
+ DEBUG test_bibliography_plain.tex: 01-02 -> Info: Database file test_bibliography.bib used
14
+ DEBUG test_bibliography_plain.tex: Zip help files for later use (test_bibliography_plain.aux, test_bibliography_plain.out, test_bibliography_plain.bbl, test_bibliography_plain.toc, test_bibliography_plain.lof, test_bibliography_plain.lot, test_bibliography_plain.lox, test_bibliography_plain.nav, test_bibliography_plain-blx.bib)
15
+ DEBUG test_bibliography_plain.tex: Delete log files test_bibliography_plain.log, test_bibliography_plain.blg, test_bibliography_plain.log, test_bibliography_plain.blg, test_bibliography_plain.log, test_bibliography_plain.blg, test_bibliography_plain.log, test_bibliography_plain.blg
16
+ DEBUG test_bibliography_plain.tex: Delete helpfiles test_bibliography_plain.aux, test_bibliography_plain.out, test_bibliography_plain.bbl
@@ -0,0 +1,18 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_bibliography_plain.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_bibliography_plain.pdf
11
+ - 1 Page
12
+ - 26KB
13
+
14
+ ==================================================
15
+ BibTeX<test_bibliography_plain.bbl>
16
+ ==================================================
17
+ Information:
18
+ - Database file test_bibliography.bib used
@@ -0,0 +1,19 @@
1
+ Start job chain for test_bibliography_plain.tex
2
+ INFO test_bibliography_plain.tex: Start job chain for test/test_bibliography_plain.tex
3
+ INFO test_bibliography_plain.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_plain.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_bibliography_plain.tex: 01-02 Call BibTeX<test_bibliography_plain.bbl>
6
+ INFO test_bibliography_plain.tex: 01--- Rerun necessary (Aux-File changed, Bibliography changed)
7
+ INFO test_bibliography_plain.tex: 02 Start TeX-run 2
8
+ INFO test_bibliography_plain.tex: 02-01 Call (La)TeX<pdflatex>
9
+ INFO test_bibliography_plain.tex: 02-02 Call BibTeX<test_bibliography_plain.bbl>
10
+ INFO test_bibliography_plain.tex: 02--- Rerun necessary (Aux-File changed)
11
+ INFO test_bibliography_plain.tex: 03 Start TeX-run 3
12
+ INFO test_bibliography_plain.tex: 03-01 Call (La)TeX<pdflatex>
13
+ INFO test_bibliography_plain.tex: 03-02 Call BibTeX<test_bibliography_plain.bbl>
14
+ ---
15
+ - test_bibliography_plain.pdf
16
+ - 1 Page
17
+ - 26KB
18
+ BibTeX<test_bibliography_plain.bbl>: Information: 1;
19
+ More Details see test_bibliography_plain.tex.runtex_summary.txt or test_bibliography_plain.log.zip
@@ -0,0 +1,11 @@
1
+ Start job chain for test_bibliography_plain.tex
2
+ INFO test_bibliography_plain.tex: Start job chain for test/test_bibliography_plain.tex
3
+ INFO test_bibliography_plain.tex: 01 Start TeX-run 1
4
+ INFO test_bibliography_plain.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_bibliography_plain.tex: 01-02 Call BibTeX<test_bibliography_plain.bbl>
6
+ ---
7
+ - test_bibliography_plain.pdf
8
+ - 1 Page
9
+ - 26KB
10
+ BibTeX<test_bibliography_plain.bbl>: Information: 1;
11
+ More Details see test_bibliography_plain.tex.runtex_summary.txt or test_bibliography_plain.log.zip
@@ -0,0 +1,22 @@
1
+ INFO test_error.tex: Start job chain for test/test_error.tex
2
+ DEBUG test_error.tex: Create log/help-zip test_error.log.zip
3
+ INFO test_error.tex: 01 Start TeX-run 1
4
+ INFO test_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_error.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_error.tex
6
+ DEBUG test_error.tex: 01-01 LaTeX finished
7
+ DEBUG test_error.tex: 01-01 Analyse aux-file
8
+ DEBUG test_error.tex: 01-01 Analyse log-file
9
+ DEBUG test_error.tex: 01-01 Aux.file changed -> New TeX run
10
+ DEBUG test_error.tex: 01 Rerun necessary (Aux-File changed)
11
+ DEBUG test_error.tex: 01-01 -> File: test_error.pdf, 1 Page, 15KB, 1 Error; Errors: Undefined control sequence.\unbekanntesMakro (line 11)
12
+ INFO test_error.tex: 01--- Rerun necessary (Aux-File changed)
13
+ INFO test_error.tex: 02 Start TeX-run 2
14
+ INFO test_error.tex: 02-01 Call (La)TeX<pdflatex>
15
+ DEBUG test_error.tex: 02-01 Start LaTeX pdflatex -interaction=batchmode test_error.tex
16
+ DEBUG test_error.tex: 02-01 LaTeX finished
17
+ DEBUG test_error.tex: 02-01 Analyse aux-file
18
+ DEBUG test_error.tex: 02-01 Analyse log-file
19
+ DEBUG test_error.tex: 02-01 -> File: test_error.pdf, 1 Page, 15KB, 1 Error; Errors: Undefined control sequence.\unbekanntesMakro (line 11)
20
+ DEBUG test_error.tex: Zip help files for later use (test_error.aux, test_error.out, test_error.toc, test_error.lof, test_error.lot, test_error.lox, test_error.nav)
21
+ DEBUG test_error.tex: Delete log files test_error.log, test_error.log
22
+ DEBUG test_error.tex: Delete helpfiles test_error.aux, test_error.out
@@ -0,0 +1,12 @@
1
+ INFO test_error.tex: Start job chain for test/test_error.tex
2
+ DEBUG test_error.tex: Re-Create log/help-zip test_error.log.zip
3
+ INFO test_error.tex: 01 Start TeX-run 1
4
+ INFO test_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ DEBUG test_error.tex: 01-01 Start LaTeX pdflatex -interaction=batchmode test_error.tex
6
+ DEBUG test_error.tex: 01-01 LaTeX finished
7
+ DEBUG test_error.tex: 01-01 Analyse aux-file
8
+ DEBUG test_error.tex: 01-01 Analyse log-file
9
+ DEBUG test_error.tex: 01-01 -> File: test_error.pdf, 1 Page, 15KB, 1 Error; Errors: Undefined control sequence.\unbekanntesMakro (line 11)
10
+ DEBUG test_error.tex: Zip help files for later use (test_error.aux, test_error.out, test_error.toc, test_error.lof, test_error.lot, test_error.lox, test_error.nav)
11
+ DEBUG test_error.tex: Delete log files test_error.log, test_error.log, test_error.log
12
+ DEBUG test_error.tex: Delete helpfiles test_error.aux, test_error.out
@@ -0,0 +1,15 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_error.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_error.pdf
11
+ - 1 Page
12
+ - 15KB
13
+ - 1 Error
14
+ Errors:
15
+ - Undefined control sequence.\unbekanntesMakro (line 11)
@@ -0,0 +1,15 @@
1
+ Start job chain for test_error.tex
2
+ INFO test_error.tex: Start job chain for test/test_error.tex
3
+ INFO test_error.tex: 01 Start TeX-run 1
4
+ INFO test_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ INFO test_error.tex: 01--- Rerun necessary (Aux-File changed)
6
+ INFO test_error.tex: 02 Start TeX-run 2
7
+ INFO test_error.tex: 02-01 Call (La)TeX<pdflatex>
8
+ ---
9
+ - test_error.pdf
10
+ - 1 Page
11
+ - 15KB
12
+ - 1 Error
13
+ Errors:
14
+ - Undefined control sequence.\unbekanntesMakro (line 11)
15
+ More Details see test_error.tex.runtex_summary.txt or test_error.log.zip
@@ -0,0 +1,12 @@
1
+ Start job chain for test_error.tex
2
+ INFO test_error.tex: Start job chain for test/test_error.tex
3
+ INFO test_error.tex: 01 Start TeX-run 1
4
+ INFO test_error.tex: 01-01 Call (La)TeX<pdflatex>
5
+ ---
6
+ - test_error.pdf
7
+ - 1 Page
8
+ - 15KB
9
+ - 1 Error
10
+ Errors:
11
+ - Undefined control sequence.\unbekanntesMakro (line 11)
12
+ More Details see test_error.tex.runtex_summary.txt or test_error.log.zip
@@ -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 (La)TeX<pdflatex>
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 BibTeX<test_gloss.gls.bbl>
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 BibTeX<test_gloss.gls.bbl>
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 (La)TeX<pdflatex>
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 BibTeX<test_gloss.gls.bbl>
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 BibTeX<test_gloss.gls.bbl>
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 (La)TeX<pdflatex>
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 BibTeX<test_gloss.gls.bbl>
39
+ DEBUG test_gloss.tex: 03-01 -> File: test_gloss.pdf, 1 Page, 18KB
40
+ INFO test_gloss.tex: 03-02 Call BibTeX<test_gloss.gls.bbl>
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.lof, test_gloss.lot, test_gloss.lox, test_gloss.nav, 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,16 @@
1
+ INFO test_gloss.tex: Start job chain for test/test_gloss.tex
2
+ DEBUG test_gloss.tex: Re-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 (La)TeX<pdflatex>
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 BibTeX<test_gloss.gls.bbl>
10
+ DEBUG test_gloss.tex: 01-01 -> File: test_gloss.pdf, 1 Page, 18KB
11
+ INFO test_gloss.tex: 01-02 Call BibTeX<test_gloss.gls.bbl>
12
+ DEBUG test_gloss.tex: 01-02 Call bibtex test_gloss.gls.aux
13
+ DEBUG test_gloss.tex: 01-02 -> Info: Database file test_gloss.bib used
14
+ DEBUG test_gloss.tex: Zip help files for later use (test_gloss.aux, test_gloss.out, test_gloss.gls.aux, test_gloss.gls.bbl, test_gloss.toc, test_gloss.lof, test_gloss.lot, test_gloss.lox, test_gloss.nav, test_gloss-blx.bib)
15
+ 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, test_gloss.log, test_gloss.gls.blg
16
+ DEBUG test_gloss.tex: Delete helpfiles test_gloss.aux, test_gloss.out, test_gloss.gls.aux, test_gloss.gls.bbl
@@ -0,0 +1,18 @@
1
+ ==================================================
2
+ | Report for TeX-Job test_gloss.tex"
3
+ | 2000-01-01 12:00, TeX-run 1
4
+ ==================================================
5
+
6
+ ==================================================
7
+ LaTeX (pdflatex)
8
+ ==================================================
9
+ ---
10
+ - test_gloss.pdf
11
+ - 1 Page
12
+ - 18KB
13
+
14
+ ==================================================
15
+ BibTeX<test_gloss.gls.bbl>
16
+ ==================================================
17
+ Information:
18
+ - Database file test_gloss.bib used