-
Notifications
You must be signed in to change notification settings - Fork 0
/
TT.log
22445 lines (18749 loc) · 923 KB
/
TT.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.14159265-2.6-1.40.16 (MiKTeX 2.9) (preloaded format=pdflatex 2016.4.1) 1 APR 2016 15:15
entering extended mode
**./TT.tex
(TT.tex
LaTeX2e <2015/10/01> patch level 2
Babel <3.9n> and hyphenation patterns for 69 languages loaded.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\book.cls"
Document Class: book 2014/09/29 v1.4h Standard LaTeX document class
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\bk12.clo"
File: bk12.clo 2014/09/29 v1.4h 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
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\babel\babel.sty"
Package: babel 2016/01/08 3.9n The Babel package
*************************************
* Local config file bblopts.cfg used
*
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\00miktex\bblopts.cfg"
File: bblopts.cfg 2006/07/31 v1.0 MiKTeX 'babel' configuration
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\babel-spanish\spanish.ldf"
Language: spanish.ldf 2016/01/15 v5.0o Spanish support from the babel system
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\babel\babel.def"
File: babel.def 2016/01/08 3.9n Babel common definitions
\babel@savecnt=\count88
\U@D=\dimen103
)
\es@quottoks=\toks14
\es@quotdepth=\count89
Package babel Info: Making " an active character on input line 533.
Package babel Info: Making . an active character on input line 634.
Package babel Info: Making < an active character on input line 679.
Package babel Info: Making > an active character on input line 679.
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\inputenc.sty"
Package: inputenc 2015/03/17 v1.2c Input encoding file
\inpenc@prehook=\toks15
\inpenc@posthook=\toks16
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\utf8.def"
File: utf8.def 2015/09/07 v1.1p 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:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\t1enc.dfu"
File: t1enc.dfu 2015/09/07 v1.1p UTF-8 support for inputenc
defining Unicode char U+00A0 (decimal 160)
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+00AD (decimal 173)
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+0174 (decimal 372)
defining Unicode char U+0175 (decimal 373)
defining Unicode char U+0176 (decimal 374)
defining Unicode char U+0177 (decimal 375)
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+0218 (decimal 536)
defining Unicode char U+0219 (decimal 537)
defining Unicode char U+021A (decimal 538)
defining Unicode char U+021B (decimal 539)
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:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\ot1enc.dfu"
File: ot1enc.dfu 2015/09/07 v1.1p UTF-8 support for inputenc
defining Unicode char U+00A0 (decimal 160)
defining Unicode char U+00A1 (decimal 161)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00AD (decimal 173)
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+0174 (decimal 372)
defining Unicode char U+0175 (decimal 373)
defining Unicode char U+0176 (decimal 374)
defining Unicode char U+0177 (decimal 375)
defining Unicode char U+0218 (decimal 536)
defining Unicode char U+0219 (decimal 537)
defining Unicode char U+021A (decimal 538)
defining Unicode char U+021B (decimal 539)
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+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encoding OMS
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\omsenc.dfu"
File: omsenc.dfu 2015/09/07 v1.1p UTF-8 support for inputenc
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00B6 (decimal 182)
defining Unicode char U+00B7 (decimal 183)
defining Unicode char U+2020 (decimal 8224)
defining Unicode char U+2021 (decimal 8225)
defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
defining Unicode char U+00A9 (decimal 169)
defining Unicode char U+00AA (decimal 170)
defining Unicode char U+00AE (decimal 174)
defining Unicode char U+00BA (decimal 186)
defining Unicode char U+02C6 (decimal 710)
defining Unicode char U+02DC (decimal 732)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2026 (decimal 8230)
defining Unicode char U+2122 (decimal 8482)
defining Unicode char U+2423 (decimal 9251)
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ltxmisc\anysize.sty"
Package: anysize 1994/08/13 1.0 Contributed LaTeX2e package
Package: `anysize' 1.0 <1994/08/13>
\@Leftmargin=\dimen104
\@Rightmargin=\dimen105
\@Topmargin=\dimen106
\@Bottommargin=\dimen107
) ("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Program Files (x86)\MiKTeX 2.9\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 94.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\pdftex-def\pdftex.def"
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count90
))
\Gin@req@height=\dimen108
\Gin@req@width=\dimen109
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\tabularx.sty"
Package: tabularx 2014/10/28 v2.10 `tabularx' package (DPC)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\array.sty"
Package: array 2014/10/28 v2.4c Tabular extension package (FMi)
\col@sep=\dimen110
\extrarowheight=\dimen111
\NC@list=\toks18
\extratabsurround=\skip43
\backup@length=\skip44
)
\TX@col@width=\dimen112
\TX@old@table=\dimen113
\TX@old@col=\dimen114
\TX@target=\dimen115
\TX@delta=\dimen116
\TX@cols=\count91
\TX@ftn=\toks19
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\colortbl\colortbl.sty"
Package: colortbl 2012/02/13 v1.0a Color table columns (DPC)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\color.sty"
Package: color 2014/10/28 v1.1a Standard LaTeX Color (DPC)
("C:\Program Files (x86)\MiKTeX 2.9\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 142.
)
\everycr=\toks20
\minrowclearance=\skip45
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\float\float.sty"
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count92
\float@exts=\toks21
\float@box=\box26
\@float@everytoks=\toks22
\@floatcapt=\box27
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\wallpaper\wallpaper.sty"
Package: wallpaper 2005/01/18, v1.01 easy wallpaper formatting (MHFW)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\ifthen.sty"
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\calc.sty"
Package: calc 2014/10/28 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count93
\calc@Bcount=\count94
\calc@Adimen=\dimen117
\calc@Bdimen=\dimen118
\calc@Askip=\skip46
\calc@Bskip=\skip47
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count95
\calc@Cskip=\skip48
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\eso-pic\eso-pic.sty"
Package: eso-pic 2015/07/21 v2.0g eso-pic (RN)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\atbegshi.sty"
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
("C:\Program Files (x86)\MiKTeX 2.9\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.
)))
\wpXoffset=\skip49
\wpYoffset=\skip50
\tileXoffset=\skip51
\tileYoffset=\skip52
\tilewidth=\skip53
\tileheight=\skip54
\tileX=\skip55
\tileY=\skip56
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\textpos\textpos.sty"
Package: textpos 2014/01/03 v1.7j
Package: textpos 2014/01/03 1.7j, absolute positioning of text on the page
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ms\everyshi.sty"
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
)
\TP@textbox=\box28
\TP@holdbox=\box29
\TPHorizModule=\dimen119
\TPVertModule=\dimen120
\TP@margin=\dimen121
\TP@absmargin=\dimen122
Grid set 16 x 16 = 38.39343pt x 49.68562pt
\TPboxrulesize=\dimen123
\TP@ox=\dimen124
\TP@oy=\dimen125
\TP@tbargs=\toks23
\TP@prevdepth=\dimen126
TextBlockOrigin set to 0pt x 0pt
) ("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\subfig\subfig.sty"
Package: subfig 2005/06/28 ver: 1.3 subfig package
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\caption\caption.sty"
Package: caption 2016/02/21 v3.3-144 Customizing captions (AR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\caption\caption3.sty"
Package: caption3 2016/02/04 v1.7-139 caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 67.
\captionmargin=\dimen127
\captionmargin@=\dimen128
\captionwidth=\dimen129
\caption@tempdima=\dimen130
\caption@indent=\dimen131
\caption@parindent=\dimen132
\caption@hangindent=\dimen133
)
\c@ContinuedFloat=\count96
Package caption Info: float package is loaded.
)
\c@KVtest=\count97
\sf@farskip=\skip57
\sf@captopadj=\dimen134
\sf@capskip=\skip58
\sf@nearskip=\skip59
\c@subfigure=\count98
\c@subfigure@save=\count99
\c@lofdepth=\count100
\c@subtable=\count101
\c@subtable@save=\count102
\c@lotdepth=\count103
\sf@top=\skip60
\sf@bottom=\skip61
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\hobsub-hyperref.sty"
Package: hobsub-hyperref 2012/04/25 v1.12 Bundle oberdiek, subset hyperref (HO)
("C:\Program Files (x86)\MiKTeX 2.9\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: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
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 hobsub Info: Skipping package `atbegshi' (already loaded).
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:\Program Files (x86)\MiKTeX 2.9\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\oberdiek\auxhook.sty"
Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen135
\Hy@linkcounter=\count104
\Hy@pagecounter=\count105
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
\Hy@SavedSpaceFactor=\count106
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `breaklinks' set `true' on input line 4319.
Package hyperref Info: Option `colorlinks' set `true' on input line 4319.
Package hyperref Warning: Unexpected value `true'
(hyperref) of option `backref' instead of
(hyperref) `section', `slide', `page', `none',
(hyperref) or `false' on input line 4319.
Package hyperref Info: Hyper figures OFF on input line 4443.
Package hyperref Info: Link nesting OFF on input line 4448.
Package hyperref Info: Hyper index ON on input line 4451.
Package hyperref Info: Plain pages OFF on input line 4458.
Package hyperref Info: Backreferencing OFF on input line 4463.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4688.
\c@Hy@tempcnt=\count107
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\url\url.sty"
\Urlmuskip=\muskip10
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5041.
\XeTeXLinkMargin=\dimen136
\Fld@menulength=\count108
\Field@Width=\dimen137
\Fld@charsize=\dimen138
Package hyperref Info: Hyper figures OFF on input line 6295.
Package hyperref Info: Link nesting OFF on input line 6300.
Package hyperref Info: Hyper index ON on input line 6303.
Package hyperref Info: backreferencing OFF on input line 6310.
Package hyperref Info: Link coloring ON on input line 6313.
Package hyperref Info: Link coloring with OCG OFF on input line 6320.
Package hyperref Info: PDF/A mode OFF on input line 6325.
LaTeX Info: Redefining \ref on input line 6365.
LaTeX Info: Redefining \pageref on input line 6369.
\Hy@abspage=\count109
\c@Item=\count110
\c@Hfootnote=\count111
)
Package hyperref Message: Driver (autodetected): hpdftex.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX
\Fld@listcount=\count112
\c@bookmark@seq@number=\count113
("C:\Program Files (x86)\MiKTeX 2.9\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.
)
\Hy@SectionHShift=\skip62
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\fancyhdr\fancyhdr.sty"
\fancy@headwidth=\skip63
\f@ncyO@elh=\skip64
\f@ncyO@erh=\skip65
\f@ncyO@olh=\skip66
\f@ncyO@orh=\skip67
\f@ncyO@elf=\skip68
\f@ncyO@erf=\skip69
\f@ncyO@olf=\skip70
\f@ncyO@orf=\skip71
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\paralist\paralist.sty"
Package: paralist 2015/12/30 v2.5 Extended list environments
\pltopsep=\skip72
\plpartopsep=\skip73
\plitemsep=\skip74
\plparsep=\skip75
\pl@lab=\toks24
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\enumitem\enumitem.sty"
Package: enumitem 2011/09/28 v3.5.2 Customized lists
\labelindent=\skip76
\enit@outerparindent=\dimen139
\enit@toks=\toks25
\enit@inbox=\box30
\enitdp@description=\count114
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\textgreek\textgreek.sty"
Package: textgreek 2011/10/09 v0.7 Greek symbols in text
Package textgreek Info: Loading the definitions for the Greek fontencoding. on
input line 39.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\greek-fontenc\lgrenc.def"
File: lgrenc.def 2015/12/07 v0.13.1 LGR Greek font encoding definitions
Now handling font encoding LGR ...
... processing UTF-8 mapping file for font encoding LGR
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\greek-inputenc\lgrenc.dfu"
File: lgrenc.dfu 2015/08/05 1.6 UTF-8 support for Greek
defining Unicode char U+00A8 (decimal 168)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00AF (decimal 175)
defining Unicode char U+00B4 (decimal 180)
defining Unicode char U+00B7 (decimal 183)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+0259 (decimal 601)
defining Unicode char U+02D8 (decimal 728)
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+2030 (decimal 8240)
defining Unicode char U+2039 (decimal 8249)
defining Unicode char U+203A (decimal 8250)
defining Unicode char U+20AC (decimal 8364)
defining Unicode char U+0374 (decimal 884)
defining Unicode char U+0375 (decimal 885)
defining Unicode char U+037A (decimal 890)
defining Unicode char U+037E (decimal 894)
defining Unicode char U+0384 (decimal 900)
defining Unicode char U+0385 (decimal 901)
defining Unicode char U+0386 (decimal 902)
defining Unicode char U+0387 (decimal 903)
defining Unicode char U+0388 (decimal 904)
defining Unicode char U+0389 (decimal 905)
defining Unicode char U+038A (decimal 906)
defining Unicode char U+038C (decimal 908)
defining Unicode char U+038E (decimal 910)
defining Unicode char U+038F (decimal 911)
defining Unicode char U+0390 (decimal 912)
defining Unicode char U+0391 (decimal 913)
defining Unicode char U+0392 (decimal 914)
defining Unicode char U+0393 (decimal 915)
defining Unicode char U+0394 (decimal 916)
defining Unicode char U+0395 (decimal 917)
defining Unicode char U+0396 (decimal 918)
defining Unicode char U+0397 (decimal 919)
defining Unicode char U+0398 (decimal 920)
defining Unicode char U+0399 (decimal 921)
defining Unicode char U+039A (decimal 922)
defining Unicode char U+039B (decimal 923)
defining Unicode char U+039C (decimal 924)
defining Unicode char U+039D (decimal 925)
defining Unicode char U+039E (decimal 926)
defining Unicode char U+039F (decimal 927)
defining Unicode char U+03A0 (decimal 928)
defining Unicode char U+03A1 (decimal 929)
defining Unicode char U+03A3 (decimal 931)
defining Unicode char U+03A4 (decimal 932)
defining Unicode char U+03A5 (decimal 933)
defining Unicode char U+03A6 (decimal 934)
defining Unicode char U+03A7 (decimal 935)
defining Unicode char U+03A8 (decimal 936)
defining Unicode char U+03A9 (decimal 937)
defining Unicode char U+03AA (decimal 938)
defining Unicode char U+03AB (decimal 939)
defining Unicode char U+03AC (decimal 940)
defining Unicode char U+03AD (decimal 941)
defining Unicode char U+03AE (decimal 942)
defining Unicode char U+03AF (decimal 943)
defining Unicode char U+03B0 (decimal 944)
defining Unicode char U+03B1 (decimal 945)
defining Unicode char U+03B2 (decimal 946)
defining Unicode char U+03B3 (decimal 947)
defining Unicode char U+03B4 (decimal 948)
defining Unicode char U+03B5 (decimal 949)
defining Unicode char U+03B6 (decimal 950)
defining Unicode char U+03B7 (decimal 951)
defining Unicode char U+03B8 (decimal 952)
defining Unicode char U+03B9 (decimal 953)
defining Unicode char U+03BA (decimal 954)
defining Unicode char U+03BB (decimal 955)
defining Unicode char U+03BC (decimal 956)
defining Unicode char U+03BD (decimal 957)
defining Unicode char U+03BE (decimal 958)
defining Unicode char U+03BF (decimal 959)
defining Unicode char U+03C0 (decimal 960)
defining Unicode char U+03C1 (decimal 961)
defining Unicode char U+03C2 (decimal 962)
defining Unicode char U+03C3 (decimal 963)
defining Unicode char U+03C4 (decimal 964)
defining Unicode char U+03C5 (decimal 965)
defining Unicode char U+03C6 (decimal 966)
defining Unicode char U+03C7 (decimal 967)
defining Unicode char U+03C8 (decimal 968)
defining Unicode char U+03C9 (decimal 969)
defining Unicode char U+03CA (decimal 970)
defining Unicode char U+03CB (decimal 971)
defining Unicode char U+03CC (decimal 972)
defining Unicode char U+03CD (decimal 973)
defining Unicode char U+03CE (decimal 974)
defining Unicode char U+03D0 (decimal 976)
defining Unicode char U+03D1 (decimal 977)
defining Unicode char U+03D5 (decimal 981)
defining Unicode char U+03D6 (decimal 982)
defining Unicode char U+03D8 (decimal 984)
defining Unicode char U+03D9 (decimal 985)
defining Unicode char U+03DA (decimal 986)
defining Unicode char U+03DB (decimal 987)
defining Unicode char U+03DC (decimal 988)
defining Unicode char U+03DD (decimal 989)
defining Unicode char U+03DF (decimal 991)
defining Unicode char U+03E0 (decimal 992)
defining Unicode char U+03E1 (decimal 993)
defining Unicode char U+03F0 (decimal 1008)
defining Unicode char U+03F1 (decimal 1009)
defining Unicode char U+03F4 (decimal 1012)
defining Unicode char U+03F5 (decimal 1013)
defining Unicode char U+1F00 (decimal 7936)
defining Unicode char U+1F01 (decimal 7937)
defining Unicode char U+1F02 (decimal 7938)
defining Unicode char U+1F03 (decimal 7939)
defining Unicode char U+1F04 (decimal 7940)
defining Unicode char U+1F05 (decimal 7941)
defining Unicode char U+1F06 (decimal 7942)
defining Unicode char U+1F07 (decimal 7943)
defining Unicode char U+1F08 (decimal 7944)
defining Unicode char U+1F09 (decimal 7945)
defining Unicode char U+1F0A (decimal 7946)
defining Unicode char U+1F0B (decimal 7947)
defining Unicode char U+1F0C (decimal 7948)
defining Unicode char U+1F0D (decimal 7949)
defining Unicode char U+1F0E (decimal 7950)
defining Unicode char U+1F0F (decimal 7951)
defining Unicode char U+1F10 (decimal 7952)
defining Unicode char U+1F11 (decimal 7953)
defining Unicode char U+1F12 (decimal 7954)
defining Unicode char U+1F13 (decimal 7955)
defining Unicode char U+1F14 (decimal 7956)
defining Unicode char U+1F15 (decimal 7957)
defining Unicode char U+1F18 (decimal 7960)
defining Unicode char U+1F19 (decimal 7961)
defining Unicode char U+1F1A (decimal 7962)
defining Unicode char U+1F1B (decimal 7963)
defining Unicode char U+1F1C (decimal 7964)
defining Unicode char U+1F1D (decimal 7965)
defining Unicode char U+1F20 (decimal 7968)
defining Unicode char U+1F21 (decimal 7969)
defining Unicode char U+1F22 (decimal 7970)
defining Unicode char U+1F23 (decimal 7971)
defining Unicode char U+1F24 (decimal 7972)
defining Unicode char U+1F25 (decimal 7973)
defining Unicode char U+1F26 (decimal 7974)
defining Unicode char U+1F27 (decimal 7975)
defining Unicode char U+1F28 (decimal 7976)
defining Unicode char U+1F29 (decimal 7977)
defining Unicode char U+1F2A (decimal 7978)
defining Unicode char U+1F2B (decimal 7979)
defining Unicode char U+1F2C (decimal 7980)
defining Unicode char U+1F2D (decimal 7981)
defining Unicode char U+1F2E (decimal 7982)
defining Unicode char U+1F2F (decimal 7983)
defining Unicode char U+1F30 (decimal 7984)
defining Unicode char U+1F31 (decimal 7985)
defining Unicode char U+1F32 (decimal 7986)
defining Unicode char U+1F33 (decimal 7987)
defining Unicode char U+1F34 (decimal 7988)
defining Unicode char U+1F35 (decimal 7989)
defining Unicode char U+1F36 (decimal 7990)
defining Unicode char U+1F37 (decimal 7991)
defining Unicode char U+1F38 (decimal 7992)
defining Unicode char U+1F39 (decimal 7993)
defining Unicode char U+1F3A (decimal 7994)
defining Unicode char U+1F3B (decimal 7995)
defining Unicode char U+1F3C (decimal 7996)
defining Unicode char U+1F3D (decimal 7997)
defining Unicode char U+1F3E (decimal 7998)
defining Unicode char U+1F3F (decimal 7999)
defining Unicode char U+1F40 (decimal 8000)
defining Unicode char U+1F41 (decimal 8001)
defining Unicode char U+1F42 (decimal 8002)
defining Unicode char U+1F43 (decimal 8003)
defining Unicode char U+1F44 (decimal 8004)
defining Unicode char U+1F45 (decimal 8005)
defining Unicode char U+1F48 (decimal 8008)
defining Unicode char U+1F49 (decimal 8009)
defining Unicode char U+1F4A (decimal 8010)
defining Unicode char U+1F4B (decimal 8011)
defining Unicode char U+1F4C (decimal 8012)
defining Unicode char U+1F4D (decimal 8013)
defining Unicode char U+1F50 (decimal 8016)
defining Unicode char U+1F51 (decimal 8017)
defining Unicode char U+1F52 (decimal 8018)
defining Unicode char U+1F53 (decimal 8019)
defining Unicode char U+1F54 (decimal 8020)
defining Unicode char U+1F55 (decimal 8021)
defining Unicode char U+1F56 (decimal 8022)
defining Unicode char U+1F57 (decimal 8023)
defining Unicode char U+1F59 (decimal 8025)
defining Unicode char U+1F5B (decimal 8027)
defining Unicode char U+1F5D (decimal 8029)
defining Unicode char U+1F5F (decimal 8031)
defining Unicode char U+1F60 (decimal 8032)
defining Unicode char U+1F61 (decimal 8033)
defining Unicode char U+1F62 (decimal 8034)
defining Unicode char U+1F63 (decimal 8035)
defining Unicode char U+1F64 (decimal 8036)
defining Unicode char U+1F65 (decimal 8037)
defining Unicode char U+1F66 (decimal 8038)
defining Unicode char U+1F67 (decimal 8039)
defining Unicode char U+1F68 (decimal 8040)
defining Unicode char U+1F69 (decimal 8041)
defining Unicode char U+1F6A (decimal 8042)
defining Unicode char U+1F6B (decimal 8043)
defining Unicode char U+1F6C (decimal 8044)
defining Unicode char U+1F6D (decimal 8045)
defining Unicode char U+1F6E (decimal 8046)
defining Unicode char U+1F6F (decimal 8047)
defining Unicode char U+1F70 (decimal 8048)
defining Unicode char U+1F71 (decimal 8049)
defining Unicode char U+1F72 (decimal 8050)
defining Unicode char U+1F73 (decimal 8051)
defining Unicode char U+1F74 (decimal 8052)
defining Unicode char U+1F75 (decimal 8053)
defining Unicode char U+1F76 (decimal 8054)
defining Unicode char U+1F77 (decimal 8055)
defining Unicode char U+1F78 (decimal 8056)
defining Unicode char U+1F79 (decimal 8057)
defining Unicode char U+1F7A (decimal 8058)
defining Unicode char U+1F7B (decimal 8059)
defining Unicode char U+1F7C (decimal 8060)
defining Unicode char U+1F7D (decimal 8061)
defining Unicode char U+1F80 (decimal 8064)
defining Unicode char U+1F81 (decimal 8065)
defining Unicode char U+1F82 (decimal 8066)
defining Unicode char U+1F83 (decimal 8067)
defining Unicode char U+1F84 (decimal 8068)
defining Unicode char U+1F85 (decimal 8069)
defining Unicode char U+1F86 (decimal 8070)
defining Unicode char U+1F87 (decimal 8071)
defining Unicode char U+1F88 (decimal 8072)
defining Unicode char U+1F89 (decimal 8073)
defining Unicode char U+1F8A (decimal 8074)
defining Unicode char U+1F8B (decimal 8075)
defining Unicode char U+1F8C (decimal 8076)
defining Unicode char U+1F8D (decimal 8077)
defining Unicode char U+1F8E (decimal 8078)
defining Unicode char U+1F8F (decimal 8079)
defining Unicode char U+1F90 (decimal 8080)
defining Unicode char U+1F91 (decimal 8081)
defining Unicode char U+1F92 (decimal 8082)
defining Unicode char U+1F93 (decimal 8083)
defining Unicode char U+1F94 (decimal 8084)
defining Unicode char U+1F95 (decimal 8085)
defining Unicode char U+1F96 (decimal 8086)
defining Unicode char U+1F97 (decimal 8087)
defining Unicode char U+1F98 (decimal 8088)
defining Unicode char U+1F99 (decimal 8089)
defining Unicode char U+1F9A (decimal 8090)
defining Unicode char U+1F9B (decimal 8091)
defining Unicode char U+1F9C (decimal 8092)
defining Unicode char U+1F9D (decimal 8093)
defining Unicode char U+1F9E (decimal 8094)
defining Unicode char U+1F9F (decimal 8095)
defining Unicode char U+1FA0 (decimal 8096)
defining Unicode char U+1FA1 (decimal 8097)
defining Unicode char U+1FA2 (decimal 8098)
defining Unicode char U+1FA3 (decimal 8099)
defining Unicode char U+1FA4 (decimal 8100)
defining Unicode char U+1FA5 (decimal 8101)
defining Unicode char U+1FA6 (decimal 8102)
defining Unicode char U+1FA7 (decimal 8103)
defining Unicode char U+1FA8 (decimal 8104)
defining Unicode char U+1FA9 (decimal 8105)
defining Unicode char U+1FAA (decimal 8106)
defining Unicode char U+1FAB (decimal 8107)
defining Unicode char U+1FAC (decimal 8108)
defining Unicode char U+1FAD (decimal 8109)
defining Unicode char U+1FAE (decimal 8110)
defining Unicode char U+1FAF (decimal 8111)
defining Unicode char U+1FB0 (decimal 8112)
defining Unicode char U+1FB1 (decimal 8113)
defining Unicode char U+1FB2 (decimal 8114)
defining Unicode char U+1FB3 (decimal 8115)
defining Unicode char U+1FB4 (decimal 8116)
defining Unicode char U+1FB6 (decimal 8118)
defining Unicode char U+1FB7 (decimal 8119)
defining Unicode char U+1FB8 (decimal 8120)
defining Unicode char U+1FB9 (decimal 8121)
defining Unicode char U+1FBA (decimal 8122)
defining Unicode char U+1FBB (decimal 8123)
defining Unicode char U+1FBC (decimal 8124)
defining Unicode char U+1FBD (decimal 8125)
defining Unicode char U+1FBE (decimal 8126)
defining Unicode char U+1FBF (decimal 8127)
defining Unicode char U+1FC0 (decimal 8128)
defining Unicode char U+1FC1 (decimal 8129)
defining Unicode char U+1FC2 (decimal 8130)
defining Unicode char U+1FC3 (decimal 8131)
defining Unicode char U+1FC4 (decimal 8132)
defining Unicode char U+1FC6 (decimal 8134)
defining Unicode char U+1FC7 (decimal 8135)
defining Unicode char U+1FC8 (decimal 8136)
defining Unicode char U+1FC9 (decimal 8137)
defining Unicode char U+1FCA (decimal 8138)
defining Unicode char U+1FCB (decimal 8139)
defining Unicode char U+1FCC (decimal 8140)
defining Unicode char U+1FCD (decimal 8141)
defining Unicode char U+1FCE (decimal 8142)
defining Unicode char U+1FCF (decimal 8143)
defining Unicode char U+1FD0 (decimal 8144)
defining Unicode char U+1FD1 (decimal 8145)
defining Unicode char U+1FD2 (decimal 8146)
defining Unicode char U+1FD3 (decimal 8147)
defining Unicode char U+1FD6 (decimal 8150)
defining Unicode char U+1FD7 (decimal 8151)
defining Unicode char U+1FD8 (decimal 8152)
defining Unicode char U+1FD9 (decimal 8153)
defining Unicode char U+1FDA (decimal 8154)
defining Unicode char U+1FDB (decimal 8155)
defining Unicode char U+1FDD (decimal 8157)
defining Unicode char U+1FDE (decimal 8158)
defining Unicode char U+1FDF (decimal 8159)
defining Unicode char U+1FE0 (decimal 8160)
defining Unicode char U+1FE1 (decimal 8161)
defining Unicode char U+1FE2 (decimal 8162)
defining Unicode char U+1FE3 (decimal 8163)
defining Unicode char U+1FE4 (decimal 8164)
defining Unicode char U+1FE5 (decimal 8165)
defining Unicode char U+1FE6 (decimal 8166)
defining Unicode char U+1FE7 (decimal 8167)
defining Unicode char U+1FE8 (decimal 8168)
defining Unicode char U+1FE9 (decimal 8169)
defining Unicode char U+1FEA (decimal 8170)
defining Unicode char U+1FEB (decimal 8171)
defining Unicode char U+1FEC (decimal 8172)
defining Unicode char U+1FED (decimal 8173)
defining Unicode char U+1FEE (decimal 8174)
defining Unicode char U+1FEF (decimal 8175)
defining Unicode char U+1FF2 (decimal 8178)
defining Unicode char U+1FF3 (decimal 8179)
defining Unicode char U+1FF4 (decimal 8180)
defining Unicode char U+1FF6 (decimal 8182)
defining Unicode char U+1FF7 (decimal 8183)
defining Unicode char U+1FF8 (decimal 8184)
defining Unicode char U+1FF9 (decimal 8185)
defining Unicode char U+1FFA (decimal 8186)
defining Unicode char U+1FFB (decimal 8187)
defining Unicode char U+1FFC (decimal 8188)
defining Unicode char U+1FFD (decimal 8189)
defining Unicode char U+1FFE (decimal 8190)
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+2030 (decimal 8240)
defining Unicode char U+20AC (decimal 8364)
defining Unicode char U+2126 (decimal 8486)
defining Unicode char U+10144 (decimal 65860)
defining Unicode char U+10145 (decimal 65861)
defining Unicode char U+10146 (decimal 65862)
defining Unicode char U+10147 (decimal 65863)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\greek-fontenc\greek-fontenc.def"
File: greek-fontenc.def 2015/08/04 v0.13 Common Greek font encoding definitions
))
Package textgreek Info: Loaded fontmap: {eur/*/*}{U/eur/*/*} {phv/*/*}{U/psy/*/
*}. on input line 69.
) ("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\geometry\geometry.sty"
Package: geometry 2010/09/12 v5.6 Page Geometry
\Gm@cnth=\count115
\Gm@cntv=\count116
\c@Gm@tempcnt=\count117
\Gm@bindingoffset=\dimen140
\Gm@wd@mp=\dimen141
\Gm@odd@mp=\dimen142
\Gm@even@mp=\dimen143
\Gm@layoutwidth=\dimen144
\Gm@layoutheight=\dimen145
\Gm@layouthoffset=\dimen146
\Gm@layoutvoffset=\dimen147
\Gm@dimlist=\toks26
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\geometry\geometry.cfg"))
\@float@every@table=\toks27