-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.log
2972 lines (2814 loc) · 123 KB
/
thesis.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (MiKTeX 2.9.6745 64-bit) (preloaded format=pdflatex 2018.8.7) 27 MAR 2019 22:41
entering extended mode
**./thesis.tex
(thesis.tex
LaTeX2e <2018-04-01> patch level 5
(Classes/PhDThesisPSnPDF.cls
Document Class: Classes/PhDThesisPSnPDF 2016/10/20 A PhD thesis class file by K
rishna Kumar (v2.2.2)
https://github.com/kks32/phd-thesis-template/
PhDThesisPSnPDF: Font size is set as 10pt
Class PhDThesisPSnPDF Warning: The University of Cambridge PhD thesis guideline
s recommend using a minimum font size of 11pt (12pt is preferred) and 10pt for
footnotes. on input line 248.
Class PhDThesisPSnPDF Warning: Unknown or non-standard option 'fleqn'. I'll see
if I can load it from the book class. If you get a warning unused global optio
n(s): `fleqn` then the option is not supported! on input line 248.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\book.cls"
Document Class: book 2014/09/29 v1.4h Standard LaTeX document class
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\fleqn.clo"
File: fleqn.clo 2016/12/29 v1.2a Standard LaTeX option (flush left equations)
\mathindent=\dimen102
Applying: [2015/01/01] Make \[ robust on input line 50.
LaTeX Info: Redefining \[ on input line 51.
Already applied: [0000/00/00] Make \[ robust on input line 62.
Applying: [2015/01/01] Make \] robust on input line 74.
LaTeX Info: Redefining \] on input line 75.
Already applied: [0000/00/00] Make \] robust on input line 83.
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\bk10.clo"
File: bk10.clo 2014/09/29 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=\dimen103
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\lscape.s
ty"
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\graphics
.sty"
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\trig.sty
"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics-cfg\grap
hics.cfg"
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 99.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics-def\pdft
ex.def"
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
)))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\setspace\setspace
.sty"
Package: setspace 2011/12/19 v6.7a set line spacing
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\tools\calc.sty"
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count89
\calc@Bcount=\count90
\calc@Adimen=\dimen104
\calc@Bdimen=\dimen105
\calc@Askip=\skip43
\calc@Bskip=\skip44
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count91
\calc@Cskip=\skip45
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\ifthen.sty"
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.
sty"
Package: ifpdf 2017/03/15 v3.2 Provides the ifpdf switch
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\ifxetex\ifxetex
.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\tocbibind\tocbibi
nd.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:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\titlesec\titletoc
.sty"
Package: titletoc 2011/12/15 v1.6 TOC entries
\ttl@leftsep=\dimen106
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\appendix\appendix
.sty"
Package: appendix 2009/09/02 v1.2b extra appendix facilities
\c@@pps=\count92
\c@@ppsavesec=\count93
\c@@ppsaveapp=\count94
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\tocloft\tocloft.s
ty"
Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 51.
\cftparskip=\skip46
\cftbeforetoctitleskip=\skip47
\cftaftertoctitleskip=\skip48
\cftbeforepartskip=\skip49
\cftpartnumwidth=\skip50
\cftpartindent=\skip51
\cftbeforechapskip=\skip52
\cftchapindent=\skip53
\cftchapnumwidth=\skip54
\cftbeforesecskip=\skip55
\cftsecindent=\skip56
\cftsecnumwidth=\skip57
\cftbeforesubsecskip=\skip58
\cftsubsecindent=\skip59
\cftsubsecnumwidth=\skip60
\cftbeforesubsubsecskip=\skip61
\cftsubsubsecindent=\skip62
\cftsubsubsecnumwidth=\skip63
\cftbeforeparaskip=\skip64
\cftparaindent=\skip65
\cftparanumwidth=\skip66
\cftbeforesubparaskip=\skip67
\cftsubparaindent=\skip68
\cftsubparanumwidth=\skip69
\cftbeforeloftitleskip=\skip70
\cftafterloftitleskip=\skip71
\cftbeforefigskip=\skip72
\cftfigindent=\skip73
\cftfignumwidth=\skip74
\c@lofdepth=\count95
\c@lotdepth=\count96
\cftbeforelottitleskip=\skip75
\cftafterlottitleskip=\skip76
\cftbeforetabskip=\skip77
\cfttabindent=\skip78
\cfttabnumwidth=\skip79
)
\mylen=\skip80
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\color.st
y"
Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics-cfg\colo
r.cfg"
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\dvipsnam
.def"
File: dvipsnam.def 2016/06/17 v3.0m Driver-dependent file (DPC,SPQR)
))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\oberdiek\epstopdf
.sty"
Package: epstopdf 2016/05/15 v2.6 Conversion with epstopdf on the fly (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\oberdiek\epstopdf
-base.sty"
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\infwar
err.sty"
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\oberdiek\grfext.s
ty"
Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\kvdefi
nekeys.sty"
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\ltxcmd
s.sty"
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
)))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\oberdiek\kvoption
s.sty"
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\keyval.s
ty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\kvsetk
eys.sty"
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\etexcm
ds.sty"
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\ifluat
ex.sty"
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
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.
)))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\pdftex
cmds.sty"
Package: pdftexcmds 2018/01/30 v0.27 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 epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
38.
Package grfext Info: Graphics extension search list:
(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 456.
))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics\graphicx
.sty"
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
\Gin@req@height=\dimen107
\Gin@req@width=\dimen108
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\datetime\datetime
.sty"
Package: datetime 2015/03/20 v2.60 Date Time Package
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\etoolbox\etoolbox
.sty"
Package: etoolbox 2018/02/11 v2.5e e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count97
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\fmtcount\fmtcount
.sty"
Package: fmtcount 2017/12/24 v3.05
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\xkeyval\xkeyval.s
ty"
Package: xkeyval 2014/12/03 v2.7a package option processing (HA)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\xkeyval\xkeyval
.tex"
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\xkeyval\xkvutil
s.tex"
\XKV@toks=\toks15
\XKV@tempa@toks=\toks16
)
\XKV@depth=\count98
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\fmtcount\fcprefix
.sty"
Package: fcprefix 2012/09/28
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\fmtcount\fcnumpar
ser.sty"
Package: fcnumparser 2017/06/15
\fc@digit@counter=\count99
))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsmath\amsgen.st
y"
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks17
\ex@=\dimen109
)
\c@padzeroesN=\count100
\fc@tmpcatcode=\count101
\@DT@modctr=\count102
\@ordinalctr=\count103
\@orgargctr=\count104
\@strctr=\count105
\@tmpstrctr=\count106
\@DT@loopN=\count107
\@DT@X=\count108
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\datetime\datetime
-defaults.sty"
Package: datetime-defaults 2013/09/10
)
\@day=\count109
\@month=\count110
\@year=\count111
\c@HOUR=\count112
\c@HOURXII=\count113
\c@MINUTE=\count114
\c@TOHOUR=\count115
\c@TOMINUTE=\count116
\c@SECOND=\count117
\currenthour=\count118
\currentminute=\count119
\currentsecond=\count120
Package datetime Info: No datetime.cfg file found, using default settings on in
put line 308.
\@dtctr=\count121
\dayofyear=\count122
\dayofweek=\count123
LaTeX Info: Redefining \today on input line 736.
\dt@a=\toks18
\dt@b=\toks19
)
\PHD@hour=\count124
\PHD@minute=\count125
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\natbib\natbib.sty
"
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip81
\bibsep=\skip82
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count126
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\textcomp.sty
"
Package: textcomp 2017/04/05 v2.0i 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 79.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
Now handling font encoding TS1 ...
... processing UTF-8 mapping file for font encoding TS1
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\ts1enc.dfu"
File: ts1enc.dfu 2018/04/05 v1.2c UTF-8 support for inputenc
defining Unicode char U+00A2 (decimal 162)
defining Unicode char U+00A3 (decimal 163)
defining Unicode char U+00A4 (decimal 164)
defining Unicode char U+00A5 (decimal 165)
defining Unicode char U+00A6 (decimal 166)
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00A8 (decimal 168)
defining Unicode char U+00A9 (decimal 169)
defining Unicode char U+00AA (decimal 170)
defining Unicode char U+00AC (decimal 172)
defining Unicode char U+00AE (decimal 174)
defining Unicode char U+00AF (decimal 175)
defining Unicode char U+00B0 (decimal 176)
defining Unicode char U+00B1 (decimal 177)
defining Unicode char U+00B2 (decimal 178)
defining Unicode char U+00B3 (decimal 179)
defining Unicode char U+00B4 (decimal 180)
defining Unicode char U+00B5 (decimal 181)
defining Unicode char U+00B6 (decimal 182)
defining Unicode char U+00B7 (decimal 183)
defining Unicode char U+00B9 (decimal 185)
defining Unicode char U+00BA (decimal 186)
defining Unicode char U+00BC (decimal 188)
defining Unicode char U+00BD (decimal 189)
defining Unicode char U+00BE (decimal 190)
defining Unicode char U+00D7 (decimal 215)
defining Unicode char U+00F7 (decimal 247)
defining Unicode char U+0192 (decimal 402)
defining Unicode char U+02C7 (decimal 711)
defining Unicode char U+02D8 (decimal 728)
defining Unicode char U+02DD (decimal 733)
defining Unicode char U+0E3F (decimal 3647)
defining Unicode char U+2016 (decimal 8214)
defining Unicode char U+2020 (decimal 8224)
defining Unicode char U+2021 (decimal 8225)
defining Unicode char U+2022 (decimal 8226)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+203B (decimal 8251)
defining Unicode char U+203D (decimal 8253)
defining Unicode char U+2044 (decimal 8260)
defining Unicode char U+204E (decimal 8270)
defining Unicode char U+2052 (decimal 8274)
defining Unicode char U+20A1 (decimal 8353)
defining Unicode char U+20A4 (decimal 8356)
defining Unicode char U+20A6 (decimal 8358)
defining Unicode char U+20A9 (decimal 8361)
defining Unicode char U+20AB (decimal 8363)
defining Unicode char U+20AC (decimal 8364)
defining Unicode char U+20B1 (decimal 8369)
defining Unicode char U+2103 (decimal 8451)
defining Unicode char U+2116 (decimal 8470)
defining Unicode char U+2117 (decimal 8471)
defining Unicode char U+211E (decimal 8478)
defining Unicode char U+2120 (decimal 8480)
defining Unicode char U+2122 (decimal 8482)
defining Unicode char U+2126 (decimal 8486)
defining Unicode char U+2127 (decimal 8487)
defining Unicode char U+212E (decimal 8494)
defining Unicode char U+2190 (decimal 8592)
defining Unicode char U+2191 (decimal 8593)
defining Unicode char U+2192 (decimal 8594)
defining Unicode char U+2193 (decimal 8595)
defining Unicode char U+2329 (decimal 9001)
defining Unicode char U+232A (decimal 9002)
defining Unicode char U+2422 (decimal 9250)
defining Unicode char U+25E6 (decimal 9702)
defining Unicode char U+25EF (decimal 9711)
defining Unicode char U+266A (decimal 9834)
defining Unicode char U+FEFF (decimal 65279)
))
LaTeX Info: Redefining \oldstylenums on input line 334.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378.
Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379.
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380.
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381.
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382.
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383.
Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384.
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385.
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386.
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387.
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388.
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389.
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390.
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391.
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392.
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409.
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\psnfss\mathptmx.s
ty"
Package: mathptmx 2005/04/12 PSNFSS-v9.2a Times w/ Math, improved (SPQR, WaS)
LaTeX Font Info: Redeclaring symbol font `operators' on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
\symbold=\mathgroup4
\symitalic=\mathgroup5
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/ptm/m/it on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/ptm/m/it on input line 35.
LaTeX Info: Redefining \hbar on input line 50.
) PhDThesisPSnPDF: Using Times Roman font
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\inputenc.sty
"
Package: inputenc 2018/04/06 v1.3b Input encoding file
\inpenc@prehook=\toks20
\inpenc@posthook=\toks21
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\fontenc.sty"
Package: fontenc 2017/04/05 v2.0i Standard LaTeX package
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\t1enc.def"
File: t1enc.def 2017/04/05 v2.0i Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\microtype\microty
pe.sty"
Package: microtype 2018/01/14 v2.7a Micro-typographical refinements (RS)
\MT@toks=\toks22
\MT@count=\count127
LaTeX Info: Redefining \textls on input line 793.
\MT@outer@kern=\dimen110
LaTeX Info: Redefining \textmicrotypecontext on input line 1339.
\MT@listname@count=\count128
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\microtype\microty
pe-pdftex.def"
File: microtype-pdftex.def 2018/01/14 v2.7a Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 913.
LaTeX Info: Redefining \lslig on input line 913.
\MT@outer@space=\skip83
)
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\microtype\microty
pe.cfg"
File: microtype.cfg 2018/01/14 v2.7a microtype main configuration file (RS)
))
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\pdftex\glyphtou
nicode.tex")
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsfonts\amsfonts
.sty"
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup6
\symAMSb=\mathgroup7
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsmath\amsmath.s
ty"
Package: amsmath 2017/09/02 v2.17a AMS math features
\@mathmargin=\skip84
For additional information on amsmath, use the `?' option.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsmath\amstext.s
ty"
Package: amstext 2000/06/29 v2.01 AMS text
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsmath\amsbsy.st
y"
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen111
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsmath\amsopn.st
y"
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count129
LaTeX Info: Redefining \frac on input line 213.
\uproot@=\count130
\leftroot@=\count131
LaTeX Info: Redefining \overline on input line 375.
\classnum@=\count132
\DOTSCASE@=\count133
LaTeX Info: Redefining \ldots on input line 472.
LaTeX Info: Redefining \dots on input line 475.
LaTeX Info: Redefining \cdots on input line 596.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen112
LaTeX Font Info: Redeclaring font encoding OML on input line 712.
LaTeX Font Info: Redeclaring font encoding OMS on input line 713.
\macc@depth=\count134
\c@MaxMatrixCols=\count135
\dotsspace@=\muskip10
\c@parentequation=\count136
\dspbrk@lvl=\count137
\tag@help=\toks23
\row@=\count138
\column@=\count139
\maxfields@=\count140
\andhelp@=\toks24
\eqnshift@=\dimen113
\alignsep@=\dimen114
\tagshift@=\dimen115
\tagwidth@=\dimen116
\totwidth@=\dimen117
\lineht@=\dimen118
\@envbody=\toks25
\multlinegap=\skip85
\multlinetaggap=\skip86
\mathdisplay@stack=\toks26
LaTeX Info: Redefining \[ on input line 2817.
LaTeX Info: Redefining \] on input line 2818.
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amsfonts\amssymb.
sty"
Package: amssymb 2013/01/14 v3.01 AMS font symbols
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\hyperref\hyperref
.sty"
Package: hyperref 2018/02/06 v6.86b Hypertext links for LaTeX
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\hobsub
-hyperref.sty"
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\generic\oberdiek\hobsub
-generic.sty"
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
Package hobsub Info: Skipping package `infwarerr' (already loaded).
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
Package hobsub Info: Skipping package `ifluatex' (already loaded).
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package hobsub Info: Skipping package `etexcmds' (already loaded).
Package hobsub Info: Skipping package `kvsetkeys' (already loaded).
Package hobsub Info: Skipping package `kvdefinekeys' (already loaded).
Package hobsub Info: Skipping package `pdftexcmds' (already loaded).
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
)
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
Package: xcolor-patch 2016/05/16 xcolor patch
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\oberdiek\auxhook.
sty"
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen119
\Hy@linkcounter=\count141
\Hy@pagecounter=\count142
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\hyperref\pd1enc.d
ef"
File: pd1enc.def 2018/02/06 v6.86b Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
\Hy@SavedSpaceFactor=\count143
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\00miktex\hyperref
.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `unicode' set `true' on input line 4383.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\hyperref\puenc.de
f"
File: puenc.def 2018/02/06 v6.86b Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Hyper figures OFF on input line 4509.
Package hyperref Info: Link nesting OFF on input line 4514.
Package hyperref Info: Hyper index ON on input line 4517.
Package hyperref Info: Plain pages OFF on input line 4524.
Package hyperref Info: Backreferencing OFF on input line 4529.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4762.
\c@Hy@tempcnt=\count144
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\url\url.sty"
\Urlmuskip=\muskip11
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5115.
\XeTeXLinkMargin=\dimen120
\Fld@menulength=\count145
\Field@Width=\dimen121
\Fld@charsize=\dimen122
Package hyperref Info: Hyper figures OFF on input line 6369.
Package hyperref Info: Link nesting OFF on input line 6374.
Package hyperref Info: Hyper index ON on input line 6377.
Package hyperref Info: backreferencing OFF on input line 6384.
Package hyperref Info: Link coloring OFF on input line 6389.
Package hyperref Info: Link coloring with OCG OFF on input line 6394.
Package hyperref Info: PDF/A mode OFF on input line 6399.
LaTeX Info: Redefining \ref on input line 6439.
LaTeX Info: Redefining \pageref on input line 6443.
\Hy@abspage=\count146
\c@Item=\count147
\c@Hfootnote=\count148
)
Package hyperref Info: Driver (autodetected): hpdftex.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\hyperref\hpdftex.
def"
File: hpdftex.def 2018/02/06 v6.86b Hyperref driver for pdfTeX
\Fld@listcount=\count149
\c@bookmark@seq@number=\count150
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\oberdiek\rerunfil
echeck.sty"
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip87
)
Package hyperref Info: Option `final' set `true' on input line 677.
Package hyperref Info: Option `plainpages' set `false' on input line 677.
Package hyperref Info: Option `pdftoolbar' set `true' on input line 677.
Package hyperref Info: Option `pdfmenubar' set `true' on input line 677.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 677.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 677.
Package hyperref Info: Option `breaklinks' set `true' on input line 677.
Package hyperref Info: Option `linktocpage' set `true' on input line 677.
Package hyperref Info: Option `colorlinks' set `true' on input line 677.
PhDThesisPSnPDF: The University identity guidelines recommend using left aligne
d text. Please use `flushleft' in the documentclass option, if you wish to left
align your text
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\tools\afterpage.s
ty"
Package: afterpage 2014/10/28 v1.08 After-Page Package (DPC)
\AP@output=\toks27
\AP@partial=\box28
\AP@footins=\box29
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\nomencl\nomencl.s
ty"
Package: nomencl 2005/09/22 v4.2 Nomenclature package (LN)
\nomlabelwidth=\dimen123
\nom@tempdim=\dimen124
\nomitemsep=\skip88
)
\@nomenclaturefile=\write3
\openout3 = `thesis.nlo'.
Writing nomenclature file thesis.nlo
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\base\makeidx.sty"
Package: makeidx 2014/09/29 v1.0m Standard LaTeX package
)
\@indexfile=\write4
\openout4 = `thesis.idx'.
Writing index file thesis.idx
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\amscls\amsthm.sty
"
Package: amsthm 2017/10/31 v2.20.4
\thm@style=\toks28
\thm@bodyfont=\toks29
\thm@headfont=\toks30
\thm@notefont=\toks31
\thm@headpunct=\toks32
\thm@preskip=\skip89
\thm@postskip=\skip90
\thm@headsep=\skip91
\dth@everypar=\toks33
) ("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\ms\ragged2e.sty
"
Package: ragged2e 2009/05/21 v2.1 ragged2e Package (MS)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\ms\everysel.sty"
Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS)
)
\CenteringLeftskip=\skip92
\RaggedLeftLeftskip=\skip93
\RaggedRightLeftskip=\skip94
\CenteringRightskip=\skip95
\RaggedLeftRightskip=\skip96
\RaggedRightRightskip=\skip97
\CenteringParfillskip=\skip98
\RaggedLeftParfillskip=\skip99
\RaggedRightParfillskip=\skip100
\JustifyingParfillskip=\skip101
\CenteringParindent=\skip102
\RaggedLeftParindent=\skip103
\RaggedRightParindent=\skip104
\JustifyingParindent=\skip105
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\pdfpages\pdfpages
.sty"
Package: pdfpages 2017/10/31 v0.5l Insert pages of external PDF documents (AM)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\eso-pic\eso-pic.s
ty"
Package: eso-pic 2018/04/12 v2.0h eso-pic (RN)
)
\AM@pagewidth=\dimen125
\AM@pageheight=\dimen126
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\pdfpages\pppdftex
.def"
File: pppdftex.def 2017/10/31 v0.5l Pdfpages driver for pdfTeX (AM)
)
\AM@pagebox=\box30
\AM@global@opts=\toks34
\AM@toc@title=\toks35
\c@AM@survey=\count151
\AM@templatesizebox=\box31
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\xcolor\xcolor.sty
"
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\graphics-cfg\colo
r.cfg"
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\colortbl\colortbl
.sty"
Package: colortbl 2018/05/02 v1.0c Color table columns (DPC)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\tools\array.sty"
Package: array 2018/04/30 v2.4h Tabular extension package (FMi)
\col@sep=\dimen127
\ar@mcellbox=\box32
\extrarowheight=\dimen128
\NC@list=\toks36
\extratabsurround=\skip106
\backup@length=\skip107
\ar@cellbox=\box33
)
\everycr=\toks37
\minrowclearance=\skip108
)
LaTeX Info: Redefining \color on input line 709.
\rownum=\count152
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\xpatch\xpatch.sty
"
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\l3kernel\expl3.st
y"
Package: expl3 2018-06-14 L3 programming layer (loader)
("C:\Users\Nasrul\AppData\Local\Programs\MiKTeX 2.9\tex\latex\l3kernel\expl3-co
de.tex"
Package: expl3 2018-06-14 L3 programming layer (code)
\c_max_int=\count153
\l_tmpa_int=\count154
\l_tmpb_int=\count155
\g_tmpa_int=\count156
\g_tmpb_int=\count157
\g__kernel_prg_map_int=\count158
\c_log_iow=\count159
\l_iow_line_count_int=\count160
\l__iow_line_target_int=\count161
\l__iow_one_indent_int=\count162
\l__iow_indent_int=\count163
\c_zero_dim=\dimen129
\c_max_dim=\dimen130
\l_tmpa_dim=\dimen131
\l_tmpb_dim=\dimen132
\g_tmpa_dim=\dimen133
\g_tmpb_dim=\dimen134
\c_zero_skip=\skip109
\c_max_skip=\skip110
\l_tmpa_skip=\skip111
\l_tmpb_skip=\skip112
\g_tmpa_skip=\skip113
\g_tmpb_skip=\skip114
\c_zero_muskip=\muskip12
\c_max_muskip=\muskip13
\l_tmpa_muskip=\muskip14
\l_tmpb_muskip=\muskip15
\g_tmpa_muskip=\muskip16
\g_tmpb_muskip=\muskip17
\l_keys_choice_int=\count164
\l__intarray_loop_int=\count165
\c__intarray_sp_dim=\dimen135
\g__intarray_font_int=\count166
\c__fp_leading_shift_int=\count167
\c__fp_middle_shift_int=\count168
\c__fp_trailing_shift_int=\count169
\c__fp_big_leading_shift_int=\count170
\c__fp_big_middle_shift_int=\count171
\c__fp_big_trailing_shift_int=\count172
\c__fp_Bigg_leading_shift_int=\count173
\c__fp_Bigg_middle_shift_int=\count174
\c__fp_Bigg_trailing_shift_int=\count175
\c__kernel_randint_max_int=\count176
\g__fp_array_int=\count177
\l__fp_array_loop_int=\count178
\l__sort_length_int=\count179
\l__sort_min_int=\count180
\l__sort_top_int=\count181
\l__sort_max_int=\count182
\l__sort_true_max_int=\count183
\l__sort_block_int=\count184
\l__sort_begin_int=\count185
\l__sort_end_int=\count186
\l__sort_A_int=\count187
\l__sort_B_int=\count188
\l__sort_C_int=\count189
\l__tl_analysis_normal_int=\count190
\l__tl_analysis_index_int=\count191
\l__tl_analysis_nesting_int=\count192
\l__tl_analysis_type_int=\count193
\l__regex_internal_a_int=\count194
\l__regex_internal_b_int=\count195
\l__regex_internal_c_int=\count196
\l__regex_balance_int=\count197
\l__regex_group_level_int=\count198
\l__regex_mode_int=\count199
\c__regex_cs_in_class_mode_int=\count266
\c__regex_cs_mode_int=\count267
\l__regex_catcodes_int=\count268
\l__regex_default_catcodes_int=\count269
\c__regex_catcode_D_int=\count270
\c__regex_catcode_S_int=\count271
\c__regex_catcode_L_int=\count272
\c__regex_catcode_O_int=\count273
\c__regex_catcode_A_int=\count274
\c__regex_all_catcodes_int=\count275
\l__regex_show_lines_int=\count276
\l__regex_min_state_int=\count277
\l__regex_max_state_int=\count278
\l__regex_left_state_int=\count279
\l__regex_right_state_int=\count280
\l__regex_capturing_group_int=\count281
\l__regex_min_pos_int=\count282
\l__regex_max_pos_int=\count283
\l__regex_curr_pos_int=\count284
\l__regex_start_pos_int=\count285
\l__regex_success_pos_int=\count286
\l__regex_curr_char_int=\count287
\l__regex_curr_catcode_int=\count288
\l__regex_last_char_int=\count289
\l__regex_case_changed_char_int=\count290
\l__regex_curr_state_int=\count291
\l__regex_step_int=\count292
\l__regex_min_active_int=\count293
\l__regex_max_active_int=\count294
\l__regex_replacement_csnames_int=\count295
\l__regex_match_count_int=\count296
\l__regex_min_submatch_int=\count297
\l__regex_submatch_int=\count298
\l__regex_zeroth_submatch_int=\count299
\g__regex_trace_regex_int=\count300
\c_empty_box=\box34
\l_tmpa_box=\box35
\l_tmpb_box=\box36
\g_tmpa_box=\box37