-
Notifications
You must be signed in to change notification settings - Fork 3
/
thesis.log
1495 lines (1191 loc) · 58.6 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 pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (format=pdflatex 2008.4.9) 7 JUL 2008 11:15
entering extended mode
\write18 enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2003/12/01>
Babel <v3.8d> and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(./thesis.cls
Document Class: thesis 2007/04/17 1.5 (DS)
(/opt/local/share/texmf-dist/tex/latex/base/book.cls
Document Class: book 2004/02/16 v1.4f Standard LaTeX document class
(/opt/local/share/texmf-dist/tex/latex/base/bk12.clo
File: bk12.clo 2004/02/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
)
(/opt/local/share/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/opt/local/share/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/opt/local/share/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR)
(/opt/local/share/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/opt/local/share/texmf-dist/tex/latex/graphics/graphics.cfg
File: graphics.cfg 2005/02/03 v1.3 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 80.
(/opt/local/share/texmf-dist/tex/latex/graphics/pdftex.def
File: pdftex.def 2002/06/19 v0.03k graphics/color for pdftex
\Gread@gobject=\count88
))
\Gin@req@height=\dimen103
\Gin@req@width=\dimen104
)
(/opt/local/share/texmf-dist/tex/latex/graphics/color.sty
Package: color 1999/02/16 v1.0i Standard LaTeX Color (DPC)
(/opt/local/share/texmf-dist/tex/latex/graphics/color.cfg
File: color.cfg 2005/02/03 v1.3 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 125.
)
(/opt/local/share/texmf-dist/tex/latex/txfonts/txfonts.sty
Package: txfonts 2005/01/03 v3.2
LaTeX Font Info: Redeclaring symbol font `operators' on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/txr/m/n on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/txr/m/n on input line 20.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/txr/m/n --> OT1/txr/bx/n on input line 21.
\symitalic=\mathgroup4
LaTeX Font Info: Overwriting symbol font `italic' in version `bold'
(Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 25.
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line 27.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 28.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 28.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 28.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/txr/m/it on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/txr/m/it on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 30.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 39.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/txss/m/n on input line 39.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/txss/m/n on input line 39.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/txss/m/n --> OT1/txss/b/n on input line 40.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 49.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 49.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 49.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/txtt/m/n --> OT1/txtt/b/n on input line 50.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 57.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/txmi/m/it on input line 57.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/txmi/m/it on input line 57.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/txmi/m/it --> OML/txmi/bx/it on input line 58.
\symlettersA=\mathgroup5
LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold'
(Font) U/txmia/m/it --> U/txmia/bx/it on input line 66.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 76.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/txsy/m/n on input line 76.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/txsy/m/n on input line 76.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/txsy/m/n --> OMS/txsy/bx/n on input line 77.
\symAMSa=\mathgroup6
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/txsya/m/n --> U/txsya/bx/n on input line 93.
\symAMSb=\mathgroup7
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/txsyb/m/n --> U/txsyb/bx/n on input line 102.
\symsymbolsC=\mathgroup8
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold'
(Font) U/txsyc/m/n --> U/txsyc/bx/n on input line 112.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 119.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 119.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 119.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/txex/m/n --> OMX/txex/bx/n on input line 120.
\symlargesymbolsA=\mathgroup9
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `bold'
(Font) U/txexa/m/n --> U/txexa/bx/n on input line 128.
LaTeX Info: Redefining \not on input line 1042.
) (./natbib.sty
Package: natbib 2003/06/06 7.1 (PWD)
\bibhang=\skip43
\bibsep=\skip44
LaTeX Info: Redefining \cite on input line 518.
\c@NAT@ctr=\count89
)
(./fancyhdr.sty
\fancy@headwidth=\skip45
\f@ncyO@elh=\skip46
\f@ncyO@erh=\skip47
\f@ncyO@olh=\skip48
\f@ncyO@orh=\skip49
\f@ncyO@elf=\skip50
\f@ncyO@erf=\skip51
\f@ncyO@olf=\skip52
\f@ncyO@orf=\skip53
) (./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.
) (/opt/local/share/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2004/02/22 v1.99f Standard LaTeX package
(/opt/local/share/texmf-dist/tex/latex/base/t1enc.def
File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
(/opt/local/share/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip10
Package: url 2004/03/15 ver 3.1 Verb mode for urls, etc.
)
(/opt/local/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2002/01/22 v2.2d
(/opt/local/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2001/10/25 v2.2f
\@emptytoks=\toks15
LaTeX Font Info: Redeclaring symbol font `AMSa' on input line 85.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `normal'
(Font) U/txsya/m/n --> U/msa/m/n on input line 85.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/txsya/bx/n --> U/msa/m/n on input line 85.
LaTeX Font Info: Redeclaring symbol font `AMSb' on input line 86.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `normal'
(Font) U/txsyb/m/n --> U/msb/m/n on input line 86.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/txsyb/bx/n --> U/msb/m/n on input line 86.
LaTeX Font Info: Redeclaring math delimiter \ulcorner on input line 100.
LaTeX Font Info: Redeclaring math delimiter \urcorner on input line 101.
LaTeX Font Info: Redeclaring math delimiter \llcorner on input line 102.
LaTeX Font Info: Redeclaring math delimiter \lrcorner on input line 103.
LaTeX Font Info: Redeclaring math alphabet \mathfrak on input line 131.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 132.
LaTeX Font Info: Redeclaring math alphabet \mathbb on input line 133.
LaTeX Font Info: Redeclaring math symbol \square on input line 164.
LaTeX Font Info: Redeclaring math symbol \lozenge on input line 165.
LaTeX Font Info: Redeclaring math symbol \vartriangleright on input line 166
.
LaTeX Font Info: Redeclaring math symbol \vartriangleleft on input line 167.
LaTeX Font Info: Redeclaring math symbol \trianglerighteq on input line 168.
LaTeX Font Info: Redeclaring math symbol \trianglelefteq on input line 169.
LaTeX Font Info: Redeclaring math symbol \rightsquigarrow on input line 170.
)
LaTeX Font Info: Redeclaring math symbol \boxdot on input line 60.
LaTeX Font Info: Redeclaring math symbol \boxplus on input line 61.
LaTeX Font Info: Redeclaring math symbol \boxtimes on input line 62.
LaTeX Font Info: Redeclaring math symbol \blacksquare on input line 64.
LaTeX Font Info: Redeclaring math symbol \centerdot on input line 65.
LaTeX Font Info: Redeclaring math symbol \blacklozenge on input line 67.
LaTeX Font Info: Redeclaring math symbol \circlearrowright on input line 68.
LaTeX Font Info: Redeclaring math symbol \circlearrowleft on input line 69.
LaTeX Font Info: Redeclaring math symbol \leftrightharpoons on input line 72
.
LaTeX Font Info: Redeclaring math symbol \boxminus on input line 73.
LaTeX Font Info: Redeclaring math symbol \Vdash on input line 74.
LaTeX Font Info: Redeclaring math symbol \Vvdash on input line 75.
LaTeX Font Info: Redeclaring math symbol \vDash on input line 76.
LaTeX Font Info: Redeclaring math symbol \twoheadrightarrow on input line 77
.
LaTeX Font Info: Redeclaring math symbol \twoheadleftarrow on input line 78.
LaTeX Font Info: Redeclaring math symbol \leftleftarrows on input line 79.
LaTeX Font Info: Redeclaring math symbol \rightrightarrows on input line 80.
LaTeX Font Info: Redeclaring math symbol \upuparrows on input line 81.
LaTeX Font Info: Redeclaring math symbol \downdownarrows on input line 82.
LaTeX Font Info: Redeclaring math symbol \upharpoonright on input line 83.
LaTeX Font Info: Redeclaring math symbol \downharpoonright on input line 85.
LaTeX Font Info: Redeclaring math symbol \upharpoonleft on input line 86.
LaTeX Font Info: Redeclaring math symbol \downharpoonleft on input line 87.
LaTeX Font Info: Redeclaring math symbol \rightarrowtail on input line 88.
LaTeX Font Info: Redeclaring math symbol \leftarrowtail on input line 89.
LaTeX Font Info: Redeclaring math symbol \leftrightarrows on input line 90.
LaTeX Font Info: Redeclaring math symbol \rightleftarrows on input line 91.
LaTeX Font Info: Redeclaring math symbol \Lsh on input line 92.
LaTeX Font Info: Redeclaring math symbol \Rsh on input line 93.
LaTeX Font Info: Redeclaring math symbol \leftrightsquigarrow on input line
95.
LaTeX Font Info: Redeclaring math symbol \looparrowleft on input line 96.
LaTeX Font Info: Redeclaring math symbol \looparrowright on input line 97.
LaTeX Font Info: Redeclaring math symbol \circeq on input line 98.
LaTeX Font Info: Redeclaring math symbol \succsim on input line 99.
LaTeX Font Info: Redeclaring math symbol \gtrsim on input line 100.
LaTeX Font Info: Redeclaring math symbol \gtrapprox on input line 101.
LaTeX Font Info: Redeclaring math symbol \multimap on input line 102.
LaTeX Font Info: Redeclaring math symbol \therefore on input line 103.
LaTeX Font Info: Redeclaring math symbol \because on input line 104.
LaTeX Font Info: Redeclaring math symbol \doteqdot on input line 105.
LaTeX Font Info: Redeclaring math symbol \triangleq on input line 107.
LaTeX Font Info: Redeclaring math symbol \precsim on input line 108.
LaTeX Font Info: Redeclaring math symbol \lesssim on input line 109.
LaTeX Font Info: Redeclaring math symbol \lessapprox on input line 110.
LaTeX Font Info: Redeclaring math symbol \eqslantless on input line 111.
LaTeX Font Info: Redeclaring math symbol \eqslantgtr on input line 112.
LaTeX Font Info: Redeclaring math symbol \curlyeqprec on input line 113.
LaTeX Font Info: Redeclaring math symbol \curlyeqsucc on input line 114.
LaTeX Font Info: Redeclaring math symbol \preccurlyeq on input line 115.
LaTeX Font Info: Redeclaring math symbol \leqq on input line 116.
LaTeX Font Info: Redeclaring math symbol \leqslant on input line 117.
LaTeX Font Info: Redeclaring math symbol \lessgtr on input line 118.
LaTeX Font Info: Redeclaring math symbol \backprime on input line 119.
LaTeX Font Info: Redeclaring math symbol \risingdotseq on input line 120.
LaTeX Font Info: Redeclaring math symbol \fallingdotseq on input line 121.
LaTeX Font Info: Redeclaring math symbol \succcurlyeq on input line 122.
LaTeX Font Info: Redeclaring math symbol \geqq on input line 123.
LaTeX Font Info: Redeclaring math symbol \geqslant on input line 124.
LaTeX Font Info: Redeclaring math symbol \gtrless on input line 125.
LaTeX Font Info: Redeclaring math symbol \bigstar on input line 133.
LaTeX Font Info: Redeclaring math symbol \between on input line 134.
LaTeX Font Info: Redeclaring math symbol \blacktriangledown on input line 13
5.
LaTeX Font Info: Redeclaring math symbol \blacktriangleright on input line 1
36.
LaTeX Font Info: Redeclaring math symbol \blacktriangleleft on input line 13
7.
LaTeX Font Info: Redeclaring math symbol \vartriangle on input line 138.
LaTeX Font Info: Redeclaring math symbol \blacktriangle on input line 139.
LaTeX Font Info: Redeclaring math symbol \triangledown on input line 140.
LaTeX Font Info: Redeclaring math symbol \eqcirc on input line 141.
LaTeX Font Info: Redeclaring math symbol \lesseqgtr on input line 142.
LaTeX Font Info: Redeclaring math symbol \gtreqless on input line 143.
LaTeX Font Info: Redeclaring math symbol \lesseqqgtr on input line 144.
LaTeX Font Info: Redeclaring math symbol \gtreqqless on input line 145.
LaTeX Font Info: Redeclaring math symbol \Rrightarrow on input line 146.
LaTeX Font Info: Redeclaring math symbol \Lleftarrow on input line 147.
LaTeX Font Info: Redeclaring math symbol \veebar on input line 148.
LaTeX Font Info: Redeclaring math symbol \barwedge on input line 149.
LaTeX Font Info: Redeclaring math symbol \doublebarwedge on input line 150.
LaTeX Font Info: Redeclaring math symbol \measuredangle on input line 153.
LaTeX Font Info: Redeclaring math symbol \sphericalangle on input line 154.
LaTeX Font Info: Redeclaring math symbol \varpropto on input line 155.
LaTeX Font Info: Redeclaring math symbol \smallsmile on input line 156.
LaTeX Font Info: Redeclaring math symbol \smallfrown on input line 157.
LaTeX Font Info: Redeclaring math symbol \Subset on input line 158.
LaTeX Font Info: Redeclaring math symbol \Supset on input line 159.
LaTeX Font Info: Redeclaring math symbol \Cup on input line 160.
LaTeX Font Info: Redeclaring math symbol \Cap on input line 162.
LaTeX Font Info: Redeclaring math symbol \curlywedge on input line 164.
LaTeX Font Info: Redeclaring math symbol \curlyvee on input line 165.
LaTeX Font Info: Redeclaring math symbol \leftthreetimes on input line 166.
LaTeX Font Info: Redeclaring math symbol \rightthreetimes on input line 167.
LaTeX Font Info: Redeclaring math symbol \subseteqq on input line 168.
LaTeX Font Info: Redeclaring math symbol \supseteqq on input line 169.
LaTeX Font Info: Redeclaring math symbol \bumpeq on input line 170.
LaTeX Font Info: Redeclaring math symbol \Bumpeq on input line 171.
LaTeX Font Info: Redeclaring math symbol \lll on input line 172.
LaTeX Font Info: Redeclaring math symbol \ggg on input line 174.
LaTeX Font Info: Redeclaring math symbol \circledS on input line 176.
LaTeX Font Info: Redeclaring math symbol \pitchfork on input line 177.
LaTeX Font Info: Redeclaring math symbol \dotplus on input line 178.
LaTeX Font Info: Redeclaring math symbol \backsim on input line 179.
LaTeX Font Info: Redeclaring math symbol \backsimeq on input line 180.
LaTeX Font Info: Redeclaring math symbol \complement on input line 181.
LaTeX Font Info: Redeclaring math symbol \intercal on input line 182.
LaTeX Font Info: Redeclaring math symbol \circledcirc on input line 183.
LaTeX Font Info: Redeclaring math symbol \circledast on input line 184.
LaTeX Font Info: Redeclaring math symbol \circleddash on input line 185.
LaTeX Font Info: Redeclaring math symbol \lvertneqq on input line 187.
LaTeX Font Info: Redeclaring math symbol \gvertneqq on input line 188.
LaTeX Font Info: Redeclaring math symbol \nleq on input line 189.
LaTeX Font Info: Redeclaring math symbol \ngeq on input line 190.
LaTeX Font Info: Redeclaring math symbol \nless on input line 191.
LaTeX Font Info: Redeclaring math symbol \ngtr on input line 192.
LaTeX Font Info: Redeclaring math symbol \nprec on input line 193.
LaTeX Font Info: Redeclaring math symbol \nsucc on input line 194.
LaTeX Font Info: Redeclaring math symbol \lneqq on input line 195.
LaTeX Font Info: Redeclaring math symbol \gneqq on input line 196.
LaTeX Font Info: Redeclaring math symbol \nleqslant on input line 197.
LaTeX Font Info: Redeclaring math symbol \ngeqslant on input line 198.
LaTeX Font Info: Redeclaring math symbol \lneq on input line 199.
LaTeX Font Info: Redeclaring math symbol \gneq on input line 200.
LaTeX Font Info: Redeclaring math symbol \npreceq on input line 201.
LaTeX Font Info: Redeclaring math symbol \nsucceq on input line 202.
LaTeX Font Info: Redeclaring math symbol \precnsim on input line 203.
LaTeX Font Info: Redeclaring math symbol \succnsim on input line 204.
LaTeX Font Info: Redeclaring math symbol \lnsim on input line 205.
LaTeX Font Info: Redeclaring math symbol \gnsim on input line 206.
LaTeX Font Info: Redeclaring math symbol \nleqq on input line 207.
LaTeX Font Info: Redeclaring math symbol \ngeqq on input line 208.
LaTeX Font Info: Redeclaring math symbol \precneqq on input line 209.
LaTeX Font Info: Redeclaring math symbol \succneqq on input line 210.
LaTeX Font Info: Redeclaring math symbol \precnapprox on input line 211.
LaTeX Font Info: Redeclaring math symbol \succnapprox on input line 212.
LaTeX Font Info: Redeclaring math symbol \lnapprox on input line 213.
LaTeX Font Info: Redeclaring math symbol \gnapprox on input line 214.
LaTeX Font Info: Redeclaring math symbol \nsim on input line 215.
LaTeX Font Info: Redeclaring math symbol \ncong on input line 216.
LaTeX Font Info: Redeclaring math symbol \diagup on input line 217.
LaTeX Font Info: Redeclaring math symbol \diagdown on input line 218.
LaTeX Font Info: Redeclaring math symbol \varsubsetneq on input line 219.
LaTeX Font Info: Redeclaring math symbol \varsupsetneq on input line 220.
LaTeX Font Info: Redeclaring math symbol \nsubseteqq on input line 221.
LaTeX Font Info: Redeclaring math symbol \nsupseteqq on input line 222.
LaTeX Font Info: Redeclaring math symbol \subsetneqq on input line 223.
LaTeX Font Info: Redeclaring math symbol \supsetneqq on input line 224.
LaTeX Font Info: Redeclaring math symbol \varsubsetneqq on input line 225.
LaTeX Font Info: Redeclaring math symbol \varsupsetneqq on input line 226.
LaTeX Font Info: Redeclaring math symbol \subsetneq on input line 227.
LaTeX Font Info: Redeclaring math symbol \supsetneq on input line 228.
LaTeX Font Info: Redeclaring math symbol \nsubseteq on input line 229.
LaTeX Font Info: Redeclaring math symbol \nsupseteq on input line 230.
LaTeX Font Info: Redeclaring math symbol \nparallel on input line 231.
LaTeX Font Info: Redeclaring math symbol \nmid on input line 232.
LaTeX Font Info: Redeclaring math symbol \nshortmid on input line 233.
LaTeX Font Info: Redeclaring math symbol \nshortparallel on input line 234.
LaTeX Font Info: Redeclaring math symbol \nvdash on input line 235.
LaTeX Font Info: Redeclaring math symbol \nVdash on input line 236.
LaTeX Font Info: Redeclaring math symbol \nvDash on input line 237.
LaTeX Font Info: Redeclaring math symbol \nVDash on input line 238.
LaTeX Font Info: Redeclaring math symbol \ntrianglerighteq on input line 239
.
LaTeX Font Info: Redeclaring math symbol \ntrianglelefteq on input line 240.
LaTeX Font Info: Redeclaring math symbol \ntriangleleft on input line 241.
LaTeX Font Info: Redeclaring math symbol \ntriangleright on input line 242.
LaTeX Font Info: Redeclaring math symbol \nleftarrow on input line 243.
LaTeX Font Info: Redeclaring math symbol \nrightarrow on input line 244.
LaTeX Font Info: Redeclaring math symbol \nLeftarrow on input line 245.
LaTeX Font Info: Redeclaring math symbol \nRightarrow on input line 246.
LaTeX Font Info: Redeclaring math symbol \nLeftrightarrow on input line 247.
LaTeX Font Info: Redeclaring math symbol \nleftrightarrow on input line 248.
LaTeX Font Info: Redeclaring math symbol \divideontimes on input line 249.
LaTeX Font Info: Redeclaring math symbol \varnothing on input line 250.
LaTeX Font Info: Redeclaring math symbol \nexists on input line 251.
LaTeX Font Info: Redeclaring math symbol \Finv on input line 252.
LaTeX Font Info: Redeclaring math symbol \Game on input line 253.
LaTeX Font Info: Redeclaring math symbol \eth on input line 256.
LaTeX Font Info: Redeclaring math symbol \eqsim on input line 257.
LaTeX Font Info: Redeclaring math symbol \beth on input line 258.
LaTeX Font Info: Redeclaring math symbol \gimel on input line 259.
LaTeX Font Info: Redeclaring math symbol \daleth on input line 260.
LaTeX Font Info: Redeclaring math symbol \lessdot on input line 261.
LaTeX Font Info: Redeclaring math symbol \gtrdot on input line 262.
LaTeX Font Info: Redeclaring math symbol \ltimes on input line 263.
LaTeX Font Info: Redeclaring math symbol \rtimes on input line 264.
LaTeX Font Info: Redeclaring math symbol \shortmid on input line 265.
LaTeX Font Info: Redeclaring math symbol \shortparallel on input line 266.
LaTeX Font Info: Redeclaring math symbol \smallsetminus on input line 267.
LaTeX Font Info: Redeclaring math symbol \thicksim on input line 268.
LaTeX Font Info: Redeclaring math symbol \thickapprox on input line 269.
LaTeX Font Info: Redeclaring math symbol \approxeq on input line 270.
LaTeX Font Info: Redeclaring math symbol \succapprox on input line 271.
LaTeX Font Info: Redeclaring math symbol \precapprox on input line 272.
LaTeX Font Info: Redeclaring math symbol \curvearrowleft on input line 273.
LaTeX Font Info: Redeclaring math symbol \curvearrowright on input line 274.
LaTeX Font Info: Redeclaring math symbol \digamma on input line 275.
LaTeX Font Info: Redeclaring math symbol \varkappa on input line 276.
LaTeX Font Info: Redeclaring math symbol \Bbbk on input line 277.
LaTeX Font Info: Redeclaring math symbol \hslash on input line 278.
LaTeX Font Info: Redeclaring math symbol \backepsilon on input line 281.
)
(/opt/local/share/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/opt/local/share/texmf-dist/tex/latex/tools/array.sty
Package: array 2003/12/17 v2.4a Tabular extension package (FMi)
\col@sep=\dimen105
\extrarowheight=\dimen106
\NC@list=\toks16
\extratabsurround=\skip54
\backup@length=\skip55
)
(/opt/local/share/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2004/02/14 v1.6e multicolumn formatting (FMi)
\c@tracingmulticols=\count90
\mult@box=\box26
\multicol@leftmargin=\dimen107
\c@unbalance=\count91
\c@collectmore=\count92
\doublecol@number=\count93
\multicoltolerance=\count94
\multicolpretolerance=\count95
\full@width=\dimen108
\page@free=\dimen109
\premulticols=\dimen110
\postmulticols=\dimen111
\multicolsep=\skip56
\multicolbaselineskip=\skip57
\partial@page=\box27
\last@line=\box28
\mult@rightbox=\box29
\mult@grightbox=\box30
\mult@gfirstbox=\box31
\mult@firstbox=\box32
\@tempa=\box33
\@tempa=\box34
\@tempa=\box35
\@tempa=\box36
\@tempa=\box37
\@tempa=\box38
\@tempa=\box39
\@tempa=\box40
\@tempa=\box41
\@tempa=\box42
\@tempa=\box43
\@tempa=\box44
\@tempa=\box45
\@tempa=\box46
\@tempa=\box47
\@tempa=\box48
\@tempa=\box49
\c@columnbadness=\count96
\c@finalcolumnbadness=\count97
\last@try=\dimen112
\multicolovershoot=\dimen113
\multicolundershoot=\dimen114
\mult@nat@firstbox=\box50
\colbreak@box=\box51
))
(/opt/local/share/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2003/11/30 v6.74m Hypertext links for LaTeX
\@linkdim=\dimen115
\Hy@linkcounter=\count98
\Hy@pagecounter=\count99
(/opt/local/share/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2003/11/30 v6.74m Hyperref: PDFDocEncoding definition (HO)
)
(/opt/local/share/texmf-dist/tex/latex/hyperref/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive and teTeX
)
Package hyperref Info: Option `linktocpage' set `true' on input line 1830.
Package hyperref Info: Hyper figures OFF on input line 1880.
Package hyperref Info: Link nesting OFF on input line 1885.
Package hyperref Info: Hyper index ON on input line 1888.
Package hyperref Info: Plain pages ON on input line 1893.
Package hyperref Info: Backreferencing OFF on input line 1900.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 2004.
LaTeX Info: Redefining \url on input line 2143.
\Fld@menulength=\count100
\Field@Width=\dimen116
\Fld@charsize=\dimen117
\Choice@toks=\toks17
\Field@toks=\toks18
Package hyperref Info: Hyper figures OFF on input line 2618.
Package hyperref Info: Link nesting OFF on input line 2623.
Package hyperref Info: Hyper index ON on input line 2626.
Package hyperref Info: backreferencing OFF on input line 2633.
Package hyperref Info: Link coloring OFF on input line 2638.
\c@Item=\count101
\c@Hfootnote=\count102
)
*hyperref using default driver hpdftex*
(/opt/local/share/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2003/11/30 v6.74m Hyperref driver for pdfTeX
(/opt/local/share/texmf-dist/tex/latex/psnfss/pifont.sty
Package: pifont 2004/09/15 PSNFSS-v9.2 Pi font support (SPQR)
LaTeX Font Info: Try loading font information for U+pzd on input line 63.
(/opt/local/share/texmf-dist/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.
(/opt/local/share/texmf-dist/tex/latex/psnfss/upsy.fd
File: upsy.fd 2001/06/04 font definitions for U/psy.
))
\Fld@listcount=\count103
\@outlinefile=\write3
)
(/opt/local/share/texmf-dist/tex/latex/fancybox/fancybox.sty
Package: fancybox 2000/09/19 1.3
Style option: `fancybox' v1.3 <2000/09/19> (tvz)
\@fancybox=\box52
\shadowsize=\dimen118
\@Sbox=\box53
\do@VerbBox=\toks19
\the@fancyput=\toks20
\this@fancyput=\toks21
\EndVerbatimTokens=\toks22
\Verbatim@Outfile=\write4
\Verbatim@Infile=\read1
) (/opt/local/share/texmf-dist/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen119
)
(/opt/local/share/texmf-dist/tex/latex/jknappen/mathrsfs.sty
Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
\symrsfs=\mathgroup10
)
(/opt/local/share/texmf-dist/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen120
\WF@size=\dimen121
\c@WF@wrappedlines=\count104
\WF@box=\box54
\WF@everypar=\toks23
Package: wrapfig 2003/01/31 v 3.6
)
(/opt/local/share/texmf-dist/tex/latex/subfig/subfig.sty
Package: subfig 2004/01/28 ver: 1.2 subfig package
(/opt/local/share/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2004/07/16 v3.0c Customising captions (AS)
\captionmargin=\dimen122
\captionwidth=\dimen123
\captionindent=\dimen124
\captionparindent=\dimen125
\captionhangindent=\dimen126
)
\c@KVtest=\count105
\sf@farskip=\skip58
\sf@captopadj=\dimen127
\sf@capskip=\skip59
\sf@nearskip=\skip60
\c@subfigure=\count106
\c@subfigure@save=\count107
\c@lofdepth=\count108
\c@subtable=\count109
\c@subtable@save=\count110
\c@lotdepth=\count111
\sf@top=\skip61
\sf@bottom=\skip62
)
(/opt/local/share/texmf-dist/tex/latex/setspace/setspace.sty
Package: setspace 2000/12/01 6.7 Contributed and Supported LaTeX2e package
Package: `setspace' 6.7 <2000/12/01>
) (/opt/local/share/texmf-dist/tex/latex/tools/verbatim.sty
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks24
\verbatim@line=\toks25
\verbatim@in@stream=\read2
)
(/opt/local/share/texmf-dist/tex/latex/rotating/rotating.sty
Package: rotating 1997/09/26 v2.13 Rotation package
\c@r@tfl@t=\count112
\rot@float@box=\box55
)
Package hyperref Info: Option `colorlinks' set `true' on input line 17.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 17.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 17.
(./thesis.aux
(./firstpage.aux) (./Introduction.aux) (./Spectropolarimetry.aux)
(./Observations.aux) (./HR.aux
LaTeX Warning: Label `eq:contrast' multiply defined.
) (./Spicules.aux) (./Conclusions.aux) (./acknowledgments.aux))
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/txmi/m/it on input line 37.
LaTeX Font Info: Try loading font information for OML+txmi on input line 37.
(/opt/local/share/texmf-dist/tex/latex/txfonts/omltxmi.fd
File: omltxmi.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 37.
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 37.
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Checking defaults for OMS/txsy/m/n on input line 37.
LaTeX Font Info: Try loading font information for OMS+txsy on input line 37.
(/opt/local/share/texmf-dist/tex/latex/txfonts/omstxsy.fd
File: omstxsy.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Checking defaults for OMX/txex/m/n on input line 37.
LaTeX Font Info: Try loading font information for OMX+txex on input line 37.
(/opt/local/share/texmf-dist/tex/latex/txfonts/omxtxex.fd
File: omxtxex.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Checking defaults for U/txexa/m/n on input line 37.
LaTeX Font Info: Try loading font information for U+txexa on input line 37.
(/opt/local/share/texmf-dist/tex/latex/txfonts/utxexa.fd
File: utxexa.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 37.
LaTeX Font Info: ... okay on input line 37.
LaTeX Font Info: Try loading font information for T1+txr on input line 37.
(/opt/local/share/texmf-dist/tex/latex/txfonts/t1txr.fd
File: t1txr.fd 2000/12/15 v3.1
)
(/opt/local/share/texmf-dist/tex/context/base/supp-pdf.tex
(/opt/local/share/texmf-dist/tex/context/base/supp-mis.tex
loading : Context Support Macros / Miscellaneous (2004.10.26)
\protectiondepth=\count113
\scratchcounter=\count114
\scratchtoks=\toks26
\scratchdimen=\dimen128
\scratchskip=\skip63
\scratchmuskip=\muskip11
\scratchbox=\box56
\scratchread=\read3
\scratchwrite=\write5
\zeropoint=\dimen129
\onepoint=\dimen130
\onebasepoint=\dimen131
\minusone=\count115
\thousandpoint=\dimen132
\onerealpoint=\dimen133
\emptytoks=\toks27
\nextbox=\box57
\nextdepth=\dimen134
\everyline=\toks28
\!!counta=\count116
\!!countb=\count117
\recursecounter=\count118
)
loading : Context Support Macros / PDF (2004.03.26)
\nofMPsegments=\count119
\nofMParguments=\count120
\MPscratchCnt=\count121
\MPscratchDim=\dimen135
\MPnumerator=\count122
\everyMPtoPDFconversion=\toks29
)
Package hyperref Info: Link coloring ON on input line 37.
(/opt/local/share/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2003/12/03 v2.21 Cross-referencing by name of section
\c@section@level=\count123
)
LaTeX Info: Redefining \ref on input line 37.
LaTeX Info: Redefining \pageref on input line 37.
(./thesis.out)
(./thesis.out)
\openout3 = `thesis.out'.
(/opt/local/share/texmf-dist/tex/latex/ms/ragged2e.sty
Package: ragged2e 2003/03/25 v2.04 ragged2e Package (MS)
(/opt/local/share/texmf-dist/tex/latex/ms/everysel.sty
Package: everysel 1999/06/08 v1.03 EverySelectfont Package (MS)
LaTeX Info: Redefining \selectfont on input line 125.
)
\CenteringLeftskip=\skip64
\RaggedLeftLeftskip=\skip65
\RaggedRightLeftskip=\skip66
\CenteringRightskip=\skip67
\RaggedLeftRightskip=\skip68
\RaggedRightRightskip=\skip69
\CenteringParfillskip=\skip70
\RaggedLeftParfillskip=\skip71
\RaggedRightParfillskip=\skip72
\JustifyingParfillskip=\skip73
\CenteringParindent=\skip74
\RaggedLeftParindent=\skip75
\RaggedRightParindent=\skip76
\JustifyingParindent=\skip77
)
Package caption Info: rotating package v2.0 (or newer) detected on input line 3
7.
[1
{/opt/local/share/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
LaTeX Font Info: Try loading font information for T1+txtt on input line 40.
(/opt/local/share/texmf-dist/tex/latex/txfonts/t1txtt.fd
File: t1txtt.fd 2000/12/15 v3.1
)
Overfull \hbox (3.79703pt too wide) in paragraph at lines 40--40
\T1/txr/m/n/14.4 Na-tion-al-bib-li-ografie; de-tail-lierte bib-li-ografis-che D
aten sind im In-ter-net über
[]
Underfull \hbox (badness 10000) in paragraph at lines 40--40
[]
LaTeX Font Info: Try loading font information for OMS+txr on input line 40.
(/opt/local/share/texmf-dist/tex/latex/txfonts/omstxr.fd
File: omstxr.fd 2000/12/15 v3.1
)
LaTeX Font Info: Font shape `OMS/txr/m/n' in size <14.4> not available
(Font) Font shape `OMS/txsy/m/n' tried instead on input line 40.
[2]
\openout2 = `firstpage.aux'.
(./firstpage.tex
LaTeX Font Info: Try loading font information for OT1+txr on input line 11.
(/opt/local/share/texmf-dist/tex/latex/txfonts/ot1txr.fd
File: ot1txr.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+txmia on input line 11.
(/opt/local/share/texmf-dist/tex/latex/txfonts/utxmia.fd
File: utxmia.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+msa on input line 11.
(/opt/local/share/texmf-dist/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 11.
(/opt/local/share/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info: Try loading font information for U+txsyc on input line 11.
(/opt/local/share/texmf-dist/tex/latex/txfonts/utxsyc.fd
File: utxsyc.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+rsfs on input line 11.
(/opt/local/share/texmf-dist/tex/latex/jknappen/ursfs.fd
File: ursfs.fd 1998/03/24 rsfs font definition file (jk)
))
Overfull \hbox (17.62482pt too wide) in paragraph at lines 4--40
[]$[]$
[]
[3
] [4
] (./thesis.toc [5])
\tf@toc=\write6
\openout6 = `thesis.toc'.
[6] [7
]
\openout2 = `Introduction.aux'.
(./Introduction.tex [8
]
1.
<../figures/sol.jpg, id=289, 335.2525pt x 176.66pt>
File: ../figures/sol.jpg Graphic file (type jpg)
<use ../figures/sol.jpg>
Underfull \hbox (badness 10000) in paragraph at lines 16--26
\T1/txr/m/n/12 in-te-rior.
[]
[9] <../figures/mosaicb.png, id=297, 365.6862pt x 338.2236pt>
File: ../figures/mosaicb.png Graphic file (type png)
<use ../figures/mosaicb.png> [10 <../figures/sol.jpg>] [11 <../figures/mosaicb.
png>] [12] <../figures/mosaicn.png, id=316, 386.4036pt x 326.6604pt>
File: ../figures/mosaicn.png Graphic file (type png)
<use ../figures/mosaicn.png> [13]
Underfull \vbox (badness 1303) has occurred while \output is active []
[14 <../figures/mosaicn.png>]) [15]
\openout2 = `Spectropolarimetry.aux'.
(./Spectropolarimetry.tex [16
]
2.
[17]
Underfull \vbox (badness 1946) has occurred while \output is active []
[18]
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `math shift' on input line 62.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\alpha' on input line 62.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `math shift' on input line 62.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `math shift' on input line 62.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\alpha' on input line 62.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `math shift' on input line 62.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string:
(hyperref) \kern 2.00006pt
(hyperref) removed on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\f@series' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\font@name' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\T1/txr/m/sc/17.28' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\spaceskip' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\z@' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\<def>-command' on input line 81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref) removing `\@EverySelectfont@AtNextHook' on input line
81.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string:
(hyperref) \kern 2.00006pt
(hyperref) removed on input line 81.
[19] <../figures/diagrams005.png, id=383, 551.05875pt x 532.99126pt>
File: ../figures/diagrams005.png Graphic file (type png)
<use ../figures/diagrams005.png>) [20 <../figures/diagrams005.png>]
\openout2 = `Observations.aux'.
(./Observations.tex
3.
[21
] [22] <../figures/VTT.jpg, id=428, 196.5744pt x 288.1164pt>
File: ../figures/VTT.jpg Graphic file (type jpg)
<use ../figures/VTT.jpg>
<../figures/diagrams001.png, id=429, 470.75874pt x 666.49pt>
File: ../figures/diagrams001.png Graphic file (type png)
<use ../figures/diagrams001.png>
Underfull \vbox (badness 10000) has occurred while \output is active []
[23 <../figures/VTT.jpg>]
<../figures/diagrams002.jpg, id=442, 500.87125pt x 448.67625pt>
File: ../figures/diagrams002.jpg Graphic file (type jpg)
<use ../figures/diagrams002.jpg>
Underfull \vbox (badness 2165) has occurred while \output is active []
[24 <../figures/diagrams001.png>]
Underfull \vbox (badness 10000) has occurred while \output is active []
[25 <../figures/diagrams002.jpg>] [26]
<../figures/scan-im.jpg, id=489, 2459.1875pt x 1451.4225pt>
File: ../figures/scan-im.jpg Graphic file (type jpg)
<use ../figures/scan-im.jpg>
<../figures/fts_fpiha.pdf, id=490, 426.59375pt x 341.275pt>
File: ../figures/fts_fpiha.pdf Graphic file (type pdf)
<use ../figures/fts_fpiha.pdf>
LaTeX Warning: Command \r invalid in math mode on input line 128.
[27]
LaTeX Warning: Command \r invalid in math mode on input line 135.
[28 <../figures/scan-im.jpg> <../figures/fts_fpiha.pdf>]
<../figures/airy_filtro.pdf, id=531, 580.1675pt x 341.275pt>
File: ../figures/airy_filtro.pdf Graphic file (type pdf)
<use ../figures/airy_filtro.pdf>
<../figures/diagrams003.png, id=532, 697.60625pt x 353.32pt>
File: ../figures/diagrams003.png Graphic file (type png)
<use ../figures/diagrams003.png>
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Warning: Command \r invalid in math mode on input line 158.
LaTeX Font Info: Font shape `OMS/txr/m/n' in size <12> not available
(Font) Font shape `OMS/txsy/m/n' tried instead on input line 166.
[29 <../figures/airy_filtro.pdf>]
Overfull \hbox (28.72993pt too wide) in paragraph at lines 175--193
[]