-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.log
1952 lines (1653 loc) · 80.3 KB
/
main.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian) (format=pdflatex 2013.10.15) 7 MAY 2014 22:02
entering extended mode
\write18 enabled.
%&-line parsing enabled.
**main.tex
(./main.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/koma-script/scrbook.cls
Document Class: scrbook 2009/07/24 v3.04a KOMA-Script document class (book)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-dependent
basics and keyval usage)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrbase.sty
Package: scrbase 2009/07/24 v3.04a KOMA-Script package (KOMA-Script-independent
basics and keyval usage)
(/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2009/03/25 v3.03 KOMA-Script package (loading files)
Package scrlfile, 2009/03/25 v3.03 KOMA-Script package (loading files)
Copyright (C) Markus Kohm
))) (/usr/share/texmf-texlive/tex/latex/koma-script/tocbasic.sty
Package: tocbasic 2009/06/08 v3.03b KOMA-Script package (handling toc-files)
)
Package tocbasic Info: omitting babel extension for `toc'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `toc' on input line 117.
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lof' on input line 118.
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lot' on input line 119.
Package scrbook Info: You've used obsolete option `11pt'.
(scrbook) \KOMAExecuteOptions{fontsize=11pt} will be
(scrbook) used instead.
(scrbook) You may simply replace `11pt'
(scrbook) by `fontsize=11pt'.
Class scrbook Warning: You've used obsolete option `bibtotoc'.
(scrbook) Usage of this option indicates an old document and
(scrbook) changes compatibility level using
(scrbook) `bibliography=totoc,version=first'.
(scrbook) If you don't want this, you should simply replace
(scrbook) usage of option `bibtotoc' by `bibliography=totoc'.
Class scrbook Info: Switching compatibility level to `first'.
Class scrbook Warning: You've used obsolete option `idxtotoc'.
(scrbook) Usage of this option indicates an old document and
(scrbook) changes compatibility level using
(scrbook) `index=totoc,version=first'.
(scrbook) If you don't want this, you should simply replace
(scrbook) usage of option `idxtotoc' by `index=totoc'.
Class scrbook Info: Switching compatibility level to `first'.
Class scrbook Info: File `scrsize11pt.clo' used to setup font sizes on input li
ne 1272.
(/usr/share/texmf-texlive/tex/latex/koma-script/scrsize11pt.clo
File: scrsize11pt.clo 2009/07/24 v3.04a KOMA-Script font size class option (11p
t)
)
(/usr/share/texmf-texlive/tex/latex/koma-script/typearea.sty
Package: typearea 2009/07/24 v3.04a KOMA-Script package (type area)
Package typearea, 2009/07/24 v3.04a KOMA-Script package (type area)
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-
\ta@bcor=\skip41
\ta@div=\count79
Package typearea Info: You've used standard option `a4paper'.
(typearea) This is correct!
(typearea) Internaly I'm using `paper=a4'.
(typearea) If you'd like to set the option with \KOMAoptions,
(typearea) you'd have to use `paper=a4' there
(typearea) instead of `a4paper', too.
Package typearea Warning: You've used obsolete option `footexclude'.
(typearea) Usage of this option indicates an old document and
(typearea) changes compatibility level using
(typearea) `footinclude=false,version=first'.
(typearea) If you don't want this, you should simply replace
(typearea) usage of option `footexclude' by `footinclude=false'.
Package scrextend Info: Switching compatibility level to `first'.
\ta@hblk=\skip42
\ta@vblk=\skip43
\ta@temp=\skip44
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 13
(typearea) BCOR = 34.1433pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 433.35742pt
(typearea) DIV departure = -10%
(typearea) \evensidemargin = 14.40149pt
(typearea) \oddsidemargin = 5.20905pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 623.00027pt
(typearea) \topmargin = -7.26639pt
(typearea) \headheight = 17.0pt
(typearea) \headsep = 20.40001pt
(typearea) \topskip = 11.0pt
(typearea) \footskip = 47.60002pt
(typearea) \baselineskip = 13.6pt
(typearea) on input line 1115.
)
\c@part=\count80
\c@chapter=\count81
\c@section=\count82
\c@subsection=\count83
\c@subsubsection=\count84
\c@paragraph=\count85
\c@subparagraph=\count86
\abovecaptionskip=\skip45
\belowcaptionskip=\skip46
\c@pti@nb@sid@b@x=\box26
\c@figure=\count87
\c@table=\count88
\bibindent=\dimen102
) (/usr/share/texmf-texlive/tex/latex/base/textcomp.sty
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
Package textcomp Info: Changing ? sub-encoding to TS1/1 on input line 72.
(/usr/share/texmf-texlive/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
) (./components/info.tex)
(./components/settings.tex
(/usr/share/texmf-texlive/tex/latex/koma-script/scrpage2.sty
Package: scrpage2 2008/12/08 v2.3 LaTeX2e KOMA-Script package
LaTeX Info: Redefining \pagemark on input line 176.
)
(/usr/share/texmf-texlive/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texmf-texlive/tex/latex/psnfss/palatino.sty
Package: palatino 2005/04/12 PSNFSS-v9.2a (SPQR)
)
(/usr/share/texmf-texlive/tex/latex/psnfss/pifont.sty
Package: pifont 2005/04/12 PSNFSS-v9.2a Pi font support (SPQR)
LaTeX Font Info: Try loading font information for U+pzd on input line 63.
(/usr/share/texmf-texlive/tex/latex/psnfss/upzd.fd
File: upzd.fd 2001/06/04 font definitions for U/pzd.
)
LaTeX Font Info: Try loading font information for U+psy on input line 64.
(/usr/share/texmf-texlive/tex/latex/psnfss/upsy.fd
File: upsy.fd 2001/06/04 font definitions for U/psy.
))
(/usr/share/texmf-texlive/tex/generic/thumbpdf/thumbpdf.sty
Package: thumbpdf 2008/04/16 v3.10 Inclusion of thumbnails (HO)
Package thumbpdf Warning: Thumbnail data file `main.tpt' not found.
) (/usr/share/texmf-texlive/tex/latex/subfigure/subfigure.sty
Package: subfigure 2002/03/15 v2.1.5 subfigure package
\subfigtopskip=\skip47
\subfigcapskip=\skip48
\subfigcaptopadj=\dimen103
\subfigbottomskip=\skip49
\subfigcapmargin=\dimen104
\subfiglabelskip=\skip50
\c@subfigure=\count89
\c@lofdepth=\count90
\c@subtable=\count91
\c@lotdepth=\count92
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texmf-texlive/tex/latex/subfigure/subfigure.cfg)
\subfig@top=\skip51
\subfig@bottom=\skip52
)
(/usr/share/texmf-texlive/tex/latex/colortbl/colortbl.sty
Package: colortbl 2001/02/13 v0.1j Color table columns (DPC)
(/usr/share/texmf-texlive/tex/latex/tools/array.sty
Package: array 2008/09/09 v2.4c Tabular extension package (FMi)
\col@sep=\dimen105
\extrarowheight=\dimen106
\NC@list=\toks15
\extratabsurround=\skip53
\backup@length=\skip54
)
(/usr/share/texmf-texlive/tex/latex/graphics/color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(/etc/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
(/usr/share/texmf-texlive/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2010/03/12 v0.04p Graphics/color for pdfTeX
\Gread@gobject=\count93
))
\everycr=\toks16
\minrowclearance=\skip55
)
(./styles/tumlogo.sty)
(/usr/share/texmf-texlive/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen107
)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip56
For additional information on amsmath, use the `?' option.
(/usr/share/texmf-texlive/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/share/texmf-texlive/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks17
\ex@=\dimen108
))
(/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen109
)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count94
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count95
\leftroot@=\count96
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count97
\DOTSCASE@=\count98
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box27
\strutbox@=\box28
\big@size=\dimen110
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count99
\c@MaxMatrixCols=\count100
\dotsspace@=\muskip10
\c@parentequation=\count101
\dspbrk@lvl=\count102
\tag@help=\toks18
\row@=\count103
\column@=\count104
\maxfields@=\count105
\andhelp@=\toks19
\eqnshift@=\dimen111
\alignsep@=\dimen112
\tagshift@=\dimen113
\tagwidth@=\dimen114
\totwidth@=\dimen115
\lineht@=\dimen116
\@envbody=\toks20
\multlinegap=\skip57
\multlinetaggap=\skip58
\mathdisplay@stack=\toks21
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(/usr/share/texmf-texlive/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
)
(/usr/share/texmf-texlive/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2009/06/22 v3.00
) (./yhmath.sty
Package: yhmath
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 12.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/yhex/m/n on input line 12.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/yhex/m/n on input line 12.
LaTeX Font Info: Redeclaring math accent \widetilde on input line 13.
LaTeX Font Info: Redeclaring math accent \widehat on input line 14.
)
(/usr/share/texmf-texlive/tex/latex/base/makeidx.sty
Package: makeidx 2000/03/29 v1.0m Standard LaTeX package
)
(/usr/share/texmf-texlive/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count106
\float@exts=\toks22
\float@box=\box29
\@float@everytoks=\toks23
\@floatcapt=\box30
)
(/usr/share/texmf-texlive/tex/generic/babel/babel.sty
Package: babel 2008/07/06 v3.8l The Babel package
(/usr/share/texmf-texlive/tex/generic/babel/germanb.ldf
Language: germanb 2008/06/01 v2.6m German support from the babel system
(/usr/share/texmf-texlive/tex/generic/babel/babel.def
File: babel.def 2008/07/06 v3.8l Babel common definitions
\babel@savecnt=\count107
\U@D=\dimen117
)
Package babel Warning: No hyphenation patterns were loaded for
(babel) the language `German'
(babel) I will use the patterns loaded for \language=0 instead.
\l@german = a dialect from \language0
\l@austrian = a dialect from \language\l@german
Package babel Info: Making " an active character on input line 102.
) (/usr/share/texmf-texlive/tex/generic/babel/english.ldf
Language: english 2005/03/30 v3.3o English support from the babel system
\l@british = a dialect from \language\l@english
\l@UKenglish = a dialect from \language\l@english
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
))
(/usr/share/texmf-texlive/tex/latex/base/inputenc.sty
Package: inputenc 2008/03/30 v1.1d Input encoding file
\inpenc@prehook=\toks24
\inpenc@posthook=\toks25
(/usr/share/texmf-texlive/tex/latex/base/latin1.def
File: latin1.def 2008/03/30 v1.1d Input encoding file
)) (./dropping.sty
Package: dropping 1997/06/12 v.0.12
\bigscale=\count108
\down=\count109
\saveunitlength=\dimen118
\wantedheight=\dimen119
(/etc/texmf/tex/latex/config/graphics.cfg
File: graphics.cfg 2009/08/28 v1.8 graphics configuration of TeX Live
)) (./styles/shortoverview.sty
LaTeX Warning: You have requested package `styles/shortoverview',
but the package provides `shortoverview'.
Package: shortoverview
) (/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf-texlive/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/etc/texmf/tex/latex/config/graphics.cfg
File: graphics.cfg 2009/08/28 v1.8 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.
)
\Gin@req@height=\dimen120
\Gin@req@width=\dimen121
)
(/usr/share/texmf-texlive/tex/latex/rotating/rotating.sty
Package: rotating 2009/03/28 v2.16a rotated objects in LaTeX
\c@r@tfl@t=\count110
\rotFPtop=\skip59
\rotFPbot=\skip60
\rot@float@box=\box31
\rot@mess@toks=\toks26
)
(/usr/share/texmf-texlive/tex/latex/hyperref/hyperref.sty
Package: hyperref 2009/10/09 v6.79a Hypertext links for LaTeX
(/usr/share/texmf-texlive/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2009/04/10 v2.0 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode detected.
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO)
Package ifvtex Info: VTeX not detected.
)
(/usr/share/texmf-texlive/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional
)
(/usr/share/texmf-texlive/tex/latex/oberdiek/hycolor.sty
Package: hycolor 2009/10/02 v1.5 Code for color options of hyperref/bookmark (H
O)
(/usr/share/texmf-texlive/tex/latex/oberdiek/xcolor-patch.sty
Package: xcolor-patch 2009/10/02 xcolor patch
))
\@linkdim=\dimen122
\Hy@linkcounter=\count111
\Hy@pagecounter=\count112
(/usr/share/texmf-texlive/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2009/10/09 v6.79a Hyperref: PDFDocEncoding definition (HO)
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (HO)
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)
(/usr/share/texmf-texlive/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
(/usr/share/texmf-texlive/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2009/08/13 v3.4 Keyval support for LaTeX options (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2009/07/30 v1.5 Key value parser with default handler suppor
t (HO)
))
Package hyperref Info: Option `colorlinks' set `false' on input line 2864.
Package hyperref Info: Option `bookmarks' set `true' on input line 2864.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 2864.
Package hyperref Warning: Unexpected value `falsebookmarksnumbered'
(hyperref) of option `plainpages' instead of
(hyperref) `true' or 'false' on input line 2864.
Package hyperref Info: Option `hyperindex' set `true' on input line 2864.
Package hyperref Info: Hyper figures OFF on input line 2975.
Package hyperref Info: Link nesting OFF on input line 2980.
Package hyperref Info: Hyper index ON on input line 2983.
Package hyperref Info: Plain pages OFF on input line 2990.
Package hyperref Info: Backreferencing OFF on input line 2995.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 3191.
(/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty
\Urlmuskip=\muskip11
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 3428.
(/usr/share/texmf-texlive/tex/generic/oberdiek/bitset.sty
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/intcalc.sty
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/bigintcalc.sty
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2009/09/23 v0.6 LuaTeX support for pdfTeX utility functions
(HO)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2009/04/17 v1.2 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
(/usr/share/texmf-texlive/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2009/08/05 v1.0 Some LaTeX kernel commands for general use (HO
)
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
)))
\Fld@menulength=\count113
\Field@Width=\dimen123
\Fld@charsize=\dimen124
\Field@toks=\toks27
Package hyperref Info: Hyper figures OFF on input line 4377.
Package hyperref Info: Link nesting OFF on input line 4382.
Package hyperref Info: Hyper index ON on input line 4385.
Package hyperref Info: backreferencing OFF on input line 4392.
Package hyperref Info: Link coloring OFF on input line 4397.
Package hyperref Info: Link coloring with OCG OFF on input line 4402.
Package hyperref Info: PDF/A mode OFF on input line 4407.
(/usr/share/texmf-texlive/tex/generic/oberdiek/atbegshi.sty
Package: atbegshi 2008/07/31 v1.9 At begin shipout hook (HO)
)
\Hy@abspage=\count114
\c@Item=\count115
\c@Hfootnote=\count116
)
*hyperref using driver hpdftex*
(/usr/share/texmf-texlive/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2009/10/09 v6.79a Hyperref driver for pdfTeX
\Fld@listcount=\count117
)
(/usr/share/texmf-texlive/tex/latex/fncychap/fncychap.sty
Package: fncychap 2007/07/30 v1.34 LaTeX package (Revised chapters)
\RW=\skip61
\mylen=\skip62
\myhi=\skip63
\px=\skip64
\py=\skip65
\pyy=\skip66
\pxx=\skip67
\backskip=\skip68
))
(./components/commands.tex
\c@theorem=\count118
)
(/usr/share/texmf-texlive/tex/latex/algorithm2e/algorithm2e.sty
Package: algorithm2e 2005/10/04 v3.9 algorithms environments
\c@AlgoLine=\count119
(/usr/share/texmf-texlive/tex/latex/tools/xspace.sty
Package: xspace 2006/05/08 v1.12 Space after command names (DPC,MH)
)
********************************************************
Package `algorithm2e' Release 3.9 -- october 04 2005 --
- [email protected] mailing list for announcement about releases
- [email protected] mailing list for discussion about package
subscribe by emailing [email protected] with 'subscribe <list> <firstname name>'
- Author: Christophe Fiorio ([email protected])
********************************************************
\skiptotal=\skip69
\skiprule=\skip70
\skiphlne=\skip71
\skiptext=\skip72
\skiplength=\skip73
\algomargin=\skip74
\skipalgocfslide=\skip75
\algowidth=\dimen125
\inoutsize=\dimen126
\inoutline=\dimen127
\algocf@inoutbox=\box32
\algocf@inputbox=\box33
\AlCapSkip=\skip76
\AlCapHSkip=\skip77
\algocf@capbox=\box34
\c@algocfline=\count120
\c@algocf=\count121
\algocf@algoframe=\box35
\algocf@algobox=\box36
) (/usr/share/texmf-texlive/tex/latex/oberdiek/epstopdf.sty
Package: epstopdf 2009/10/17 v2.4 Conversion with epstopdf on the fly (HO)
(/usr/share/texmf-texlive/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2009/10/17 v2.4 Base part for package epstopdf
(/usr/share/texmf-texlive/tex/latex/oberdiek/grfext.sty
Package: grfext 2007/09/30 v1.0 Managing graphics extensions (HO)
)
Package grfext Info: Graphics extension search list:
(grfext) [.jpg,.JPG,.png,.pdf,.eps]
(grfext) \AppendGraphicsExtensions on input line 433.
(/usr/share/texmf-texlive/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2009/10/26 v1.1 Configuration of epstopdf for TeX Live
)))
(/usr/share/texmf-texlive/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen128
\WF@size=\dimen129
\c@WF@wrappedlines=\count122
\WF@box=\box37
\WF@everypar=\toks28
Package: wrapfig 2003/01/31 v 3.6
)
(/usr/share/texmf-texlive/tex/latex/pbox/pbox.sty
Package: pbox 2003/04/06 v1.0 Dynamic parboxes
(/usr/share/texmf-texlive/tex/latex/tools/calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count123
\calc@Bcount=\count124
\calc@Adimen=\dimen130
\calc@Bdimen=\dimen131
\calc@Askip=\skip78
\calc@Bskip=\skip79
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count125
\calc@Cskip=\skip80
)
\pb@xlen=\skip81
)
(/usr/share/texmf-texlive/tex/latex/pdfpages/pdfpages.sty
Package: pdfpages 2009/02/07 v0.4g Insert pages of external PDF documents (AM)
(/usr/share/texmf-texlive/tex/latex/eso-pic/eso-pic.sty
Package: eso-pic 2006/07/14 v1.1d eso-pic (RN)
(/usr/share/texmf-texlive/tex/latex/ms/everyshi.sty
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
(/usr/share/texmf-texlive/tex/latex/pdfpages/pppdftex.def
File: pppdftex.def 2009/02/07 v0.4g Pdfpages driver for pdfTeX (AM)
)
\AM@pagebox=\box38
\AM@toc@title=\toks29
\c@AM@survey=\count126
\AM@templatesizebox=\box39
)
\@glossaryfile=\write3
\openout3 = `main.glo'.
Writing glossary file main.glo
(./main.aux (./chapters/sot.aux)
LaTeX Warning: Label `figclosestpointmesh' multiply defined.
LaTeX Warning: Label `fig:taskgaze' multiply defined.
LaTeX Warning: Label `sub@fig:taskgaze' multiply defined.
LaTeX Warning: Label `fig:arucomarker' multiply defined.
LaTeX Warning: Label `sub@fig:arucomarker' multiply defined.
LaTeX Warning: Label `fig:arucomarker' multiply defined.
LaTeX Warning: Label `sub@fig:arucomarker' multiply defined.
)
\openout1 = `main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 67.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 67.
(/usr/share/texmf-texlive/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 67.
LaTeX Font Info: ... okay on input line 67.
LaTeX Font Info: Try loading font information for OT1+ppl on input line 67.
(/usr/share/texmf-texlive/tex/latex/psnfss/ot1ppl.fd
File: ot1ppl.fd 2001/06/04 font definitions for OT1/ppl.
)
(/usr/share/texmf-texlive/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count127
\scratchdimen=\dimen132
\scratchbox=\box40
\nofMPsegments=\count128
\nofMParguments=\count129
\everyMPshowfont=\toks30
\MPscratchCnt=\count130
\MPscratchDim=\dimen133
\MPnumerator=\count131
\everyMPtoPDFconversion=\toks31
)
Package hyperref Info: Link coloring OFF on input line 67.
(/usr/share/texmf-texlive/tex/latex/hyperref/nameref.sty
Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section
(/usr/share/texmf-texlive/tex/latex/oberdiek/refcount.sty
Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
)
\c@section@level=\count132
)
LaTeX Info: Redefining \ref on input line 67.
LaTeX Info: Redefining \pageref on input line 67.
(./main.out)
(./main.out)
\@outlinefile=\write4
\openout4 = `main.out'.
\AtBeginShipoutBox=\box41
ABD: EveryShipout initializing macros
Package pdfpages Warning: You are using `thumbpdf.sty' but not
(pdfpages) `pdflscape.sty'.
(pdfpages) Please, insert `pdflscape.sty' in your document
(pdfpages) to get a pleasant PDF document with thumbs.
(./components/cover.tex
LaTeX Font Info: Font shape `OT1/ppl/bx/n' in size <20.74> not available
(Font) Font shape `OT1/ppl/b/n' tried instead on input line 43.
<styles/informat.png, id=205, 355.3275pt x 355.3275pt>
File: styles/informat.png Graphic file (type png)
<use styles/informat.png>) [1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./styles/informat.png>] [2
] (./components/titlepage.tex
LaTeX Font Info: Try loading font information for OMX+yhex on input line 46.
(/usr/share/texmf-texlive/tex/latex/yhmath/OMXyhex.fd
File: OMXyhex.fd
File: OMXyhex.fd 1996/01/04 v1.0 YH's humble contribution to TeX maths
)
LaTeX Font Info: External font `yhcmex10' loaded for size
(Font) <10.95> on input line 46.
LaTeX Font Info: External font `yhcmex10' loaded for size
(Font) <8> on input line 46.
LaTeX Font Info: External font `yhcmex10' loaded for size
(Font) <6> on input line 46.
LaTeX Font Info: Try loading font information for U+msa on input line 46.
(/usr/share/texmf-texlive/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 46.
(/usr/share/texmf-texlive/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
)
File: styles/informat.png Graphic file (type png)
<use styles/informat.png>
LaTeX Warning: `!h' float specifier changed to `!ht'.
) [3]
pdfTeX warning: pdflatex (file ./components/disclaimer_signed.pdf): PDF inclusi
on: found PDF version <1.7>, but at most version <1.4> allowed
pdfTeX warning: pdflatex (file ./components/disclaimer_signed.pdf): PDF inclusi
on: found PDF version <1.7>, but at most version <1.4> allowed
pdfTeX warning: pdflatex (file ./components/disclaimer_signed.pdf): PDF inclusi
on: found PDF version <1.7>, but at most version <1.4> allowed
<components/disclaimer_signed.pdf, id=226, page=1, 597.50829pt x 845.0471pt>
File: components/disclaimer_signed.pdf Graphic file (type pdf)
<use components/disclaimer_signed.pdf, page 1>
File: components/disclaimer_signed.pdf Graphic file (type pdf)
<use components/disclaimer_signed.pdf, page 1>
File: components/disclaimer_signed.pdf Graphic file (type pdf)
<use components/disclaimer_signed.pdf, page 1>
File: components/disclaimer_signed.pdf Graphic file (type pdf)
<use components/disclaimer_signed.pdf, page 1>
File: components/disclaimer_signed.pdf Graphic file (type pdf)
<use components/disclaimer_signed.pdf, page 1> [4 <./components/disclaimer_sign
ed.pdf>] (./components/acknowledgments.tex
LaTeX Font Info: Font shape `OT1/ppl/bx/n' in size <14.4> not available
(Font) Font shape `OT1/ppl/b/n' tried instead on input line 11.
) (./components/abstract.tex [5
]
[6
]) (./components/abstract_german.tex [7] [8
]
Overfull \hbox (2.04187pt too wide) in paragraph at lines 17--18
[]\OT1/ppl/m/n/10.95 In dieser Mas-ter-ar-beit pr[]asen-tieren wir eine vollst[
]andige L[]osung f[]ur eine hoch-dynamische
[]
) [9] [10
]
LaTeX Font Info: Font shape `OT1/ppl/bx/n' in size <10.95> not available
(Font) Font shape `OT1/ppl/b/n' tried instead on input line 94.
(./main.toc
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 3.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 4.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 5.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 6.
LaTeX Font Info: Font shape `OT1/ppl/bx/n' in size <12> not available
(Font) Font shape `OT1/ppl/b/n' tried instead on input line 6.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 7.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 11.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 18.
[11]
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 30.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 31.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 37.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 42.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 51.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 52.
Class scrbook Info: You've told me to use the font selection of the element
(scrbook) `sectioning' that is an alias of element `disposition'
(scrbook) on input line 53.
)
\tf@toc=\write5
\openout5 = `main.toc'.
[12]
LaTeX Font Info: Font shape `OT1/ppl/bx/n' in size <24.88> not available
(Font) Font shape `OT1/ppl/b/n' tried instead on input line 105.
[1
] [2] (./chapters/Introduction.tex
Chapter 1.
Class scrbook Warning: \float@addtolists detected!
(scrbook) You should use the features of package `tocbasic'
(scrbook) instead of \float@addtolists.
(scrbook) Support for \float@addtolists may be removed from
(scrbook) `scrbook' soon .
LaTeX Font Info: Try loading font information for OT1+phv on input line 1.
(/usr/share/texmf-texlive/tex/latex/psnfss/ot1phv.fd
File: ot1phv.fd 2001/06/04 scalable font definitions for OT1/phv.
)
LaTeX Font Info: Font shape `OT1/phv/bx/n' in size <24.88> not available
(Font) Font shape `OT1/phv/b/n' tried instead on input line 1.
LaTeX Font Info: Font shape `OT1/phv/bx/n' in size <14.4> not available
(Font) Font shape `OT1/phv/b/n' tried instead on input line 1.
LaTeX Font Info: External font `yhcmex10' loaded for size
(Font) <9> on input line 4.
LaTeX Font Info: External font `yhcmex10' loaded for size
(Font) <5> on input line 4.
LaTeX Font Info: Try loading font information for OT1+pcr on input line 4.
(/usr/share/texmf-texlive/tex/latex/psnfss/ot1pcr.fd
File: ot1pcr.fd 2001/06/04 font definitions for OT1/pcr.
)
<figures/../figures/reemc2.jpg, id=341, 3870.46pt x 6512.33pt>
File: figures/../figures/reemc2.jpg Graphic file (type jpg)
<use figures/../figures/reemc2.jpg>
<figures/../figures/asimo2.jpg, id=342, 501.875pt x 561.09625pt>
File: figures/../figures/asimo2.jpg Graphic file (type jpg)
<use figures/../figures/asimo2.jpg>
<figures/../figures/hubo.jpg, id=343, 521.95pt x 706.64pt>
File: figures/../figures/hubo.jpg Graphic file (type jpg)
<use figures/../figures/hubo.jpg>
<figures/../figures/atlas.jpg, id=344, 2007.5pt x 2764.3275pt>
File: figures/../figures/atlas.jpg Graphic file (type jpg)
<use figures/../figures/atlas.jpg> [3
<./figures/../figures/reemc2.jpg> <./figures/../figures/asimo2.jpg> <./figures
/../figures/hubo.jpg> <./figures/../figures/atlas.jpg>] [4]
LaTeX Font Info: Try loading font information for TS1+ppl on input line 32.
(/usr/share/texmf-texlive/tex/latex/psnfss/ts1ppl.fd
File: ts1ppl.fd 2001/06/04 font definitions for TS1/ppl.
))
[5] [6]
\openout2 = `chapters/sot.aux'.
(./chapters/sot.tex
Chapter 2.
Underfull \hbox (badness 10000) in paragraph at lines 4--9
[]
Underfull \hbox (badness 10000) in paragraph at lines 4--9
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[7
]
[8] [9]
Package epstopdf Info: Source file: <figures/../figures/ikcontrolloop.eps>
(epstopdf) date: 2014-04-10 11:28:52
(epstopdf) size: 11344 bytes
(epstopdf) Output file: <figures/../figures/ikcontrolloop-eps-conve
rted-to.pdf>
(epstopdf) date: 2014-04-10 18:20:58
(epstopdf) size: 6781 bytes
(epstopdf) Command: <epstopdf --outfile=figures/../figures/ikcontro
lloop-eps-converted-to.pdf figures/../figures/ikcontrolloop.eps>
(epstopdf) \includegraphics on input line 97.
Package epstopdf Info: Output file is already uptodate.
<figures/../figures/ikcontrolloop-eps-converted-to.pdf, id=489, 686.565pt x 216
.81pt>
File: figures/../figures/ikcontrolloop-eps-converted-to.pdf Graphic file (type
pdf)
<use figures/../figures/ikcontrolloop-eps-converted-to.pdf>
LaTeX Warning: `!h' float specifier changed to `!ht'.
[10] [11 <./figures/../figures/ikcontrolloop-eps-converted-to.pdf>] [12]
[13]) [14] (./chapters/collisionavoidance.tex
Chapter 3.
[15
]
Package epstopdf Info: Source file: <figures/../figures/closestpointmesh.eps>
(epstopdf) date: 2014-02-23 00:38:41
(epstopdf) size: 14919 bytes
(epstopdf) Output file: <figures/../figures/closestpointmesh-eps-co
nverted-to.pdf>
(epstopdf) date: 2014-02-23 00:38:45
(epstopdf) size: 8300 bytes
(epstopdf) Command: <epstopdf --outfile=figures/../figures/closestp
ointmesh-eps-converted-to.pdf figures/../figures/closestpointmesh.eps>
(epstopdf) \includegraphics on input line 20.
Package epstopdf Info: Output file is already uptodate.
<figures/../figures/closestpointmesh-eps-converted-to.pdf, id=586, 542.025pt x
505.89pt>
File: figures/../figures/closestpointmesh-eps-converted-to.pdf Graphic file (ty
pe pdf)
<use figures/../figures/closestpointmesh-eps-converted-to.pdf>
<figures/../figures/mesh_head.png, id=587, 593.21625pt x 749.80125pt>
File: figures/../figures/mesh_head.png Graphic file (type png)
<use figures/../figures/mesh_head.png>
<figures/../figures/mesh_torso.png, id=588, 664.4825pt x 841.1425pt>
File: figures/../figures/mesh_torso.png Graphic file (type png)
<use figures/../figures/mesh_torso.png>
<figures/../figures/mesh_base.png, id=589, 637.38126pt x 886.31125pt>
File: figures/../figures/mesh_base.png Graphic file (type png)
<use figures/../figures/mesh_base.png>
LaTeX Warning: `!h' float specifier changed to `!ht'.
Underfull \vbox (badness 10000) has occurred while \output is active []
[16
<./figures/../figures/closestpointmesh-eps-converted-to.pdf>] [17 <./figures/.
./figures/mesh_head.png (PNG copy)> <./figures/../figures/mesh_torso.png (PNG c
opy)> <./figures/../figures/mesh_base.png (PNG copy)>]
Package epstopdf Info: Source file: <figures/../figures/capsulecapsule.eps>
(epstopdf) date: 2014-03-06 11:04:52