-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis_main.log
executable file
·2233 lines (1706 loc) · 81.3 KB
/
thesis_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.141592-1.40.4 (MiKTeX 2.7) (preloaded format=pdflatex 2008.2.7) 12 JAN 2010 21:35
entering extended mode
**thesis_main.tex
(thesis_main.tex
LaTeX2e <2005/12/01>
Babel <v3.8h> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman, ngerman, french, loaded.
(C:\Programs\MiKTeX\tex\latex\base\report.cls
Document Class: report 2005/09/16 v1.4f Standard LaTeX document class
(C:\Programs\MiKTeX\tex\latex\base\size12.clo
File: size12.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
) (kjfsty.sty
(C:\Programs\MiKTeX\tex\latex\amsmath\amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
(C:\Programs\MiKTeX\tex\latex\amsmath\amstext.sty
Package: amstext 2000/06/29 v2.01
(C:\Programs\MiKTeX\tex\latex\amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks14
\ex@=\dimen103
))
(C:\Programs\MiKTeX\tex\latex\amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen104
)
(C:\Programs\MiKTeX\tex\latex\amsmath\amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count88
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count89
\leftroot@=\count90
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count91
\DOTSCASE@=\count92
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@=\box26
\strutbox@=\box27
\big@size=\dimen105
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count93
\c@MaxMatrixCols=\count94
\dotsspace@=\muskip10
\c@parentequation=\count95
\dspbrk@lvl=\count96
\tag@help=\toks15
\row@=\count97
\column@=\count98
\maxfields@=\count99
\andhelp@=\toks16
\eqnshift@=\dimen106
\alignsep@=\dimen107
\tagshift@=\dimen108
\tagwidth@=\dimen109
\totwidth@=\dimen110
\lineht@=\dimen111
\@envbody=\toks17
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks18
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(C:\Programs\MiKTeX\tex\latex\amsfonts\amssymb.sty
Package: amssymb 2002/01/22 v2.2d
(C:\Programs\MiKTeX\tex\latex\amsfonts\amsfonts.sty
Package: amsfonts 2001/10/25 v2.2f
LaTeX Font Info: Try loading font information for OMX+cmex on input line 76.
(C:\Programs\MiKTeX\tex\latex\base\omxcmex.fd
File: omxcmex.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
\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 132.
))
(C:\Programs\MiKTeX\tex\latex\setspace\setspace.sty
Package: setspace 2000/12/01 6.7 Contributed and Supported LaTeX2e package
Package: `setspace' 6.7 <2000/12/01>
) (C:\Programs\MiKTeX\tex\latex\booktabs\booktabs.sty
Package: booktabs 2005/04/14 v1.61803 publication quality tables
\heavyrulewidth=\dimen112
\lightrulewidth=\dimen113
\cmidrulewidth=\dimen114
\belowrulesep=\dimen115
\belowbottomsep=\dimen116
\aboverulesep=\dimen117
\abovetopsep=\dimen118
\cmidrulesep=\dimen119
\cmidrulekern=\dimen120
\defaultaddspace=\dimen121
\@cmidla=\count100
\@cmidlb=\count101
\@aboverulesep=\dimen122
\@belowrulesep=\dimen123
\@thisruleclass=\count102
\@lastruleclass=\count103
\@thisrulewidth=\dimen124
)
(C:\Programs\MiKTeX\tex\latex\multirow\multirow.sty
\bigstrutjot=\dimen125
)
(C:\Programs\MiKTeX\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.
(C:\Programs\MiKTeX\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.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 311.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 312.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 313.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 314.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 315.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 316.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 317.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 318.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 319.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 320.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 321.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 322.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 323.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 324.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 326.
)
(C:\Programs\MiKTeX\tex\generic\oberdiek\ifpdf.sty
Package: ifpdf 2007/09/09 v1.5 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode detected.
)
(C:\Programs\MiKTeX\tex\latex\graphics\graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(C:\Programs\MiKTeX\tex\latex\graphics\keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks19
)
(C:\Programs\MiKTeX\tex\latex\graphics\graphics.sty
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(C:\Programs\MiKTeX\tex\latex\graphics\trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(C:\Programs\MiKTeX\tex\latex\00miktex\graphics.cfg
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 90.
(C:\Programs\MiKTeX\tex\latex\graphics\pdftex.def
File: pdftex.def 2007/06/12 v0.04h Graphics/color for pdfTeX
\Gread@gobject=\count104
))
\Gin@req@height=\dimen126
\Gin@req@width=\dimen127
)
(C:\Programs\MiKTeX\tex\latex\oberdiek\epstopdf.sty
Package: epstopdf 2007/11/11 v1.6 Conversion with epstopdf on the fly (HO)
(C:\Programs\MiKTeX\tex\generic\oberdiek\infwarerr.sty
Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (HO)
)
(C:\Programs\MiKTeX\tex\latex\oberdiek\grfext.sty
Package: grfext 2007/09/30 v1.0 Managing graphics extensions (HO)
)
(C:\Programs\MiKTeX\tex\latex\oberdiek\kvoptions.sty
Package: kvoptions 2007/10/18 v3.0 Keyval support for LaTeX options (HO)
)
(C:\Programs\MiKTeX\tex\generic\oberdiek\pdftexcmds.sty
Package: pdftexcmds 2007/11/12 v0.2 LuaTeX support for pdfTeX utility functions
(HO)
Package pdftexcmds Info: LuaTeX not detected on input line 136.
)
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 323.
)
(C:\Programs\MiKTeX\tex\latex\graphics\color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(C:\Programs\MiKTeX\tex\latex\00miktex\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.
)
(C:\Programs\MiKTeX\tex\latex\hyperref\hyperref.sty
Package: hyperref 2007/11/17 v6.77f Hypertext links for LaTeX
(C:\Programs\MiKTeX\tex\latex\oberdiek\hycolor.sty
Package: hycolor 2007/04/11 v1.1 Code for color options of hyperref/bookmark (H
O)
)
\@linkdim=\dimen128
\Hy@linkcounter=\count105
\Hy@pagecounter=\count106
(C:\Programs\MiKTeX\tex\latex\hyperref\pd1enc.def
File: pd1enc.def 2007/11/17 v6.77f Hyperref: PDFDocEncoding definition (HO)
)
(C:\Programs\MiKTeX\tex\generic\oberdiek\etexcmds.sty
Package: etexcmds 2007/09/09 v1.1 Prefix for e-TeX command names (HO)
)
(C:\Programs\MiKTeX\tex\latex\00miktex\hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `linktocpage' set `true' on input line 2663.
Package hyperref Info: Hyper figures OFF on input line 2699.
Package hyperref Info: Link nesting OFF on input line 2704.
Package hyperref Info: Hyper index ON on input line 2707.
Package hyperref Info: Plain pages OFF on input line 2714.
Package hyperref Info: Backreferencing OFF on input line 2719.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 2875.
(C:\Programs\MiKTeX\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 3045.
(C:\Programs\MiKTeX\tex\generic\oberdiek\bitset.sty
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
(C:\Programs\MiKTeX\tex\generic\oberdiek\intcalc.sty
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
(C:\Programs\MiKTeX\tex\generic\oberdiek\bigintcalc.sty
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
))
(C:\Programs\MiKTeX\tex\generic\oberdiek\kvsetkeys.sty
Package: kvsetkeys 2007/09/29 v1.3 Key value parser with default handler suppor
t (HO)
)
\Fld@menulength=\count107
\Field@Width=\dimen129
\Fld@charsize=\dimen130
\Field@toks=\toks20
Package hyperref Info: Hyper figures OFF on input line 3926.
Package hyperref Info: Link nesting OFF on input line 3931.
Package hyperref Info: Hyper index ON on input line 3934.
Package hyperref Info: backreferencing OFF on input line 3941.
Package hyperref Info: Link coloring OFF on input line 3946.
(C:\Programs\MiKTeX\tex\generic\oberdiek\atbegshi.sty
Package: atbegshi 2007/09/09 v1.6 At begin shipout hook (HO)
)
\Hy@abspage=\count108
\c@Item=\count109
\c@Hfootnote=\count110
)
*hyperref using default driver hpdftex*
(C:\Programs\MiKTeX\tex\latex\hyperref\hpdftex.def
File: hpdftex.def 2007/11/17 v6.77f Hyperref driver for pdfTeX
\Fld@listcount=\count111
)
Package hyperref Info: Option `colorlinks' set `true' on input line 17.
Package hyperref Warning: Option `pagebackref' has already been used,
(hyperref) setting the option has no effect on input line 17.
Package hyperref Info: Option `breaklinks' set `true' on input line 17.
(C:\Programs\MiKTeX\tex\latex\cite\cite.sty
LaTeX Info: Redefining \cite on input line 149.
LaTeX Info: Redefining \nocite on input line 214.
Package: cite 2003/11/04 v 4.01
)
(C:\Programs\MiKTeX\tex\latex\caption\caption.sty
Package: caption 2008/08/24 v3.1j Customizing captions (AR)
(C:\Programs\MiKTeX\tex\latex\caption\caption3.sty
Package: caption3 2008/08/24 v3.1j caption3 kernel (AR)
\captionmargin=\dimen131
\captionmargin@=\dimen132
\captionwidth=\dimen133
\caption@indent=\dimen134
\caption@parindent=\dimen135
\caption@hangindent=\dimen136
)
\c@ContinuedFloat=\count112
Package caption Info: hyperref package is loaded.
)
(C:\Programs\MiKTeX\tex\latex\subfig\subfig.sty
Package: subfig 2005/06/28 ver: 1.3 subfig package
\c@KVtest=\count113
\sf@farskip=\skip46
\sf@captopadj=\dimen137
\sf@capskip=\skip47
\sf@nearskip=\skip48
\c@subfigure=\count114
\c@subfigure@save=\count115
\c@lofdepth=\count116
\c@subtable=\count117
\c@subtable@save=\count118
\c@lotdepth=\count119
\sf@top=\skip49
\sf@bottom=\skip50
)
(C:\Programs\MiKTeX\tex\latex\base\fixltx2e.sty
Package: fixltx2e 2006/03/24 v1.1n fixes to LaTeX
LaTeX Info: Redefining \em on input line 420.
LaTeX Info: The control sequence `\[' is already robust on input line 471.
LaTeX Info: The control sequence `\]' is already robust on input line 472.
)
(C:\Programs\MiKTeX\tex\latex\ltxmisc\dblfloatfix.sty
Package: dblfloatfix 2003/11/18 v1.0 (MH)
\@dblbotnum=\count120
\c@dblbotnumber=\count121
) (PUTHEDS.sty)
(C:\Programs\MiKTeX\tex\latex\fourier\fourier.sty
Package: fourier 2005/01/01 1.4 fourier-GUTenberg package
(C:\Programs\MiKTeX\tex\latex\base\fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(C:\Programs\MiKTeX\tex\latex\base\t1enc.def
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
(C:\Programs\MiKTeX\tex\latex\fourier\fourier-orns.sty
Package: fourier-orns 2004/01/30 1.1 fourier-ornaments package
)
LaTeX Font Info: Redeclaring symbol font `operators' on input line 50.
LaTeX Font Warning: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `normal' on input line 50.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> T1/futs/m/n on input line 50.
LaTeX Font Warning: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `bold' on input line 50.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> T1/futs/m/n on input line 50.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) T1/futs/m/n --> T1/futs/b/n on input line 51.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 59.
LaTeX Font Warning: Encoding `OML' has changed to `FML' for symbol font
(Font) `letters' in the math version `normal' on input line 59.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> FML/futmi/m/it on input line 59.
LaTeX Font Warning: Encoding `OML' has changed to `FML' for symbol font
(Font) `letters' in the math version `bold' on input line 59.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> FML/futmi/m/it on input line 59.
\symotherletters=\mathgroup6
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) FML/futmi/m/it --> FML/futmi/b/it on input line 61.
LaTeX Font Info: Overwriting symbol font `otherletters' in version `bold'
(Font) FML/futm/m/it --> FML/futm/b/it on input line 62.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 63.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 64.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 65.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 66.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 67.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 68.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 69.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 70.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 71.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 72.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 73.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 113.
LaTeX Font Warning: Encoding `OMS' has changed to `FMS' for symbol font
(Font) `symbols' in the math version `normal' on input line 113.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> FMS/futm/m/n on input line 113.
LaTeX Font Warning: Encoding `OMS' has changed to `FMS' for symbol font
(Font) `symbols' in the math version `bold' on input line 113.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> FMS/futm/m/n on input line 113.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 114.
LaTeX Font Warning: Encoding `OMX' has changed to `FMX' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 1
14.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> FMX/futm/m/n on input line 114.
LaTeX Font Warning: Encoding `OMX' has changed to `FMX' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 114
.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> FMX/futm/m/n on input line 114.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 115.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> T1/futs/bx/n on input line 115.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> T1/futs/bx/n on input line 115.
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line 116.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 117.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> T1/futs/m/it on input line 117.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> T1/futs/m/it on input line 117.
LaTeX Font Info: Redeclaring math alphabet \mathcal on input line 118.
LaTeX Font Info: Redeclaring math symbol \varkappa on input line 119.
LaTeX Font Info: Redeclaring math symbol \leqslant on input line 125.
LaTeX Font Info: Redeclaring math symbol \geqslant on input line 126.
LaTeX Font Info: Redeclaring math symbol \vDash on input line 129.
LaTeX Font Info: Redeclaring math symbol \blacktriangleleft on input line 13
0.
LaTeX Font Info: Redeclaring math symbol \blacktriangleright on input line 1
31.
LaTeX Font Info: Redeclaring math symbol \nleqslant on input line 132.
LaTeX Font Info: Redeclaring math symbol \ngeqslant on input line 133.
LaTeX Font Info: Redeclaring math symbol \parallel on input line 134.
LaTeX Font Info: Redeclaring math symbol \nparallel on input line 135.
LaTeX Font Info: Redeclaring math symbol \nvDash on input line 137.
LaTeX Font Info: Redeclaring math symbol \intercal on input line 138.
LaTeX Font Info: Redeclaring math symbol \hslash on input line 139.
LaTeX Font Info: Redeclaring math symbol \nexists on input line 140.
LaTeX Font Info: Redeclaring math symbol \complement on input line 141.
LaTeX Font Info: Redeclaring math symbol \varsubsetneq on input line 142.
LaTeX Font Info: Redeclaring math symbol \hbar on input line 148.
LaTeX Font Info: Redeclaring math symbol \smallsetminus on input line 149.
LaTeX Font Info: Redeclaring math symbol \subsetneqq on input line 150.
LaTeX Font Info: Redeclaring math symbol \rightrightarrows on input line 151
.
LaTeX Font Info: Redeclaring math symbol \leftleftarrows on input line 152.
LaTeX Font Info: Redeclaring math symbol \square on input line 153.
LaTeX Font Info: Redeclaring math symbol \curvearrowleft on input line 154.
LaTeX Font Info: Redeclaring math symbol \curvearrowright on input line 155.
LaTeX Font Info: Redeclaring math symbol \blacksquare on input line 156.
LaTeX Font Info: Redeclaring math symbol \varkappa on input line 186.
LaTeX Font Info: Redeclaring math symbol \varvarrho on input line 187.
LaTeX Font Info: Redeclaring math delimiter \Vert on input line 210.
LaTeX Font Info: Redeclaring math delimiter \vert on input line 215.
LaTeX Font Info: Redeclaring math delimiter \lvert on input line 217.
LaTeX Font Info: Redeclaring math delimiter \rvert on input line 219.
LaTeX Font Info: Redeclaring math delimiter \lVert on input line 221.
LaTeX Font Info: Redeclaring math delimiter \rVert on input line 223.
LaTeX Font Info: Redeclaring math delimiter \Downarrow on input line 225.
LaTeX Font Info: Redeclaring math delimiter \backslash on input line 227.
LaTeX Font Info: Redeclaring math delimiter \rangle on input line 229.
LaTeX Font Info: Redeclaring math delimiter \langle on input line 231.
LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 233.
LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 235.
LaTeX Font Info: Redeclaring math delimiter \rceil on input line 237.
LaTeX Font Info: Redeclaring math delimiter \lceil on input line 239.
LaTeX Font Info: Redeclaring math delimiter \rfloor on input line 241.
LaTeX Font Info: Redeclaring math delimiter \lfloor on input line 243.
LaTeX Font Info: Redeclaring math accent \acute on input line 247.
LaTeX Font Info: Redeclaring math accent \grave on input line 248.
LaTeX Font Info: Redeclaring math accent \ddot on input line 249.
LaTeX Font Info: Redeclaring math accent \tilde on input line 250.
LaTeX Font Info: Redeclaring math accent \bar on input line 251.
LaTeX Font Info: Redeclaring math accent \breve on input line 252.
LaTeX Font Info: Redeclaring math accent \check on input line 253.
LaTeX Font Info: Redeclaring math accent \hat on input line 254.
LaTeX Font Info: Redeclaring math accent \dot on input line 255.
LaTeX Font Info: Redeclaring math accent \mathring on input line 256.
\symUfutm=\mathgroup7
) (C:\Programs\MiKTeX\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
)
Package Fancyhdr Warning: \fancyhead's `E' option without twoside option is use
less on input line 70.
Package Fancyhdr Warning: \fancyfoot's `E' option without twoside option is use
less on input line 73.
(C:\Programs\MiKTeX\tex\latex\tocbibind\tocbibind.sty
Package: tocbibind 2003/03/13 v1.5g extra ToC listings
Package tocbibind Note: The document has chapter divisions.
Package tocbibind Note: Using chapter style headings, unless overridden.
) (C:\Programs\MiKTeX\tex\latex\glossary\glossary.sty
Package: glossary 2006/07/20 2.4 (NLCT)
(C:\Programs\MiKTeX\tex\latex\base\ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
\gls@cols=\count122
No configuration file glossary.cfg found
(C:\Programs\MiKTeX\tex\latex\tools\longtable.sty
Package: longtable 2004/02/01 v4.11 Multi-page Table package (DPC)
\LTleft=\skip60
\LTright=\skip61
\LTpre=\skip62
\LTpost=\skip63
\LTchunksize=\count123
\LTcapwidth=\dimen138
\LT@head=\box28
\LT@firsthead=\box29
\LT@foot=\box30
\LT@lastfoot=\box31
\LT@cols=\count124
\LT@rows=\count125
\c@LT@tables=\count126
\c@LT@chunks=\count127
\LT@p@ftn=\toks21
)
\descriptionwidth=\skip64
\istfile=\write3
)
\@glossaryfile=\write4
Writing glossary file thesis_main.glo
Package Fancyhdr Warning: \fancyhfoffset's `E' option without twoside option is
useless on input line 107.
(C:\Programs\MiKTeX\tex\latex\jknappen\mathrsfs.sty
Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
\symrsfs=\mathgroup8
)
LaTeX Font Info: Redeclaring math alphabet \mathcal on input line 113.
LaTeX Font Info: Overwriting math alphabet `\mathcal' in version `normal'
(Font) FMS/cmsy/m/n --> OMS/cmsy/m/n on input line 113.
LaTeX Font Info: Overwriting math alphabet `\mathcal' in version `bold'
(Font) FMS/cmsy/m/n --> OMS/cmsy/m/n on input line 113.
(C:\Programs\MiKTeX\tex\latex\footmisc\footmisc.sty
Package: footmisc 2007/06/12 v5.4a a miscellany of footnote facilities
\FN@temptoken=\toks22
\footnotemargin=\dimen139
LaTeX Warning: Command \@makecol has changed.
Check if current package is valid.
LaTeX Warning: Command \@footnotetext has changed.
Check if current package is valid.
\FN@tempboxb=\box32
\FN@tempboxc=\box33
\footglue=\skip65
\footnotebaselineskip=\dimen140
\c@pp@next@reset=\count128
\c@@fnserial=\count129
Package footmisc Info: Declaring symbol style bringhurst on input line 910.
Package footmisc Info: Declaring symbol style chicago on input line 918.
Package footmisc Info: Declaring symbol style wiley on input line 927.
Package footmisc Info: Declaring symbol style lamport-robust on input line 938.
Package footmisc Info: Declaring symbol style lamport* on input line 958.
Package footmisc Info: Declaring symbol style lamport*-robust on input line 979
.
)) (thesis_main.aux (frontmatter.aux) (introduction.aux) (chpt1.aux
LaTeX Warning: Label `chpt1:shooting_example' multiply defined.
) (chpt2.aux) (chpt3.aux) (chpt4.aux) (conclusions.aux) (publications.aux)
(presentations.aux) (patents.aux))
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 5.
(C:\Programs\MiKTeX\tex\latex\base\ts1cmr.fd
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 5.
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for FML/futm/m/it on input line 5.
LaTeX Font Info: Try loading font information for FML+futm on input line 5.
(C:\Programs\MiKTeX\tex\latex\fourier\fmlfutm.fd
File: fmlfutm.fd 2004/10/30 Fontinst v1.926 font definitions for FML/futm.
)
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for FMS/futm/m/n on input line 5.
LaTeX Font Info: Try loading font information for FMS+futm on input line 5.
(C:\Programs\MiKTeX\tex\latex\fourier\fmsfutm.fd
File: fmsfutm.fd 2004/10/30 Fontinst v1.926 font definitions for FMS/futm.
)
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Checking defaults for FMX/futm/m/n on input line 5.
LaTeX Font Info: Try loading font information for FMX+futm on input line 5.
(C:\Programs\MiKTeX\tex\latex\fourier\fmxfutm.fd
File: fmxfutm.fd futm-extension
)
LaTeX Font Info: ... okay on input line 5.
LaTeX Font Info: Try loading font information for T1+futs on input line 5.
(C:\Programs\MiKTeX\tex\latex\fourier\t1futs.fd
File: t1futs.fd 2004/03/02 Fontinst v1.926 font definitions for T1/futs.
)
(C:\Programs\MiKTeX\tex\context\base\supp-pdf.tex
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count130
\scratchdimen=\dimen141
\scratchbox=\box34
\nofMPsegments=\count131
\nofMParguments=\count132
\MPscratchCnt=\count133
\MPscratchDim=\dimen142
\MPnumerator=\count134
\everyMPtoPDFconversion=\toks23
)
Package hyperref Info: Link coloring ON on input line 5.
(C:\Programs\MiKTeX\tex\latex\hyperref\nameref.sty
Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section
(C:\Programs\MiKTeX\tex\latex\oberdiek\refcount.sty
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
)
\c@section@level=\count135
)
LaTeX Info: Redefining \ref on input line 5.
LaTeX Info: Redefining \pageref on input line 5.
(thesis_main.out)
(thesis_main.out)
\@outlinefile=\write5
\AtBeginShipoutBox=\box35
Package caption Info: Begin \AtBeginDocument code.
Package caption3 Info: subfig package 1.2 or 1.3 is loaded.
LaTeX Info: Redefining \subref on input line 5.
Package caption Info: longtable package is loaded.
(C:\Programs\MiKTeX\tex\latex\caption\ltcaption.sty
Package: ltcaption 2008/03/28 v1.2 longtable captions (AR)
)
Package caption Info: End \AtBeginDocument code.
(frontmatter.tex
Package epstopdf Info: Output file is already uptodate.
<../thesis/chpt4/PrincetonShield.pdf, id=413, 24.09pt x 30.1125pt>
File: ../thesis/chpt4/PrincetonShield.pdf Graphic file (type pdf)
<use ../thesis/chpt4/PrincetonShield.pdf>
LaTeX Font Info: Font shape `T1/futs/bx/sc' in size <24.88> not available
(Font) Font shape `T1/futs/b/sc' tried instead on input line 11.
[1
{C:/Documents and Settings/All Users/Application Data/MiKTeX/2.7/pdftex/config/
pdftex.map} <C:/thesis/chpt4/PrincetonShield.pdf>]
LaTeX Font Info: Try loading font information for TS1+futs on input line 94.
(C:\Programs\MiKTeX\tex\latex\fourier\ts1futs.fd
File: ts1futs.fd 2004/03/26 Fontinst v1.926 font definitions for TS1/futs.
) [2
]
Package hyperref Warning: No destination for bookmark of \addcontentsline,
(hyperref) destination is added on input line 137.
LaTeX Font Info: Font shape `T1/futs/bx/n' in size <17.28> not available
(Font) Font shape `T1/futs/b/n' tried instead on input line 139.
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 14.49998pt.
We now make it that large for the rest of the document.
This may cause the page layout to be inconsistent, however.
[3
] [4
] [5])
LaTeX Font Info: Font shape `T1/futs/bx/n' in size <20.74> not available
(Font) Font shape `T1/futs/b/n' tried instead on input line 14.
(thesis_main.toc
LaTeX Font Info: Try loading font information for FML+futmi on input line 1.
(C:\Programs\MiKTeX\tex\latex\fourier\fmlfutmi.fd
File: fmlfutmi.fd 2004/10/30 Fontinst v1.926 font definitions for FML/futmi.
)
LaTeX Font Info: Font shape `FMX/futm/m/n' will be
(Font) scaled to size 11.03998pt on input line 1.
LaTeX Font Info: Font shape `FMX/futm/m/n' will be
(Font) scaled to size 8.27998pt on input line 1.
LaTeX Font Info: Font shape `FMX/futm/m/n' will be
(Font) scaled to size 6.43999pt on input line 1.
LaTeX Font Info: Try loading font information for U+msa on input line 1.
(C:\Programs\MiKTeX\tex\latex\amsfonts\umsa.fd
File: umsa.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info: Try loading font information for U+msb on input line 1.
(C:\Programs\MiKTeX\tex\latex\amsfonts\umsb.fd
File: umsb.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info: Font shape `U/futm/m/n' will be
(Font) scaled to size 11.03998pt on input line 1.
LaTeX Font Info: Font shape `U/futm/m/n' will be
(Font) scaled to size 8.27998pt on input line 1.
LaTeX Font Info: Font shape `U/futm/m/n' will be
(Font) scaled to size 6.43999pt on input line 1.
LaTeX Font Info: Try loading font information for U+rsfs on input line 1.
(C:\Programs\MiKTeX\tex\latex\jknappen\ursfs.fd
File: ursfs.fd 1998/03/24 rsfs font definition file (jk)
)
LaTeX Font Info: Font shape `T1/futs/bx/n' in size <12> not available
(Font) Font shape `T1/futs/b/n' tried instead on input line 6.
[6
\FN@pp@footnotehinttrue
\FN@pp@footnotehinttrue
]
LaTeX Font Info: Font shape `T1/futs/bx/it' in size <12> not available
(Font) Font shape `T1/futs/b/it' tried instead on input line 55.
[7]
Overfull \hbox (1.19994pt too wide) detected at line 68
[][][]\T1/futs/m/n/12 102[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 69
[][][]\T1/futs/m/n/12 104[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 70
[][][]\T1/futs/m/n/12 105[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 71
[][][]\T1/futs/m/n/12 105[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 72
[][][]\T1/futs/m/n/12 107[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 73
[][][]\T1/futs/m/n/12 108[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 74
[][][]\T1/futs/m/n/12 108[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 76
[][][]\T1/futs/m/n/12 112[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 77
[][][]\T1/futs/m/n/12 113[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 78
[][][]\T1/futs/m/n/12 116[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 79
[][][]\T1/futs/m/n/12 116[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 80
[][][]\T1/futs/m/n/12 118[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 81
[][][]\T1/futs/m/n/12 123[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 82
[][][]\T1/futs/m/n/12 128[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 83
[][][]\T1/futs/m/n/12 128[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 84
[][][]\T1/futs/m/n/12 128[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 85
[][][]\T1/futs/m/n/12 134[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 86
[][][]\T1/futs/m/n/12 134[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 87
[][][]\T1/futs/m/n/12 134[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 88
[][][]\T1/futs/m/n/12 138[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 89
[][][]\T1/futs/m/n/12 138[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 91
[][][]\T1/futs/m/n/12 141[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 92
[][][]\T1/futs/m/n/12 141[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 93
[][][]\T1/futs/m/n/12 142[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 94
[][][]\T1/futs/m/n/12 143[][]
[]
[8]
Overfull \hbox (1.19994pt too wide) detected at line 95
[][][]\T1/futs/m/n/12 144[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 96
[][][]\T1/futs/m/n/12 145[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 97
[][][]\T1/futs/m/n/12 145[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 98
[][][]\T1/futs/m/n/12 146[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 99
[][][]\T1/futs/m/n/12 146[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 100
[][][]\T1/futs/m/n/12 147[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 101
[][][]\T1/futs/m/n/12 147[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 102
[][][]\T1/futs/m/n/12 147[][]
[]
)
\tf@toc=\write6
[9] (thesis_main.lot
Overfull \hbox (1.19994pt too wide) detected at line 8
[][][]\T1/futs/m/n/12 100[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 9
[][][]\T1/futs/m/n/12 101[][]
[]
Overfull \hbox (1.19994pt too wide) detected at line 10
[][][]\T1/futs/m/n/12 102[][]
[]
)
\tf@lot=\write7
[10
] (thesis_main.lof [11