-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.log
2715 lines (2410 loc) · 117 KB
/
main.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.1415926-2.3-1.40.12 (MiKTeX 2.9) (preloaded format=pdflatex 2014.5.10) 1 JUL 2014 10:35
entering extended mode
**main.tex
(C:\Users\Patha\Desktop\Github\su\main.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, afrikaans, ancientgreek, ar
abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan, coptic,
croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish, french, ga
lician, german, german-x-2009-06-19, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin, lat
vian, lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerm
an, ngerman-x-2009-06-19, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
romanian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swis
sgerman, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, u
senglishmax, welsh, loaded.
(C:\Users\Patha\Desktop\Github\su\rtthesis.cls
Document Class: rtthesis 2011/12/05 rtthesis Class v. 0.51
(C:\Spel\MiKTeX\tex\latex\graphics\keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
\@removeenvinment=\box26
\c@rt@toplevel=\count79
(C:\Spel\MiKTeX\tex\latex\base\book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(C:\Spel\MiKTeX\tex\latex\base\bk10.clo
File: bk10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count80
\c@chapter=\count81
\c@section=\count82
\c@subsection=\count83
\c@subsubsection=\count84
\c@paragraph=\count85
\c@subparagraph=\count86
\c@figure=\count87
\c@table=\count88
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(C:\Spel\MiKTeX\tex\latex\geometry\geometry.sty
Package: geometry 2010/09/12 v5.6 Page Geometry
(C:\Spel\MiKTeX\tex\generic\oberdiek\ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
(C:\Spel\MiKTeX\tex\generic\oberdiek\ifvtex.sty
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
(C:\Spel\MiKTeX\tex\generic\ifxetex\ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count89
\Gm@cntv=\count90
\c@Gm@tempcnt=\count91
\Gm@bindingoffset=\dimen103
\Gm@wd@mp=\dimen104
\Gm@odd@mp=\dimen105
\Gm@even@mp=\dimen106
\Gm@layoutwidth=\dimen107
\Gm@layoutheight=\dimen108
\Gm@layouthoffset=\dimen109
\Gm@layoutvoffset=\dimen110
\Gm@dimlist=\toks15
(C:\Spel\MiKTeX\tex\latex\geometry\geometry.cfg))
(C:\Spel\MiKTeX\tex\latex\graphics\color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(C:\Spel\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:\Spel\MiKTeX\tex\latex\pdftex-def\pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
(C:\Spel\MiKTeX\tex\generic\oberdiek\infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(C:\Spel\MiKTeX\tex\generic\oberdiek\ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count92
))
(C:\Spel\MiKTeX\tex\latex\graphics\graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(C:\Spel\MiKTeX\tex\latex\graphics\graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(C:\Spel\MiKTeX\tex\latex\graphics\trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(C:\Spel\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 91.
)
\Gin@req@height=\dimen111
\Gin@req@width=\dimen112
)
(C:\Spel\MiKTeX\tex\latex\ltxmisc\url.sty
\Urlmuskip=\muskip10
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
(C:\Spel\MiKTeX\tex\latex\base\fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(C:\Spel\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:\Spel\MiKTeX\tex\latex\kpfonts\kpfonts.sty
Package: kpfonts 2010/08/20 v3.31
(C:\Spel\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.
Package textcomp Info: Changing ? sub-encoding to TS1/0 on input line 72.
(C:\Spel\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 lmr sub-encoding to TS1/0 on input line 311.
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 312.
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 313.
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 314.
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 315.
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 316.
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 317.
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 318.
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 319.
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 320.
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 321.
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 322.
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 323.
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 324.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 326.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 327.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 328.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 329.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 330.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 331.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 332.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 333.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 334.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 335.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 336.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 337.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 338.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 339.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 340.
)
(C:\Spel\MiKTeX\tex\latex\ams\math\amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
(C:\Spel\MiKTeX\tex\latex\ams\math\amstext.sty
Package: amstext 2000/06/29 v2.01
(C:\Spel\MiKTeX\tex\latex\ams\math\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks16
\ex@=\dimen113
))
(C:\Spel\MiKTeX\tex\latex\ams\math\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen114
)
(C:\Spel\MiKTeX\tex\latex\ams\math\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@=\box27
\strutbox@=\box28
\big@size=\dimen115
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@=\muskip11
\c@parentequation=\count100
\dspbrk@lvl=\count101
\tag@help=\toks17
\row@=\count102
\column@=\count103
\maxfields@=\count104
\andhelp@=\toks18
\eqnshift@=\dimen116
\alignsep@=\dimen117
\tagshift@=\dimen118
\tagwidth@=\dimen119
\totwidth@=\dimen120
\lineht@=\dimen121
\@envbody=\toks19
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
\c@mv@rm=\count105
\c@mv@boldrm=\count106
\c@mv@sf=\count107
\c@mv@boldsf=\count108
LaTeX Font Info: Redeclaring symbol font `operators' on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/jkp/m/n on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/jkp/m/n on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `rm'
(Font) OT1/cmr/m/n --> OT1/jkp/m/n on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `boldrm'
(Font) OT1/cmr/m/n --> OT1/jkp/m/n on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `sf'
(Font) OT1/cmr/m/n --> OT1/jkp/m/n on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `boldsf'
(Font) OT1/cmr/m/n --> OT1/jkp/m/n on input line 354.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/jkp/m/n --> OT1/jkp/b/n on input line 355.
LaTeX Font Info: Overwriting symbol font `operators' in version `rm'
(Font) OT1/jkp/m/n --> OT1/jkp/m/n on input line 357.
LaTeX Font Info: Overwriting symbol font `operators' in version `boldrm'
(Font) OT1/jkp/m/n --> OT1/jkp/b/n on input line 358.
LaTeX Font Info: Overwriting symbol font `operators' in version `sf'
(Font) OT1/jkp/m/n --> OT1/jkpss/m/n on input line 359.
LaTeX Font Info: Overwriting symbol font `operators' in version `boldsf'
(Font) OT1/jkp/m/n --> OT1/jkpss/b/n on input line 360.
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line 364.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
(Font) OT1/jkp/m/n --> OT1/jkp/b/n on input line 365.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `rm'
(Font) OT1/jkp/m/n --> OT1/jkp/m/n on input line 366.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `boldrm'
(Font) OT1/jkp/m/n --> OT1/jkp/b/n on input line 367.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `sf'
(Font) OT1/jkp/m/n --> OT1/jkp/m/n on input line 368.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `boldsf'
(Font) OT1/jkp/m/n --> OT1/jkp/b/n on input line 369.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/jkp/b/n on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/jkp/b/n on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `rm'
(Font) OT1/cmr/bx/n --> OT1/jkp/b/n on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `boldrm'
(Font) OT1/cmr/bx/n --> OT1/jkp/b/n on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `sf'
(Font) OT1/cmr/bx/n --> OT1/jkp/b/n on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `boldsf'
(Font) OT1/cmr/bx/n --> OT1/jkp/b/n on input line 378.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/jkp/b/n --> OT1/jkp/b/n on input line 379.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `rm'
(Font) OT1/jkp/b/n --> OT1/jkp/b/n on input line 381.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `boldrm'
(Font) OT1/jkp/b/n --> OT1/jkp/b/n on input line 382.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `sf'
(Font) OT1/jkp/b/n --> OT1/jkpss/b/n on input line 383.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `boldsf'
(Font) OT1/jkp/b/n --> OT1/jkpss/b/n on input line 384.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/jkp/m/it on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/jkp/m/it on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `rm'
(Font) OT1/cmr/m/it --> OT1/jkp/m/it on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `boldrm'
(Font) OT1/cmr/m/it --> OT1/jkp/m/it on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `sf'
(Font) OT1/cmr/m/it --> OT1/jkp/m/it on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `boldsf'
(Font) OT1/cmr/m/it --> OT1/jkp/m/it on input line 390.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/jkp/m/it --> OT1/jkp/b/it on input line 391.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `rm'
(Font) OT1/jkp/m/it --> OT1/jkp/m/it on input line 393.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `boldrm'
(Font) OT1/jkp/m/it --> OT1/jkp/b/it on input line 394.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `sf'
(Font) OT1/jkp/m/it --> OT1/jkpss/m/it on input line 395.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `boldsf'
(Font) OT1/jkp/m/it --> OT1/jkpss/b/it on input line 396.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/jkpss/m/n on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/jkpss/m/n on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `rm'
(Font) OT1/cmss/m/n --> OT1/jkpss/m/n on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `boldrm'
(Font) OT1/cmss/m/n --> OT1/jkpss/m/n on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `sf'
(Font) OT1/cmss/m/n --> OT1/jkpss/m/n on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `boldsf'
(Font) OT1/cmss/m/n --> OT1/jkpss/m/n on input line 401.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/jkpss/m/n --> OT1/jkpss/b/n on input line 402.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `rm'
(Font) OT1/jkpss/m/n --> OT1/jkpss/m/n on input line 403.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `boldrm'
(Font) OT1/jkpss/m/n --> OT1/jkpss/b/n on input line 404.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `sf'
(Font) OT1/jkpss/m/n --> OT1/jkpss/m/n on input line 405.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `boldsf'
(Font) OT1/jkpss/m/n --> OT1/jkpss/b/n on input line 406.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/jkptt/m/n on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/jkptt/m/n on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `rm'
(Font) OT1/cmtt/m/n --> OT1/jkptt/m/n on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `boldrm'
(Font) OT1/cmtt/m/n --> OT1/jkptt/m/n on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `sf'
(Font) OT1/cmtt/m/n --> OT1/jkptt/m/n on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `boldsf'
(Font) OT1/cmtt/m/n --> OT1/jkptt/m/n on input line 410.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/jkptt/m/n --> OT1/jkptt/b/n on input line 411.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `rm'
(Font) OT1/jkptt/m/n --> OT1/jkptt/m/n on input line 412.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `boldrm'
(Font) OT1/jkptt/m/n --> OT1/jkptt/b/n on input line 413.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `sf'
(Font) OT1/jkptt/m/n --> OT1/jkptt/m/n on input line 414.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `boldsf'
(Font) OT1/jkptt/m/n --> OT1/jkptt/b/n on input line 415.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/jkpw/m/it on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/jkpw/m/it on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `rm'
(Font) OML/cmm/m/it --> OML/jkpw/m/it on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `boldrm'
(Font) OML/cmm/m/it --> OML/jkpw/m/it on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `sf'
(Font) OML/cmm/m/it --> OML/jkpw/m/it on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `boldsf'
(Font) OML/cmm/m/it --> OML/jkpw/m/it on input line 423.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/jkpw/m/it --> OML/jkpw/bx/it on input line 424.
LaTeX Font Info: Overwriting symbol font `letters' in version `rm'
(Font) OML/jkpw/m/it --> OML/jkpw/m/it on input line 426.
LaTeX Font Info: Overwriting symbol font `letters' in version `boldrm'
(Font) OML/jkpw/m/it --> OML/jkpw/bx/it on input line 427.
LaTeX Font Info: Overwriting symbol font `letters' in version `sf'
(Font) OML/jkpw/m/it --> OML/jkpss/m/it on input line 428.
LaTeX Font Info: Overwriting symbol font `letters' in version `boldsf'
(Font) OML/jkpw/m/it --> OML/jkpss/bx/it on input line 429.
\symlettersA=\mathgroup4
LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold'
(Font) U/jkpmiaw/m/it --> U/jkpmiaw/bx/it on input line 439.
LaTeX Font Info: Overwriting symbol font `lettersA' in version `rm'
(Font) U/jkpmiaw/m/it --> U/jkpmiaw/m/it on input line 441.
LaTeX Font Info: Overwriting symbol font `lettersA' in version `boldrm'
(Font) U/jkpmiaw/m/it --> U/jkpmiaw/bx/it on input line 442.
LaTeX Font Info: Overwriting symbol font `lettersA' in version `sf'
(Font) U/jkpmiaw/m/it --> U/jkpssmia/m/it on input line 443.
LaTeX Font Info: Overwriting symbol font `lettersA' in version `boldsf'
(Font) U/jkpmiaw/m/it --> U/jkpssmia/bx/it on input line 444.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/jkpw/m/n on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/jkpw/m/n on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `rm'
(Font) OMS/cmsy/m/n --> OMS/jkpw/m/n on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `boldrm'
(Font) OMS/cmsy/m/n --> OMS/jkpw/m/n on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `sf'
(Font) OMS/cmsy/m/n --> OMS/jkpw/m/n on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `boldsf'
(Font) OMS/cmsy/m/n --> OMS/jkpw/m/n on input line 456.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/jkpw/m/n --> OMS/jkpw/bx/n on input line 457.
LaTeX Font Info: Overwriting symbol font `symbols' in version `rm'
(Font) OMS/jkpw/m/n --> OMS/jkpw/m/n on input line 459.
LaTeX Font Info: Overwriting symbol font `symbols' in version `boldrm'
(Font) OMS/jkpw/m/n --> OMS/jkpw/bx/n on input line 460.
LaTeX Font Info: Overwriting symbol font `symbols' in version `sf'
(Font) OMS/jkpw/m/n --> OMS/jkp/m/n on input line 461.
LaTeX Font Info: Overwriting symbol font `symbols' in version `boldsf'
(Font) OMS/jkpw/m/n --> OMS/jkp/bx/n on input line 462.
\symAMSa=\mathgroup5
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/jkpsya/m/n --> U/jkpsya/bx/n on input line 476.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `rm'
(Font) U/jkpsya/m/n --> U/jkpsya/m/n on input line 477.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `boldrm'
(Font) U/jkpsya/m/n --> U/jkpsya/bx/n on input line 478.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `sf'
(Font) U/jkpsya/m/n --> U/jkpsya/m/n on input line 479.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `boldsf'
(Font) U/jkpsya/m/n --> U/jkpsya/bx/n on input line 480.
\symAMSb=\mathgroup6
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/jkpsybw/m/n --> U/jkpsybw/bx/n on input line 529.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `rm'
(Font) U/jkpsybw/m/n --> U/jkpsybw/m/n on input line 530.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `boldrm'
(Font) U/jkpsybw/m/n --> U/jkpsybw/bx/n on input line 531.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `sf'
(Font) U/jkpsybw/m/n --> U/jkpsssyb/m/n on input line 532.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `boldsf'
(Font) U/jkpsybw/m/n --> U/jkpsssyb/bx/n on input line 533.
\symsymbolsC=\mathgroup7
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold'
(Font) U/jkpsyc/m/n --> U/jkpsyc/bx/n on input line 549.
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `rm'
(Font) U/jkpsyc/m/n --> U/jkpsyc/m/n on input line 551.
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `boldrm'
(Font) U/jkpsyc/m/n --> U/jkpsyc/bx/n on input line 552.
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `sf'
(Font) U/jkpsyc/m/n --> U/jkpsyc/m/n on input line 553.
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `boldsf'
(Font) U/jkpsyc/m/n --> U/jkpsyc/bx/n on input line 554.
LaTeX Font Info: Overwriting math alphabet `\mathscr' in version `bold'
(Font) U/jkpsydw/m/n --> U/jkpsydw/bx/n on input line 583.
LaTeX Font Info: Overwriting math alphabet `\mathscr' in version `rm'
(Font) U/jkpsydw/m/n --> U/jkpsydw/m/n on input line 585.
LaTeX Font Info: Overwriting math alphabet `\mathscr' in version `boldrm'
(Font) U/jkpsydw/m/n --> U/jkpsydw/bx/n on input line 586.
LaTeX Font Info: Overwriting math alphabet `\mathscr' in version `sf'
(Font) U/jkpsydw/m/n --> U/jkpsyd/m/n on input line 587.
LaTeX Font Info: Overwriting math alphabet `\mathscr' in version `boldsf'
(Font) U/jkpsydw/m/n --> U/jkpsyd/bx/n on input line 588.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/jkp/m/n on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/jkp/m/n on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `rm'
(Font) OMX/cmex/m/n --> OMX/jkp/m/n on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `boldrm'
(Font) OMX/cmex/m/n --> OMX/jkp/m/n on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `sf'
(Font) OMX/cmex/m/n --> OMX/jkp/m/n on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `boldsf'
(Font) OMX/cmex/m/n --> OMX/jkp/m/n on input line 598.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/jkp/m/n --> OMX/jkp/bx/n on input line 599.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `rm'
(Font) OMX/jkp/m/n --> OMX/jkp/m/n on input line 601.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `boldrm'
(Font) OMX/jkp/m/n --> OMX/jkp/bx/n on input line 602.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `sf'
(Font) OMX/jkp/m/n --> OMX/jkpss/m/n on input line 603.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `boldsf'
(Font) OMX/jkp/m/n --> OMX/jkpss/bx/n on input line 604.
\symlargesymbolsA=\mathgroup8
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `bold'
(Font) U/jkpexa/m/n --> U/jkpexa/bx/n on input line 615.
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `rm'
(Font) U/jkpexa/m/n --> U/jkpexa/m/n on input line 617.
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `boldrm'
(Font) U/jkpexa/m/n --> U/jkpexa/bx/n on input line 618.
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `sf'
(Font) U/jkpexa/m/n --> U/jkpexa/m/n on input line 619.
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `boldsf'
(Font) U/jkpexa/m/n --> U/jkpexa/bx/n on input line 620.
LaTeX Info: Redefining \not on input line 1580.
)
(C:\Spel\MiKTeX\tex\latex\slantsc\slantsc.sty
Package: slantsc 2012/01/01 v2.11 Provide Slanted an Italic Small Caps
(C:\Spel\MiKTeX\tex\latex\base\ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
LaTeX Info: Redefining \upshape on input line 35.
LaTeX Info: Redefining \slshape on input line 45.
LaTeX Info: Redefining \itshape on input line 55.
LaTeX Info: Redefining \scshape on input line 65.
)
(C:\Spel\MiKTeX\tex\latex\psnfss\courier.sty
Package: courier 2005/04/12 PSNFSS-v9.2a (WaS)
)
(C:\Spel\MiKTeX\tex\latex\psnfss\helvet.sty
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
)
(C:\Spel\MiKTeX\tex\latex\pdfcprot\pdfcprot.sty
Package: pdfcprot 2002/02/27 v1.5 character protruding using pdflatex (cs)
\c@CPROT@family=\count109
\c@CPROT@family@temp=\count110
\c@CPROT@series=\count111
\c@CPROT@series@temp=\count112
\c@CPROT@shape=\count113
\c@CPROT@shape@temp=\count114
\c@CPROT@size=\count115
\c@CPROT@size@temp=\count116
\c@CPROT@temp@chars=\count117
)
(C:\Spel\MiKTeX\tex\latex\ltxmisc\parskip.sty
Package: parskip 2001/04/09 non-zero parskip adjustments
)
\rt@parskip=\skip46
\rt@parindent=\skip47
(C:\Spel\MiKTeX\tex\latex\float\float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count118
\float@exts=\toks21
\float@box=\box29
\@float@everytoks=\toks22
\@floatcapt=\box30
)
(C:\Spel\MiKTeX\tex\latex\index\index.sty
Package: index 2004/01/20 v4.2beta Improved index support (dmj)
\@indexbox=\insert233
\indexproofstyle=\toks23
)
(C:\Spel\MiKTeX\tex\latex\natbib\natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip48
\bibsep=\skip49
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count119
)
(C:\Spel\MiKTeX\tex\latex\natbib\bibentry.sty
Package: bibentry 2007/10/30 1.5 (PWD)
)
\idxtitle@default=\toks24
\tf@default=\write3
Package index Info: Writing index file main.idx on input line 610.
(C:\Spel\MiKTeX\tex\latex\xcolor\xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(C:\Spel\MiKTeX\tex\latex\00miktex\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.
LaTeX Info: Redefining \color on input line 702.
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.
)
(C:\Spel\MiKTeX\tex\latex\tools\calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count120
\calc@Bcount=\count121
\calc@Adimen=\dimen122
\calc@Bdimen=\dimen123
\calc@Askip=\skip50
\calc@Bskip=\skip51
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count122
\calc@Cskip=\skip52
)
(C:\Spel\MiKTeX\tex\latex\caption\caption.sty
Package: caption 2013/05/02 v3.3-89 Customizing captions (AR)
(C:\Spel\MiKTeX\tex\latex\caption\caption3.sty
Package: caption3 2013/05/02 v1.6-88 caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 57.
\captionmargin=\dimen124
\captionmargin@=\dimen125
\captionwidth=\dimen126
\caption@tempdima=\dimen127
\caption@indent=\dimen128
\caption@parindent=\dimen129
\caption@hangindent=\dimen130
)
\c@ContinuedFloat=\count123
Package caption Info: float package is loaded.
)
(C:\Spel\MiKTeX\tex\latex\hyperref\hyperref.sty
Package: hyperref 2012/05/13 v6.82q Hypertext links for LaTeX
(C:\Spel\MiKTeX\tex\generic\oberdiek\hobsub-hyperref.sty
Package: hobsub-hyperref 2012/04/25 v1.12 Bundle oberdiek, subset hyperref (HO)
(C:\Spel\MiKTeX\tex\generic\oberdiek\hobsub-generic.sty
Package: hobsub-generic 2012/04/25 v1.12 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/04/25 v1.12 Construct package bundles (HO)
Package hobsub Info: Skipping package `infwarerr' (already loaded).
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
Package hobsub Info: Skipping package `ifvtex' (already loaded).
Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
)
Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
Package: hopatch 2011/06/24 v1.1 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
)
(C:\Spel\MiKTeX\tex\latex\oberdiek\kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen131
\Hy@linkcounter=\count124
\Hy@pagecounter=\count125
(C:\Spel\MiKTeX\tex\latex\hyperref\pd1enc.def
File: pd1enc.def 2012/05/13 v6.82q Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count126
(C:\Spel\MiKTeX\tex\latex\00miktex\hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `colorlinks' set `false' on input line 3941.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 3941.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 3941
.
Package hyperref Info: Option `hyperfootnotes' set `false' on input line 3941.
Package hyperref Info: Option `plainpages' set `false' on input line 3941.
Package hyperref Info: Option `pdfpagelabels' set `true' on input line 3941.
Package hyperref Info: Hyper figures OFF on input line 4062.
Package hyperref Info: Link nesting OFF on input line 4067.
Package hyperref Info: Hyper index ON on input line 4070.
Package hyperref Info: Plain pages OFF on input line 4077.
Package hyperref Info: Backreferencing ON on input line 4080.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4300.
(C:\Spel\MiKTeX\tex\latex\hyperref\backref.sty
Package: backref 2010/08/30 v1.36 Bibliographical back referencing
(C:\Spel\MiKTeX\tex\latex\oberdiek\rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
))
\c@Hy@tempcnt=\count127
LaTeX Info: Redefining \url on input line 4653.
\Fld@menulength=\count128
\Field@Width=\dimen132
\Fld@charsize=\dimen133
Package hyperref Info: Hyper figures OFF on input line 5773.
Package hyperref Info: Link nesting OFF on input line 5778.
Package hyperref Info: Hyper index ON on input line 5781.
Package hyperref Info: backreferencing ON on input line 5786.
Package hyperref Info: Link coloring OFF on input line 5793.
Package hyperref Info: Link coloring with OCG OFF on input line 5798.
Package hyperref Info: PDF/A mode OFF on input line 5803.
LaTeX Info: Redefining \ref on input line 5843.
LaTeX Info: Redefining \pageref on input line 5847.
\Hy@abspage=\count129
\c@Item=\count130
)
Package hyperref Message: Driver (autodetected): hpdftex.
(C:\Spel\MiKTeX\tex\latex\hyperref\hpdftex.def
File: hpdftex.def 2012/05/13 v6.82q Hyperref driver for pdfTeX
\Fld@listcount=\count131
\c@bookmark@seq@number=\count132
\Hy@SectionHShift=\skip53
)
(C:\Spel\MiKTeX\tex\latex\tocloft\tocloft.sty
Package: tocloft 2013/05/02 v2.3f parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 44.
\cftparskip=\skip54
\cftbeforetoctitleskip=\skip55
\cftaftertoctitleskip=\skip56
\cftbeforepartskip=\skip57
\cftpartnumwidth=\skip58
\cftpartindent=\skip59
\cftbeforechapskip=\skip60
\cftchapindent=\skip61
\cftchapnumwidth=\skip62
\cftbeforesecskip=\skip63
\cftsecindent=\skip64
\cftsecnumwidth=\skip65
\cftbeforesubsecskip=\skip66
\cftsubsecindent=\skip67
\cftsubsecnumwidth=\skip68
\cftbeforesubsubsecskip=\skip69
\cftsubsubsecindent=\skip70
\cftsubsubsecnumwidth=\skip71
\cftbeforeparaskip=\skip72
\cftparaindent=\skip73
\cftparanumwidth=\skip74
\cftbeforesubparaskip=\skip75
\cftsubparaindent=\skip76
\cftsubparanumwidth=\skip77
\cftbeforeloftitleskip=\skip78
\cftafterloftitleskip=\skip79
\cftbeforefigskip=\skip80
\cftfigindent=\skip81
\cftfignumwidth=\skip82
\c@lofdepth=\count133
\c@lotdepth=\count134
\cftbeforelottitleskip=\skip83
\cftafterlottitleskip=\skip84
\cftbeforetabskip=\skip85
\cfttabindent=\skip86
\cfttabnumwidth=\skip87
)
(C:\Spel\MiKTeX\tex\latex\subfig\subfig.sty
Package: subfig 2005/06/28 ver: 1.3 subfig package
\c@KVtest=\count135
\sf@farskip=\skip88
\sf@captopadj=\dimen134
\sf@capskip=\skip89
\sf@nearskip=\skip90
\c@subfigure=\count136
\c@subfigure@save=\count137
\c@subtable=\count138
\c@subtable@save=\count139
\sf@top=\skip91
\sf@bottom=\skip92
)
(C:\Spel\MiKTeX\tex\latex\tocbibind\tocbibind.sty
Package: tocbibind 2010/10/13 v1.5k extra ToC listings
Package tocbibind Info: The document has chapter divisions on input line 50.
Package tocbibind Note: Using chapter style headings, unless overridden.
) (C:\Spel\MiKTeX\tex\latex\sectsty\sectsty.sty
Package: sectsty 2002/02/25 v2.0.2 Commands to change all sectional heading sty
les
)
LaTeX Info: Redefining \em on input line 806.
(C:\Spel\MiKTeX\tex\latex\base\inputenc.sty
Package: inputenc 2008/03/30 v1.1d Input encoding file
\inpenc@prehook=\toks25
\inpenc@posthook=\toks26
(C:\Spel\MiKTeX\tex\latex\base\utf8.def
File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encoding T1
(C:\Spel\MiKTeX\tex\latex\base\t1enc.dfu
File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C0 (decimal 192)
defining Unicode char U+00C1 (decimal 193)
defining Unicode char U+00C2 (decimal 194)
defining Unicode char U+00C3 (decimal 195)
defining Unicode char U+00C4 (decimal 196)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00C7 (decimal 199)
defining Unicode char U+00C8 (decimal 200)
defining Unicode char U+00C9 (decimal 201)
defining Unicode char U+00CA (decimal 202)
defining Unicode char U+00CB (decimal 203)
defining Unicode char U+00CC (decimal 204)
defining Unicode char U+00CD (decimal 205)
defining Unicode char U+00CE (decimal 206)
defining Unicode char U+00CF (decimal 207)
defining Unicode char U+00D0 (decimal 208)
defining Unicode char U+00D1 (decimal 209)
defining Unicode char U+00D2 (decimal 210)
defining Unicode char U+00D3 (decimal 211)
defining Unicode char U+00D4 (decimal 212)
defining Unicode char U+00D5 (decimal 213)
defining Unicode char U+00D6 (decimal 214)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00D9 (decimal 217)
defining Unicode char U+00DA (decimal 218)
defining Unicode char U+00DB (decimal 219)
defining Unicode char U+00DC (decimal 220)
defining Unicode char U+00DD (decimal 221)
defining Unicode char U+00DE (decimal 222)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E0 (decimal 224)
defining Unicode char U+00E1 (decimal 225)
defining Unicode char U+00E2 (decimal 226)
defining Unicode char U+00E3 (decimal 227)
defining Unicode char U+00E4 (decimal 228)
defining Unicode char U+00E5 (decimal 229)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00E7 (decimal 231)
defining Unicode char U+00E8 (decimal 232)
defining Unicode char U+00E9 (decimal 233)
defining Unicode char U+00EA (decimal 234)
defining Unicode char U+00EB (decimal 235)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F0 (decimal 240)
defining Unicode char U+00F1 (decimal 241)
defining Unicode char U+00F2 (decimal 242)
defining Unicode char U+00F3 (decimal 243)
defining Unicode char U+00F4 (decimal 244)
defining Unicode char U+00F5 (decimal 245)
defining Unicode char U+00F6 (decimal 246)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+00F9 (decimal 249)
defining Unicode char U+00FA (decimal 250)
defining Unicode char U+00FB (decimal 251)
defining Unicode char U+00FC (decimal 252)
defining Unicode char U+00FD (decimal 253)
defining Unicode char U+00FE (decimal 254)
defining Unicode char U+00FF (decimal 255)
defining Unicode char U+0102 (decimal 258)
defining Unicode char U+0103 (decimal 259)
defining Unicode char U+0104 (decimal 260)
defining Unicode char U+0105 (decimal 261)
defining Unicode char U+0106 (decimal 262)
defining Unicode char U+0107 (decimal 263)
defining Unicode char U+010C (decimal 268)
defining Unicode char U+010D (decimal 269)
defining Unicode char U+010E (decimal 270)
defining Unicode char U+010F (decimal 271)
defining Unicode char U+0110 (decimal 272)
defining Unicode char U+0111 (decimal 273)
defining Unicode char U+0118 (decimal 280)
defining Unicode char U+0119 (decimal 281)
defining Unicode char U+011A (decimal 282)
defining Unicode char U+011B (decimal 283)
defining Unicode char U+011E (decimal 286)
defining Unicode char U+011F (decimal 287)
defining Unicode char U+0130 (decimal 304)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0132 (decimal 306)
defining Unicode char U+0133 (decimal 307)
defining Unicode char U+0139 (decimal 313)
defining Unicode char U+013A (decimal 314)
defining Unicode char U+013D (decimal 317)
defining Unicode char U+013E (decimal 318)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0143 (decimal 323)
defining Unicode char U+0144 (decimal 324)
defining Unicode char U+0147 (decimal 327)
defining Unicode char U+0148 (decimal 328)
defining Unicode char U+014A (decimal 330)
defining Unicode char U+014B (decimal 331)
defining Unicode char U+0150 (decimal 336)
defining Unicode char U+0151 (decimal 337)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+0154 (decimal 340)
defining Unicode char U+0155 (decimal 341)
defining Unicode char U+0158 (decimal 344)
defining Unicode char U+0159 (decimal 345)
defining Unicode char U+015A (decimal 346)
defining Unicode char U+015B (decimal 347)
defining Unicode char U+015E (decimal 350)
defining Unicode char U+015F (decimal 351)
defining Unicode char U+0160 (decimal 352)
defining Unicode char U+0161 (decimal 353)
defining Unicode char U+0162 (decimal 354)
defining Unicode char U+0163 (decimal 355)
defining Unicode char U+0164 (decimal 356)
defining Unicode char U+0165 (decimal 357)
defining Unicode char U+016E (decimal 366)
defining Unicode char U+016F (decimal 367)
defining Unicode char U+0170 (decimal 368)
defining Unicode char U+0171 (decimal 369)
defining Unicode char U+0178 (decimal 376)
defining Unicode char U+0179 (decimal 377)
defining Unicode char U+017A (decimal 378)
defining Unicode char U+017B (decimal 379)
defining Unicode char U+017C (decimal 380)
defining Unicode char U+017D (decimal 381)
defining Unicode char U+017E (decimal 382)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201A (decimal 8218)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2039 (decimal 8249)
defining Unicode char U+203A (decimal 8250)
defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encoding OT1
(C:\Spel\MiKTeX\tex\latex\base\ot1enc.dfu
File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00B8 (decimal 184)
defining Unicode char U+00BF (decimal 191)
defining Unicode char U+00C5 (decimal 197)
defining Unicode char U+00C6 (decimal 198)
defining Unicode char U+00D8 (decimal 216)
defining Unicode char U+00DF (decimal 223)
defining Unicode char U+00E6 (decimal 230)
defining Unicode char U+00EC (decimal 236)
defining Unicode char U+00ED (decimal 237)
defining Unicode char U+00EE (decimal 238)
defining Unicode char U+00EF (decimal 239)
defining Unicode char U+00F8 (decimal 248)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0141 (decimal 321)
defining Unicode char U+0142 (decimal 322)
defining Unicode char U+0152 (decimal 338)
defining Unicode char U+0153 (decimal 339)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)