-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreinforcement learning presentation.log
1417 lines (1325 loc) · 57.4 KB
/
reinforcement learning presentation.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.5-1.40.14 (MiKTeX 2.9 64-bit) (preloaded format=pdflatex 2014.2.24) 5 MAY 2016 11:32
entering extended mode
**reinforcement*learning*presentation.tex
("C:\Users\Todd\Dropbox\Data Incubator Challenge April\deep_learning\Deep-Learn
ing\Deep-Learning\reinforcement learning presentation.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-2013-05-26, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, latin, latvian,
lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerman, n
german-x-2013-05-26, nynorsk, oriya, panjabi, pinyin, polish, portuguese, roman
ian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swissgerm
an, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, usengl
ishmax, welsh, loaded.
("C:\Users\Todd\Dropbox\Data Incubator Challenge April\deep_learning\Deep-Learn
ing\Deep-Learning\reinforcement_learning_presentation_preamble.tex"
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamer.cls"
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasercs.sty"
Package: beamerbasercs 2013/12/25 (rcs-revision 31cc758a62ae)
)
Document Class: beamer 2013/12/02 3.33 A class for typesetting presentations (r
cs-revision 332bfd3ce558)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasemodes.st
y"
Package: beamerbasemodes 2013/09/03 (rcs-revision 768f2d98ca64)
\beamer@tempbox=\box26
\beamer@tempcount=\count79
\c@beamerpauses=\count80
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasedecode.s
ty"
Package: beamerbasedecode 2010/05/01 (rcs-revision efa082c6111d)
\beamer@slideinframe=\count81
\beamer@minimum=\count82
)
\beamer@commentbox=\box27
\beamer@modecount=\count83
) ("C:\Program Files\MiKTeX 2.9reinstall\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.
)
\headheight=\dimen102
\headdp=\dimen103
\footheight=\dimen104
\sidebarheight=\dimen105
\beamer@tempdim=\dimen106
\beamer@finalheight=\dimen107
\beamer@animht=\dimen108
\beamer@animdp=\dimen109
\beamer@animwd=\dimen110
\beamer@leftmargin=\dimen111
\beamer@rightmargin=\dimen112
\beamer@leftsidebar=\dimen113
\beamer@rightsidebar=\dimen114
\beamer@boxsize=\dimen115
\beamer@vboxoffset=\dimen116
\beamer@descdefault=\dimen117
\beamer@descriptionwidth=\dimen118
\beamer@lastskip=\skip41
\beamer@areabox=\box28
\beamer@animcurrent=\box29
\beamer@animshowbox=\box30
\beamer@sectionbox=\box31
\beamer@logobox=\box32
\beamer@linebox=\box33
\beamer@sectioncount=\count84
\beamer@subsubsectionmax=\count85
\beamer@subsectionmax=\count86
\beamer@sectionmax=\count87
\beamer@totalheads=\count88
\beamer@headcounter=\count89
\beamer@partstartpage=\count90
\beamer@sectionstartpage=\count91
\beamer@subsectionstartpage=\count92
\beamer@animationtempa=\count93
\beamer@animationtempb=\count94
\beamer@xpos=\count95
\beamer@ypos=\count96
\beamer@showpartnumber=\count97
\beamer@currentsubsection=\count98
\beamer@coveringdepth=\count99
\beamer@sectionadjust=\count100
\beamer@tocsectionnumber=\count101
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseoptions.
sty"
Package: beamerbaseoptions 2013/03/10 (rcs-revision 47431932db0d)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\graphics\keyval.sty"
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
))
\beamer@paperwidth=\skip42
\beamer@paperheight=\skip43
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\geometry\geometry.sty"
Package: geometry 2010/09/12 v5.6 Page Geometry
("C:\Program Files\MiKTeX 2.9reinstall\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:\Program Files\MiKTeX 2.9reinstall\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count102
\Gm@cntv=\count103
\c@Gm@tempcnt=\count104
\Gm@bindingoffset=\dimen119
\Gm@wd@mp=\dimen120
\Gm@odd@mp=\dimen121
\Gm@even@mp=\dimen122
\Gm@layoutwidth=\dimen123
\Gm@layoutheight=\dimen124
\Gm@layouthoffset=\dimen125
\Gm@layoutvoffset=\dimen126
\Gm@dimlist=\toks15
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\geometry\geometry.cfg"))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\base\size11.clo"
File: size11.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\pgf\basiclayer\pgfcore.sty"
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\graphics\graphics.sty"
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Program Files\MiKTeX 2.9reinstall\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.
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\pdftex-def\pdftex.def"
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count105
))
\Gin@req@height=\dimen127
\Gin@req@width=\dimen128
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\pgf\systemlayer\pgfsys.sty"
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\pgf\utilities\pgfrcs.sty"
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\utilities\pgfutil-common
.tex"
\pgfutil@everybye=\toks16
\pgfutil@tempdima=\dimen129
\pgfutil@tempdimb=\dimen130
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\utilities\pgfutil-common
-lists.tex"))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\utilities\pgfutil-latex.
def"
\pgfutil@abb=\box34
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\ms\everyshi.sty"
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\utilities\pgfrcs.code.te
x"
Package: pgfrcs 2013/12/20 v3.0.0 (rcs-revision 1.28)
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\systemlayer\pgfsys.code.
tex"
Package: pgfsys 2013/11/30 v3.0.0 (rcs-revision 1.47)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\utilities\pgfkeys.code.t
ex"
\pgfkeys@pathtoks=\toks17
\pgfkeys@temptoks=\toks18
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\utilities\pgfkeysfiltere
d.code.tex"
\pgfkeys@tmptoks=\toks19
))
\pgf@x=\dimen131
\pgf@y=\dimen132
\pgf@xa=\dimen133
\pgf@ya=\dimen134
\pgf@xb=\dimen135
\pgf@yb=\dimen136
\pgf@xc=\dimen137
\pgf@yc=\dimen138
\w@pgf@writea=\write3
\r@pgf@reada=\read1
\c@pgf@counta=\count106
\c@pgf@countb=\count107
\c@pgf@countc=\count108
\c@pgf@countd=\count109
\t@pgf@toka=\toks20
\t@pgf@tokb=\toks21
\t@pgf@tokc=\toks22
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\systemlayer\pgf.cfg"
File: pgf.cfg 2008/05/14 (rcs-revision 1.7)
)
Driver file for pgf: pgfsys-pdftex.def
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\systemlayer\pgfsys-pdfte
x.def"
File: pgfsys-pdftex.def 2013/07/18 (rcs-revision 1.33)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\systemlayer\pgfsys-commo
n-pdf.def"
File: pgfsys-common-pdf.def 2013/10/10 (rcs-revision 1.13)
)))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\systemlayer\pgfsyssoftpa
th.code.tex"
File: pgfsyssoftpath.code.tex 2013/09/09 (rcs-revision 1.9)
\pgfsyssoftpath@smallbuffer@items=\count110
\pgfsyssoftpath@bigbuffer@items=\count111
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\systemlayer\pgfsysprotoc
ol.code.tex"
File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4)
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\xcolor\xcolor.sty"
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
("C:\Program Files\MiKTeX 2.9reinstall\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.
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:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcore.code.
tex"
Package: pgfcore 2010/04/11 v3.0.0 (rcs-revision 1.7)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmath.code.tex"
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathcalc.code.te
x"
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathutil.code.te
x")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathparser.code.
tex"
\pgfmath@dimen=\dimen139
\pgfmath@count=\count112
\pgfmath@box=\box35
\pgfmath@toks=\toks23
\pgfmath@stack@operand=\toks24
\pgfmath@stack@operation=\toks25
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.co
de.tex"
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.ba
sic.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.tr
igonometric.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.ra
ndom.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.co
mparison.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.ba
se.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.ro
und.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.mi
sc.code.tex")
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfunctions.in
tegerarithmetics.code.tex")))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\math\pgfmathfloat.code.t
ex"
\c@pgfmathroundto@lastzeros=\count113
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorepoints
.code.tex"
File: pgfcorepoints.code.tex 2013/10/07 (rcs-revision 1.27)
\pgf@picminx=\dimen140
\pgf@picmaxx=\dimen141
\pgf@picminy=\dimen142
\pgf@picmaxy=\dimen143
\pgf@pathminx=\dimen144
\pgf@pathmaxx=\dimen145
\pgf@pathminy=\dimen146
\pgf@pathmaxy=\dimen147
\pgf@xx=\dimen148
\pgf@xy=\dimen149
\pgf@yx=\dimen150
\pgf@yy=\dimen151
\pgf@zx=\dimen152
\pgf@zy=\dimen153
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorepathco
nstruct.code.tex"
File: pgfcorepathconstruct.code.tex 2013/10/07 (rcs-revision 1.29)
\pgf@path@lastx=\dimen154
\pgf@path@lasty=\dimen155
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorepathus
age.code.tex"
File: pgfcorepathusage.code.tex 2013/12/13 (rcs-revision 1.23)
\pgf@shorten@end@additional=\dimen156
\pgf@shorten@start@additional=\dimen157
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorescopes
.code.tex"
File: pgfcorescopes.code.tex 2013/10/09 (rcs-revision 1.44)
\pgfpic=\box36
\pgf@hbox=\box37
\pgf@layerbox@main=\box38
\pgf@picture@serial@count=\count114
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoregraphi
cstate.code.tex"
File: pgfcoregraphicstate.code.tex 2013/09/19 (rcs-revision 1.11)
\pgflinewidth=\dimen158
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoretransf
ormations.code.tex"
File: pgfcoretransformations.code.tex 2013/10/10 (rcs-revision 1.17)
\pgf@pt@x=\dimen159
\pgf@pt@y=\dimen160
\pgf@pt@temp=\dimen161
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorequick.
code.tex"
File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoreobject
s.code.tex"
File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorepathpr
ocessing.code.tex"
File: pgfcorepathprocessing.code.tex 2013/09/09 (rcs-revision 1.9)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorearrows
.code.tex"
File: pgfcorearrows.code.tex 2013/11/07 (rcs-revision 1.40)
\pgfarrowsep=\dimen162
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoreshade.
code.tex"
File: pgfcoreshade.code.tex 2013/07/15 (rcs-revision 1.15)
\pgf@max=\dimen163
\pgf@sys@shading@range@num=\count115
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoreimage.
code.tex"
File: pgfcoreimage.code.tex 2013/07/15 (rcs-revision 1.18)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoreextern
al.code.tex"
File: pgfcoreexternal.code.tex 2013/07/15 (rcs-revision 1.20)
\pgfexternal@startupbox=\box39
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorelayers
.code.tex"
File: pgfcorelayers.code.tex 2013/07/18 (rcs-revision 1.7)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcoretransp
arency.code.tex"
File: pgfcoretransparency.code.tex 2013/09/30 (rcs-revision 1.5)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\pgf\basiclayer\pgfcorepatter
ns.code.tex"
File: pgfcorepatterns.code.tex 2013/11/07 (rcs-revision 1.5)
)))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\pgf\utilities\xxcolor.sty"
Package: xxcolor 2003/10/24 ver 0.1
\XC@nummixins=\count116
\XC@countmixins=\count117
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\oberdiek\atbegshi.sty"
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX
("C:\Program Files\MiKTeX 2.9reinstall\tex\generic\oberdiek\hobsub-hyperref.sty
"
Package: hobsub-hyperref 2012/04/25 v1.12 Bundle oberdiek, subset hyperref (HO)
("C:\Program Files\MiKTeX 2.9reinstall\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 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\MiKTeX 2.9reinstall\tex\latex\oberdiek\auxhook.sty"
Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen164
\Hy@linkcounter=\count118
\Hy@pagecounter=\count119
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count120
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `bookmarks' set `true' on input line 4319.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4319.
Package hyperref Info: Option `implicit' set `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 OFF; no redefinition of LaTeX internals.
Package hyperref Info: Bookmarks ON on input line 4688.
\c@Hy@tempcnt=\count121
("C:\Program Files\MiKTeX 2.9reinstall\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=\dimen165
\Fld@menulength=\count122
\Field@Width=\dimen166
\Fld@charsize=\dimen167
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 OFF on input line 6315.
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=\count123
Package hyperref Message: Stopped early.
)
Package hyperref Message: Driver (autodetected): hpdftex.
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX
\Fld@listcount=\count124
\c@bookmark@seq@number=\count125
("C:\Program Files\MiKTeX 2.9reinstall\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:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaserequires
.sty"
Package: beamerbaserequires 2010/05/01 (rcs-revision efa082c6111d)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasecompatib
ility.sty"
Package: beamerbasecompatibility 2012/05/01 (rcs-revision 67c48b3b652d)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasefont.sty
"
Package: beamerbasefont 2013/10/18 (rcs-revision 72f39e01808a)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsfonts\amssymb.sty"
Package: amssymb 2013/01/14 v3.01 AMS font symbols
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsfonts\amsfonts.sty"
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks26
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\sansmathaccent\sansmathaccent.
sty"
Package: sansmathaccent 2013/03/28
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\filehook\filehook.sty"
Package: filehook 2011/10/12 v0.5d Hooks for input files
)))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasetranslat
or.sty"
Package: beamerbasetranslator 2010/06/11 (rcs-revision 85fd1cc7fc42)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\translator\transla
tor.sty"
Package: translator 2010/06/12 ver 1.10
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\translator\transla
tor-language-mappings.tex")))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasemisc.sty
"
Package: beamerbasemisc 2013/09/03 (rcs-revision a55719c41d85)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasetwoscree
ns.sty"
Package: beamerbasetwoscreens 2010/05/01 (rcs-revision efa082c6111d)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseoverlay.
sty"
Package: beamerbaseoverlay 2013/12/25 (rcs-revision f6bd5e3805da)
\beamer@argscount=\count126
\beamer@lastskipcover=\skip44
\beamer@trivlistdepth=\count127
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasetitle.st
y"
Package: beamerbasetitle 2010/09/21 (rcs-revision f0446ed0b6ae)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasesection.
sty"
Package: beamerbasesection 2013/06/07 (rcs-revision 60b9fe0f342f)
\c@lecture=\count128
\c@part=\count129
\c@section=\count130
\c@subsection=\count131
\c@subsubsection=\count132
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseframe.st
y"
Package: beamerbaseframe 2013/10/02 (rcs-revision cdc8e9a3aaac)
\beamer@framebox=\box40
\beamer@frametitlebox=\box41
\beamer@zoombox=\box42
\beamer@zoomcount=\count133
\beamer@zoomframecount=\count134
\beamer@frametextheight=\dimen168
\c@subsectionslide=\count135
\beamer@frametopskip=\skip45
\beamer@framebottomskip=\skip46
\beamer@frametopskipautobreak=\skip47
\beamer@framebottomskipautobreak=\skip48
\beamer@envbody=\toks27
\framewidth=\dimen169
\c@framenumber=\count136
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseverbatim
.sty"
Package: beamerbaseverbatim 2012/08/30 (rcs-revision dfdb135076b3)
\beamer@verbatimfileout=\write4
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseframesiz
e.sty"
Package: beamerbaseframesize 2011/09/12 (rcs-revision 70f9d8411e54)
\beamer@splitbox=\box43
\beamer@autobreakcount=\count137
\beamer@autobreaklastheight=\dimen170
\beamer@frametitletoks=\toks28
\beamer@framesubtitletoks=\toks29
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseframecom
ponents.sty"
Package: beamerbaseframecomponents 2013/10/18 (rcs-revision 5cf6c5555a45)
\beamer@footins=\box44
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasecolor.st
y"
Package: beamerbasecolor 2010/06/06 (rcs-revision d1a9b48be06d)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasenotes.st
y"
Package: beamerbasenotes 2012/12/19 (rcs-revision 1686da3db3c9)
\beamer@frameboxcopy=\box45
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasetoc.sty"
Package: beamerbasetoc 2013/05/23 (rcs-revision 0fdf5bc43be8)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasetemplate
s.sty"
Package: beamerbasetemplates 2010/05/01 (rcs-revision efa082c6111d)
\beamer@sbttoks=\toks30
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseauxtempl
ates.sty"
Package: beamerbaseauxtemplates 2013/09/04 (rcs-revision 4ac715c499d0)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaseboxes.st
y"
Package: beamerbaseboxes 2012/05/13 (rcs-revision 56972908a390)
\bmb@box=\box46
\bmb@colorbox=\box47
\bmb@boxshadow=\box48
\bmb@boxshadowball=\box49
\bmb@boxshadowballlarge=\box50
\bmb@temp=\dimen171
\bmb@dima=\dimen172
\bmb@dimb=\dimen173
\bmb@prevheight=\dimen174
)
\beamer@blockheadheight=\dimen175
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbaselocalstr
ucture.sty"
Package: beamerbaselocalstructure 2013/09/04 (rcs-revision 4ac715c499d0)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\tools\enumerate.sty"
Package: enumerate 1999/03/05 v3.00 enumerate extensions (DPC)
\@enLab=\toks31
)
\c@figure=\count138
\c@table=\count139
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasenavigati
on.sty"
Package: beamerbasenavigation 2013/10/05 (rcs-revision 62be157fe783)
\beamer@section@min@dim=\dimen176
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasetheorems
.sty"
Package: beamerbasetheorems 2010/06/06 (rcs-revision 7e7cc5e53e9d)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsmath\amsmath.sty"
Package: amsmath 2013/01/14 v2.14 AMS math features
\@mathmargin=\skip51
For additional information on amsmath, use the `?' option.
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks32
\ex@=\dimen177
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen178
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amsmath\amsopn.sty"
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count140
LaTeX Info: Redefining \frac on input line 210.
\uproot@=\count141
\leftroot@=\count142
LaTeX Info: Redefining \overline on input line 306.
\classnum@=\count143
\DOTSCASE@=\count144
LaTeX Info: Redefining \ldots on input line 378.
LaTeX Info: Redefining \dots on input line 381.
LaTeX Info: Redefining \cdots on input line 466.
\Mathstrutbox@=\box51
\strutbox@=\box52
\big@size=\dimen179
LaTeX Font Info: Redeclaring font encoding OML on input line 566.
LaTeX Font Info: Redeclaring font encoding OMS on input line 567.
\macc@depth=\count145
\c@MaxMatrixCols=\count146
\dotsspace@=\muskip11
\c@parentequation=\count147
\dspbrk@lvl=\count148
\tag@help=\toks33
\row@=\count149
\column@=\count150
\maxfields@=\count151
\andhelp@=\toks34
\eqnshift@=\dimen180
\alignsep@=\dimen181
\tagshift@=\dimen182
\tagwidth@=\dimen183
\totwidth@=\dimen184
\lineht@=\dimen185
\@envbody=\toks35
\multlinegap=\skip52
\multlinetaggap=\skip53
\mathdisplay@stack=\toks36
LaTeX Info: Redefining \[ on input line 2665.
LaTeX Info: Redefining \] on input line 2666.
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\amscls\amsthm.sty"
Package: amsthm 2004/08/06 v2.20
\thm@style=\toks37
\thm@bodyfont=\toks38
\thm@headfont=\toks39
\thm@notefont=\toks40
\thm@headpunct=\toks41
\thm@preskip=\skip54
\thm@postskip=\skip55
\thm@headsep=\skip56
\dth@everypar=\toks42
)
\c@theorem=\count152
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\beamerbasethemes.s
ty"
Package: beamerbasethemes 2010/05/01 (rcs-revision efa082c6111d)
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\theme\beame
rthemedefault.sty"
Package: beamerthemedefault 2010/06/17 (rcs-revision d02a7cf4d8ae)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\font\beamer
fontthemedefault.sty"
Package: beamerfontthemedefault 2012/12/19 (rcs-revision 1686da3db3c9)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\color\beame
rcolorthemedefault.sty"
Package: beamercolorthemedefault 2012/12/19 (rcs-revision 1686da3db3c9)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\inner\beame
rinnerthemedefault.sty"
Package: beamerinnerthemedefault 2013/10/15 (rcs-revision 65cb471f9634)
\beamer@dima=\dimen186
\beamer@dimb=\dimen187
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\outer\beame
routerthemedefault.sty"
Package: beamerouterthemedefault 2012/12/19 (rcs-revision 1686da3db3c9)
)))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\theme\beame
rthemeBerlin.sty"
Package: beamerthemeBerlin 2010/06/17 (rcs-revision d02a7cf4d8ae)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\outer\beame
routerthememiniframes.sty"
Package: beamerouterthememiniframes 2010/06/17 (rcs-revision d02a7cf4d8ae)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\color\beame
rcolorthemewhale.sty"
Package: beamercolorthemewhale 2010/06/17 (rcs-revision d02a7cf4d8ae)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\color\beame
rcolorthemeorchid.sty"
Package: beamercolorthemeorchid 2010/06/17 (rcs-revision d02a7cf4d8ae)
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\beamer\base\themes\inner\beame
rinnerthemerectangles.sty"
Package: beamerinnerthemerectangles 2010/06/17 (rcs-revision d02a7cf4d8ae)
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\oberdiek\epstopdf.sty"
Package: epstopdf 2010/02/09 v2.5 Conversion with epstopdf on the fly (HO)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\oberdiek\epstopdf-base.sty"
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\oberdiek\grfext.sty"
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
)
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 452.
))
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\l3packages\xfrac\xfrac.sty"
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\l3packages\l3keys2e\l3keys2e.s
ty" ("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\l3kernel\expl3.sty"
Package: expl3 2014/05/06 v4751 L3 programming layer (loader)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\l3kernel\expl3-code.tex"
Package: expl3 2014/05/06 v4751 L3 programming layer (code)
L3 Module: l3bootstrap 2014/05/06 v4750 L3 Bootstrap code
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\misc\etex.sty"
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count153
)
L3 Module: l3names 2014/05/04 v4728 L3 Namespace for primitives
L3 Module: l3basics 2014/05/04 v4728 L3 Basic definitions
L3 Module: l3expan 2014/04/30 v4712 L3 Argument expansion
L3 Module: l3tl 2014/05/04 v4728 L3 Token lists
L3 Module: l3seq 2014/04/30 v4712 L3 Sequences and stacks
L3 Module: l3int 2014/05/04 v4728 L3 Integers
\c_max_int=\count154
\l_tmpa_int=\count155
\l_tmpb_int=\count156
\g_tmpa_int=\count157
\g_tmpb_int=\count158
L3 Module: l3quark 2014/05/04 v4728 L3 Quarks
L3 Module: l3prg 2014/05/04 v4728 L3 Control structures
\g__prg_map_int=\count159
L3 Module: l3clist 2014/05/04 v4728 L3 Comma separated lists
L3 Module: l3token 2014/05/04 v4728 L3 Experimental token manipulation
L3 Module: l3prop 2014/04/30 v4712 L3 Property lists
L3 Module: l3msg 2014/05/04 v4728 L3 Messages
L3 Module: l3file 2014/05/05 v4737 L3 File and I/O operations
\l_iow_line_count_int=\count160
\l__iow_target_count_int=\count161
\l__iow_current_line_int=\count162
\l__iow_current_word_int=\count163
\l__iow_current_indentation_int=\count164
L3 Module: l3skip 2014/05/05 v4738 L3 Dimensions and skips
\c_zero_dim=\dimen188
\c_max_dim=\dimen189
\l_tmpa_dim=\dimen190
\l_tmpb_dim=\dimen191
\g_tmpa_dim=\dimen192
\g_tmpb_dim=\dimen193
\c_zero_skip=\skip57
\c_max_skip=\skip58
\l_tmpa_skip=\skip59
\l_tmpb_skip=\skip60
\g_tmpa_skip=\skip61
\g_tmpb_skip=\skip62
\c_zero_muskip=\muskip12
\c_max_muskip=\muskip13
\l_tmpa_muskip=\muskip14
\l_tmpb_muskip=\muskip15
\g_tmpa_muskip=\muskip16
\g_tmpb_muskip=\muskip17
L3 Module: l3keys 2014/05/04 v4728 L3 Key-value interfaces
\g__keyval_level_int=\count165
\l_keys_choice_int=\count166
L3 Module: l3fp 2014/04/30 v4712 L3 Floating points
\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
L3 Module: l3box 2014/05/04 v4728 L3 Experimental boxes
\c_empty_box=\box53
\l_tmpa_box=\box54
\l_tmpb_box=\box55
\g_tmpa_box=\box56
\g_tmpb_box=\box57
L3 Module: l3coffins 2014/05/04 v4728 L3 Coffin code layer
\l__coffin_internal_box=\box58
\l__coffin_internal_dim=\dimen194
\l__coffin_offset_x_dim=\dimen195
\l__coffin_offset_y_dim=\dimen196
\l__coffin_x_dim=\dimen197
\l__coffin_y_dim=\dimen198
\l__coffin_x_prime_dim=\dimen199
\l__coffin_y_prime_dim=\dimen200
\c_empty_coffin=\box59
\l__coffin_aligned_coffin=\box60
\l__coffin_aligned_internal_coffin=\box61
\l_tmpa_coffin=\box62
\l_tmpb_coffin=\box63
\l__coffin_display_coffin=\box64
\l__coffin_display_coord_coffin=\box65
\l__coffin_display_pole_coffin=\box66
\l__coffin_display_offset_dim=\dimen201
Normal \dimen register pool exhausted, switching to extended pool.
\l__coffin_display_x_dim=\dimen256
\l__coffin_display_y_dim=\dimen257
L3 Module: l3color 2014/04/30 v4712 L3 Experimental color support
L3 Module: l3luatex 2014/04/30 v4712 L3 Experimental LuaTeX-specific functions
\g__cctab_allocate_int=\count176
\g__cctab_stack_int=\count177
L3 Module: l3candidates 2014/05/04 v4734 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen258
\l__box_bottom_dim=\dimen259
\l__box_left_dim=\dimen260
\l__box_right_dim=\dimen261
\l__box_top_new_dim=\dimen262
\l__box_bottom_new_dim=\dimen263
\l__box_left_new_dim=\dimen264
\l__box_right_new_dim=\dimen265
\l__box_internal_box=\box67
\l__coffin_bounding_shift_dim=\dimen266
\l__coffin_left_corner_dim=\dimen267
\l__coffin_right_corner_dim=\dimen268
\l__coffin_bottom_corner_dim=\dimen269
\l__coffin_top_corner_dim=\dimen270
\l__coffin_scaled_total_height_dim=\dimen271
\l__coffin_scaled_width_dim=\dimen272
))
Package: l3keys2e 2014/05/05 v4740 LaTeX2e option processing using LaTeX3 keys
)
("C:\Program Files\MiKTeX 2.9reinstall\tex\latex\base\textcomp.sty"
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
("C:\Program Files\MiKTeX 2.9reinstall\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:\Program Files\MiKTeX 2.9reinstall\tex\latex\l3packages\xparse\xparse.sty"
Package: xparse 2014/05/05 v4740 L3 Experimental document command parser
\l__xparse_current_arg_int=\count178
\l__xparse_m_args_int=\count179
\l__xparse_mandatory_args_int=\count180
\l__xparse_processor_int=\count181
\l__xparse_v_nesting_int=\count182