-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.log
2149 lines (1824 loc) · 85.2 KB
/
thesis.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 2012.12.30) 30 JUL 2013 19:28
entering extended mode
%&-line parsing enabled.
**thesis
(./thesis.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, farsi, arabic, croatian, bulgarian, ukrainian, russian, czech, slov
ak, danish, dutch, finnish, french, basque, ngerman, german, german-x-2009-06-1
9, ngerman-x-2009-06-19, ibycus, monogreek, greek, ancientgreek, hungarian, san
skrit, italian, latin, latvian, lithuanian, mongolian2a, mongolian, bokmal, nyn
orsk, romanian, irish, coptic, serbian, turkish, welsh, esperanto, uppersorbian
, estonian, indonesian, interlingua, icelandic, kurmanji, slovenian, polish, po
rtuguese, spanish, galician, catalan, swedish, ukenglish, pinyin, loaded.
(./mythesis.cls
Document Class: mythesis
(./hepthesis.cls
Document Class: hepthesis 2010/05/27 HEP thesis class by Andy Buckley (v1.4.3)
(/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 `12pt'.
(scrbook) \KOMAExecuteOptions{fontsize=12pt} will be
(scrbook) used instead.
(scrbook) You may simply replace `12pt'
(scrbook) by `fontsize=12pt'.
Class scrbook Info: File `scrsize12pt.clo' used to setup font sizes on input li
ne 1272.
(/usr/share/texmf-texlive/tex/latex/koma-script/scrsize12pt.clo
File: scrsize12pt.clo 2009/07/24 v3.04a KOMA-Script font size class option (12p
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
\ta@hblk=\skip42
\ta@vblk=\skip43
\ta@temp=\skip44
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 12
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 448.13095pt
(typearea) DIV departure = -6%
(typearea) \evensidemargin = 27.31467pt
(typearea) \oddsidemargin = -22.47766pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 635.5pt
(typearea) \topmargin = -41.72441pt
(typearea) \headheight = 18.125pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(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/microtype/microtype.sty
Package: microtype 2009/03/27 v2.3d Micro-typography with pdfTeX (RS)
\MT@toks=\toks15
\MT@count=\count89
LaTeX Info: Redefining \lsstyle on input line 1608.
LaTeX Info: Redefining \lslig on input line 1608.
\MT@outer@space=\skip47
LaTeX Info: Redefining \textls on input line 1616.
\MT@outer@kern=\dimen103
LaTeX Info: Redefining \textmicrotypecontext on input line 2167.
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/share/texmf-texlive/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2009/03/27 v2.3d microtype main configuration file (RS)
))
(/usr/share/texmf-texlive/tex/latex/changepage/changepage.sty
Package: changepage 2009/10/20 v1.0c check page and change page layout
\c@cp@cntr=\count90
\cp@tempcnt=\count91
) (./varwidth.sty
Package: varwidth 2003/03/10 ver 0.9a; Variable-width minipages
\@vwid@box=\box27
\sift@deathcycles=\count92
\@vwid@loff=\dimen104
\@vwid@roff=\dimen105
) (/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip48
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=\toks16
\ex@=\dimen106
))
(/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen107
)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count93
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count94
\leftroot@=\count95
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count96
\DOTSCASE@=\count97
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@=\box28
\strutbox@=\box29
\big@size=\dimen108
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count98
\c@MaxMatrixCols=\count99
\dotsspace@=\muskip10
\c@parentequation=\count100
\dspbrk@lvl=\count101
\tag@help=\toks17
\row@=\count102
\column@=\count103
\maxfields@=\count104
\andhelp@=\toks18
\eqnshift@=\dimen109
\alignsep@=\dimen110
\tagshift@=\dimen111
\tagwidth@=\dimen112
\totwidth@=\dimen113
\lineht@=\dimen114
\@envbody=\toks19
\multlinegap=\skip49
\multlinetaggap=\skip50
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
Class scrbook Info: You've told me to extend the font selection of the
(scrbook) element `sectioning' that is an alias of element
(scrbook) `disposition' on input line 245.
(/usr/share/texmf-texlive/tex/latex/booktabs/booktabs.sty
Package: booktabs 2005/04/14 v1.61803 publication quality tables
\heavyrulewidth=\dimen115
\lightrulewidth=\dimen116
\cmidrulewidth=\dimen117
\belowrulesep=\dimen118
\belowbottomsep=\dimen119
\aboverulesep=\dimen120
\abovetopsep=\dimen121
\cmidrulesep=\dimen122
\cmidrulekern=\dimen123
\defaultaddspace=\dimen124
\@cmidla=\count105
\@cmidlb=\count106
\@aboverulesep=\dimen125
\@belowrulesep=\dimen126
\@thisruleclass=\count107
\@lastruleclass=\count108
\@thisrulewidth=\dimen127
)
(/usr/share/texmf-texlive/tex/latex/setspace/setspace.sty
Package: setspace 2000/12/01 6.7 Contributed and Supported LaTeX2e package
Package: `setspace' 6.7 <2000/12/01>
) (/usr/share/texmf-texlive/tex/latex/fancyhdr/fancyhdr.sty
\fancy@headwidth=\skip51
\f@ncyO@elh=\skip52
\f@ncyO@erh=\skip53
\f@ncyO@olh=\skip54
\f@ncyO@orh=\skip55
\f@ncyO@elf=\skip56
\f@ncyO@erf=\skip57
\f@ncyO@olf=\skip58
\f@ncyO@orf=\skip59
)
(/usr/share/texmf-texlive/tex/latex/tocbibind/tocbibind.sty
Package: tocbibind 2009/09/04 v1.5i extra ToC listings
Package tocbibind Note: The document has chapter divisions.
Package tocbibind Note: Using chapter style headings, unless overridden.
) (/usr/share/texmf-texlive/tex/latex/tools/verbatim.sty
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks21
\verbatim@line=\toks22
\verbatim@in@stream=\read1
)
(/usr/share/texmf-texlive/tex/latex/comment/comment.sty
\CommentStream=\write3
Excluding comment 'comment')
(/usr/share/texmf-texlive/tex/latex/rotating/rotating.sty
Package: rotating 2009/03/28 v2.16a rotated objects in LaTeX
(/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.
(/usr/share/texmf-texlive/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2010/03/12 v0.04p Graphics/color for pdfTeX
\Gread@gobject=\count109
))
\Gin@req@height=\dimen128
\Gin@req@width=\dimen129
)
(/usr/share/texmf-texlive/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count110
\rotFPtop=\skip60
\rotFPbot=\skip61
\rot@float@box=\box30
\rot@mess@toks=\toks23
)
(/usr/share/texmf-texlive/tex/latex/caption/caption.sty
Package: caption 2009/10/09 v3.1k Customizing captions (AR)
(/usr/share/texmf-texlive/tex/latex/caption/caption3.sty
Package: caption3 2009/10/09 v3.1k caption3 kernel (AR)
\captionmargin=\dimen130
\captionmargin@=\dimen131
\captionwidth=\dimen132
\caption@indent=\dimen133
\caption@parindent=\dimen134
\caption@hangindent=\dimen135
)
Package caption Info: KOMA-Script document class.
\c@ContinuedFloat=\count111
Package caption Info: rotating package is loaded.
)
\@bindextramargin=\skip62
\@mainmatterextramargin=\skip63
\@backmatterextramargin=\skip64
\@frontmatterextramargin=\skip65
\@appendixextramargin=\skip66
\@abstractextramargin=\skip67
\@declarationextramargin=\skip68
\@acknowledgementsextramargin=\skip69
\@prefaceextramargin=\skip70
\@pagequoteextramargin=\skip71
\@frontmattertopskip=\skip72
\@frontmattertitletopskip=\skip73
\frontmattertitleskip=\skip74
\smallfigwidth=\skip75
\mediumfigwidth=\skip76
\largefigwidth=\skip77
\hugefigwidth=\skip78
\littlefigwidth=\skip79
\bigfigwidth=\skip80
LaTeX Info: Redefining \contentsname on input line 444.
LaTeX Info: Redefining \bibname on input line 445.
LaTeX Info: Redefining \listfigurename on input line 446.
LaTeX Info: Redefining \listtablename on input line 447.
Special comment 'frontmatter' Special comment 'mainmatter'
Special comment 'appendices' Special comment 'backmatter'
LaTeX Info: Redefining \titlepage on input line 652.
\@oldparindent=\skip81
LaTeX Info: Redefining \dedication on input line 705.
)
(/usr/share/texmf-texlive/tex/latex/csquotes/csquotes.sty
Package: csquotes 2009/09/23 v4.4c context-sensitive quotations
(/usr/share/texmf-texlive/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2009/08/06 v1.8 e-TeX tools for LaTeX
(/usr/share/texmf-texlive/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count112
))
\csq@reset=\count113
\csq@gtype=\count114
\csq@glevel=\count115
\csq@qlevel=\count116
\csq@maxlvl=\count117
\csq@tshold=\count118
\csq@ltx@everypar=\toks24
(/usr/share/texmf-texlive/tex/latex/csquotes/csquotes.def
File: csquotes.def 2009/09/23 v4.4c csquotes generic definitions
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(/usr/share/texmf-texlive/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg 2009/05/30 v4.4 csquotes configuration
)
Package csquotes Info: Enabling multilingual support.
)
(/usr/share/texmf-texlive/tex/latex/cite/cite.sty
LaTeX Info: Redefining \cite on input line 285.
LaTeX Info: Redefining \nocite on input line 356.
Package: cite 2009/08/29 v 5.2
)
(/usr/share/texmf-texlive/tex/latex/jknapltx/mathrsfs.sty
Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
\symrsfs=\mathgroup4
)
(/usr/share/texmf-texlive/tex/latex/tools/afterpage.sty
Package: afterpage 1995/10/27 v1.08 After-Page Package (DPC)
\AP@output=\toks25
\AP@partial=\box31
\AP@footins=\box32
)
(/var/lib/texmf/tex/generic/babel/babel.sty
Package: babel 2008/07/06 v3.8l The Babel package
(/usr/share/texmf-texlive/tex/generic/babel/ngermanb.ldf
Language: ngermanb 2008/07/06 v2.6n new 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=\count119
\U@D=\dimen136
)
\l@naustrian = a dialect from \language\l@ngerman
Package babel Info: Making " an active character on input line 92.
)
(/usr/share/texmf-texlive/tex/generic/babel/english.ldf
Language: english 2005/03/30 v3.3o English support from the babel system
\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/subfigure/subfigure.sty
Package: subfigure 2002/03/15 v2.1.5 subfigure package
\subfigtopskip=\skip82
\subfigcapskip=\skip83
\subfigcaptopadj=\dimen137
\subfigbottomskip=\skip84
\subfigcapmargin=\dimen138
\subfiglabelskip=\skip85
\c@subfigure=\count120
\c@lofdepth=\count121
\c@subtable=\count122
\c@lotdepth=\count123
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texmf-texlive/tex/latex/subfigure/subfigure.cfg)
\subfig@top=\skip86
\subfig@bottom=\skip87
)
(/usr/share/texmf/tex/latex/pgf/frontendlayer/tikz.sty
(/usr/share/texmf/tex/latex/pgf/basiclayer/pgf.sty
(/usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty
(/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks26
)
(/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box33
(/usr/share/texmf-texlive/tex/latex/ms/everyshi.sty
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
(/usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex
Package: pgfrcs 2010/10/25 v2.10 (rcs-revision 1.24)
))
Package: pgf 2008/01/15 v2.10 (rcs-revision 1.12)
(/usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty
(/usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2010/06/30 v2.10 (rcs-revision 1.37)
(/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks27
\pgfkeys@temptoks=\toks28
(/usr/share/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex
\pgfkeys@tmptoks=\toks29
))
\pgf@x=\dimen139
\pgf@y=\dimen140
\pgf@xa=\dimen141
\pgf@ya=\dimen142
\pgf@xb=\dimen143
\pgf@yb=\dimen144
\pgf@xc=\dimen145
\pgf@yc=\dimen146
\w@pgf@writea=\write4
\r@pgf@reada=\read2
\c@pgf@counta=\count124
\c@pgf@countb=\count125
\c@pgf@countc=\count126
\c@pgf@countd=\count127
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2008/05/14 (rcs-revision 1.7)
)
Package pgfsys Info: Driver file for pgf: pgfsys-pdftex.def on input line 900.
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
File: pgfsys-pdftex.def 2009/05/22 (rcs-revision 1.26)
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2008/05/19 (rcs-revision 1.10)
)))
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2008/07/18 (rcs-revision 1.7)
\pgfsyssoftpath@smallbuffer@items=\count128
\pgfsyssoftpath@bigbuffer@items=\count129
)
(/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4)
))
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(/etc/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2010/04/11 v2.10 (rcs-revision 1.7)
(/usr/share/texmf/tex/generic/pgf/math/pgfmath.code.tex
(/usr/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex
(/usr/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen147
\pgfmath@count=\count130
\pgfmath@box=\box34
\pgfmath@toks=\toks30
\pgfmath@stack@operand=\toks31
\pgfmath@stack@operation=\toks32
)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)))
(/usr/share/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count131
))
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2010/04/09 (rcs-revision 1.20)
\pgf@picminx=\dimen148
\pgf@picmaxx=\dimen149
\pgf@picminy=\dimen150
\pgf@picmaxy=\dimen151
\pgf@pathminx=\dimen152
\pgf@pathmaxx=\dimen153
\pgf@pathminy=\dimen154
\pgf@pathmaxy=\dimen155
\pgf@xx=\dimen156
\pgf@xy=\dimen157
\pgf@yx=\dimen158
\pgf@yy=\dimen159
\pgf@zx=\dimen160
\pgf@zy=\dimen161
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2010/08/03 (rcs-revision 1.24)
\pgf@path@lastx=\dimen162
\pgf@path@lasty=\dimen163
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
File: pgfcorepathusage.code.tex 2008/04/22 (rcs-revision 1.12)
\pgf@shorten@end@additional=\dimen164
\pgf@shorten@start@additional=\dimen165
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2010/09/08 (rcs-revision 1.34)
\pgfpic=\box35
\pgf@hbox=\box36
\pgf@layerbox@main=\box37
\pgf@picture@serial@count=\count132
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2008/04/22 (rcs-revision 1.9)
\pgflinewidth=\dimen166
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
File: pgfcoretransformations.code.tex 2009/06/10 (rcs-revision 1.11)
\pgf@pt@x=\dimen167
\pgf@pt@y=\dimen168
\pgf@pt@temp=\dimen169
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2008/10/09 (rcs-revision 1.8)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2008/04/23 (rcs-revision 1.11)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2008/11/23 (rcs-revision 1.13)
\pgf@max=\dimen170
\pgf@sys@shading@range@num=\count133
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2010/03/25 (rcs-revision 1.16)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
File: pgfcoreexternal.code.tex 2010/09/01 (rcs-revision 1.17)
\pgfexternal@startupbox=\box38
))
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2010/08/27 (rcs-revision 1.2)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
File: pgfcoretransparency.code.tex 2008/01/17 (rcs-revision 1.2)
)
(/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2009/07/02 (rcs-revision 1.3)
)))
(/usr/share/texmf/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
File: pgfmoduleshapes.code.tex 2010/09/09 (rcs-revision 1.13)
\pgfnodeparttextbox=\box39
)
(/usr/share/texmf/tex/generic/pgf/modules/pgfmoduleplot.code.tex
File: pgfmoduleplot.code.tex 2010/10/22 (rcs-revision 1.8)
)
(/usr/share/texmf/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
Package: pgfcomp-version-0-65 2007/07/03 v2.10 (rcs-revision 1.7)
\pgf@nodesepstart=\dimen171
\pgf@nodesepend=\dimen172
)
(/usr/share/texmf/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
Package: pgfcomp-version-1-18 2007/07/23 v2.10 (rcs-revision 1.1)
))
(/usr/share/texmf/tex/latex/pgf/utilities/pgffor.sty
(/usr/share/texmf/tex/latex/pgf/utilities/pgfkeys.sty
(/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex))
(/usr/share/texmf/tex/generic/pgf/utilities/pgffor.code.tex
Package: pgffor 2010/03/23 v2.10 (rcs-revision 1.18)
\pgffor@iter=\dimen173
\pgffor@skip=\dimen174
\pgffor@stack=\toks33
\pgffor@toks=\toks34
))
(/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
Package: tikz 2010/10/13 v2.10 (rcs-revision 1.76)
(/usr/share/texmf/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
File: pgflibraryplothandlers.code.tex 2010/05/31 v2.10 (rcs-revision 1.15)
\pgf@plot@mark@count=\count134
\pgfplotmarksize=\dimen175
)
\tikz@lastx=\dimen176
\tikz@lasty=\dimen177
\tikz@lastxsaved=\dimen178
\tikz@lastysaved=\dimen179
\tikzleveldistance=\dimen180
\tikzsiblingdistance=\dimen181
\tikz@figbox=\box40
\tikz@tempbox=\box41
\tikztreelevel=\count135
\tikznumberofchildren=\count136
\tikznumberofcurrentchild=\count137
\tikz@fig@count=\count138
(/usr/share/texmf/tex/generic/pgf/modules/pgfmodulematrix.code.tex
File: pgfmodulematrix.code.tex 2010/08/24 (rcs-revision 1.4)
\pgfmatrixcurrentrow=\count139
\pgfmatrixcurrentcolumn=\count140
\pgf@matrix@numberofcolumns=\count141
)
\tikz@expandcount=\count142
(/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopat
hs.code.tex
File: tikzlibrarytopaths.code.tex 2008/06/17 v2.10 (rcs-revision 1.2)
))) (/usr/share/texmf-texlive/tex/latex/overpic/overpic.sty
Package: overpic 1999/07/04 v0.52 Overwriting eps pictures
Package: overpic v0.52 <1999/07/04> (RN)
(/usr/share/texmf-texlive/tex/latex/eepic/epic.sty
Enhancements to Picture Environment. Version 1.2 - Released June 1, 1986
\@@multicnt=\count143
\d@lta=\count144
\@delta=\dimen182
\@@delta=\dimen183
\@gridcnt=\count145
\@joinkind=\count146
\@dotgap=\dimen184
\@ddotgap=\dimen185
\@x@diff=\count147
\@y@diff=\count148
\x@diff=\dimen186
\y@diff=\dimen187
\@dotbox=\box42
\num@segments=\count149
\num@segmentsi=\count150
\@datafile=\read3
)
overpic: relative positioning in percent
) (/usr/share/texmf-texlive/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen188
)
(/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=\count151
\calc@Bcount=\count152
\calc@Adimen=\dimen189
\calc@Bdimen=\dimen190
\calc@Askip=\skip88
\calc@Bskip=\skip89
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count153
\calc@Cskip=\skip90
)
\pb@xlen=\skip91
)
(/usr/share/texmf-texlive/tex/latex/tools/dcolumn.sty
Package: dcolumn 2001/05/28 v1.06 decimal alignment package (DPC)
(/usr/share/texmf-texlive/tex/latex/tools/array.sty
Package: array 2008/09/09 v2.4c Tabular extension package (FMi)
\col@sep=\dimen191
\extrarowheight=\dimen192
\NC@list=\toks35
\extratabsurround=\skip92
\backup@length=\skip93
))) (./mythesis.sty
Package: mythesis 07/11/2011
(./hepnicenames.sty
Package: hepnicenames 2007/03/07 Friendly alternatives to the PEN particle code
s (version 1.4)
(./heppennames.sty
Package: heppennames 2007/03/07 Elementary Particle Naming Scheme (version 1.4)
(./hepparticles.sty
Package: hepparticles 2005/02/22 HEP particle typesetting (v1.4)
(/usr/share/texmf-texlive/tex/latex/maybemath/maybemath.sty
Package: maybemath 2005/2/22
(/usr/share/texmf-texlive/tex/latex/tools/bm.sty
Package: bm 2004/02/26 v1.1c Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup5
\symboldletters=\mathgroup6
\symboldsymbols=\mathgroup7
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 138.
LaTeX Info: Redefining \bm on input line 204.
)))
(/usr/share/texmf-texlive/tex/latex/tools/xspace.sty
Package: xspace 2006/05/08 v1.12 Space after command names (DPC,MH)
))) (./hepunits.sty
Package: hepunits 2007/09/27 High-energy physics units by Andy Buckley (v1.1.1)
(./SIunits.sty
Package: SIunits 2007/12/02 v1.36 Support for the International System of units
(MH)
\@qskwidth=\skip94
\symgreek=\mathgroup8
(./SIunits.cfg)
LaTeX Info: Redefining \usk on input line 576.
Option `mediumspace' provided!
LaTeX Info: Redefining \@qsk on input line 576.
Option `thickqspace' provided!
Option `textstyle' provided!
Option `squaren' provided!
))
LaTeX Info: Redefining \th on input line 8.
LaTeX Info: Redefining \pod on input line 57.
) (/usr/share/texmf-texlive/tex/latex/natbib/natbib.sty
Package: natbib 2009/07/16 8.31 (PWD, AO)
Package natbib Warning: The `cite' package should not be used
(natbib) with natbib. Use option `sort' instead.
\bibhang=\skip95
\bibsep=\skip96
LaTeX Info: Redefining \cite on input line 694.
LaTeX Info: Redefining \citenum on input line 708.
\c@NAT@ctr=\count154
)
Package array Warning: Column D is already defined on input line 15.
LaTeX Warning: Unused global option(s):
[noroman].
(./thesis.aux)
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 105.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 105.
(/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 105.
LaTeX Info: Redefining \microtypecontext on input line 105.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: Automatic font expansion enabled (level 2),
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
Package microtype Info: Using default expansion set `basictext'.
Package microtype Info: No tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
(/usr/share/texmf-texlive/tex/latex/microtype/mt-cmr.cfg
File: mt-cmr.cfg 2008/02/29 v1.9a microtype config. file: Computer Modern Roman
(RS)
)
(/usr/share/texmf-texlive/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count155
\scratchdimen=\dimen193
\scratchbox=\box43
\nofMPsegments=\count156
\nofMParguments=\count157
\everyMPshowfont=\toks36
\MPscratchCnt=\count158
\MPscratchDim=\dimen194
\MPnumerator=\count159
\everyMPtoPDFconversion=\toks37
)
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: subfigure package is loaded.
Package caption Info: End \AtBeginDocument code.
ABD: EveryShipout initializing macros
Option `squaren' provided!
Command \squaren defined by SIunits package!
LaTeX Info: Redefining \micro on input line 105.
\openout3 = `comment.cut'.
(./comment.cut (./frontmatter.tex
LaTeX Font Info: Try loading font information for U+rsfs on input line 4.
(/usr/share/texmf-texlive/tex/latex/jknapltx/ursfs.fd
File: ursfs.fd 1998/03/24 rsfs font definition file (jk)
)
(/usr/share/texmf-texlive/tex/latex/microtype/mt-eur.cfg
File: mt-eur.cfg 2006/07/31 v1.1 microtype config. file: AMS Euler Roman (RS)
) (./cpright.tex
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]) [2
] [3
] [4
] [5]
[6
] [7] [8
] (./thesis.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.
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 17.
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 29.
[9]
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 55.
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 64.
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 77.
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 78.
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 79.
[10]
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 82.
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 86.
)
\tf@toc=\write5
\openout5 = `thesis.toc'.
[11] [12
] (./thesis.lof [13] [14]
Underfull \vbox (badness 10000) has occurred while \output is active []
[15]
Underfull \vbox (badness 10000) has occurred while \output is active []
[16]
Underfull \vbox (badness 10000) has occurred while \output is active []
[17]
Underfull \vbox (badness 10000) has occurred while \output is active []
[18]
Underfull \vbox (badness 10000) has occurred while \output is active []
[19]
Underfull \vbox (badness 10000) has occurred while \output is active []
[20]
Underfull \vbox (badness 10000) has occurred while \output is active []
[21]
Underfull \vbox (badness 10000) has occurred while \output is active []
[22]
Underfull \vbox (badness 10000) has occurred while \output is active []
[23]
Overfull \hbox (14.98808pt too wide) in paragraph at lines 92--92
[][] []\OT1/cmr/m/n/12 (-20) Per-event delta neg-a-tive log-likelihood ($^^A\O
ML/cmm/m/it/12 nll$\OT1/cmr/m/n/12 (-20) ) dis-tri-bu-tions for the background-
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[24])
\tf@lof=\write6
\openout6 = `thesis.lof'.
[25] [26
] (./thesis.lot
Underfull \vbox (badness 10000) has occurred while \output is active []
[27]
Underfull \vbox (badness 10000) has occurred while \output is active []
[28])
\tf@lot=\write7
\openout7 = `thesis.lot'.
[29] [30
]))
\openout3 = `comment.cut'.
(./comment.cut (./introduction.tex [31] [32
]
Chapter 1.
Underfull \vbox (badness 5431) has occurred while \output is active []
[33])
(./theory/theory.tex [34]
Chapter 2.
Underfull \vbox (badness 1968) has occurred while \output is active []
[35
]
LaTeX Font Info: Try loading font information for OMS+cmr on input line 42.
(/usr/share/texmf-texlive/tex/latex/base/omscmr.fd
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <12> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 42.
[36]
Overfull \hbox (7.45966pt too wide) in paragraph at lines 95--111
[]
[]
[37]
Underfull \vbox (badness 10000) has occurred while \output is active []
[38]
Underfull \vbox (badness 10000) has occurred while \output is active []
[39]
Underfull \vbox (badness 1968) has occurred while \output is active []
[40]