-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.log
2251 lines (2170 loc) · 101 KB
/
cv.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 XeTeX, Version 3.1415926-2.5-0.9999.3 (MiKTeX 2.9 64-bit) (preloaded format=xelatex 2013.9.9) 20 SEP 2013 23:33
entering extended mode
**"cv.tex"
("C:\Users\Milind Hegde\Documents\cv.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:\Program Files\MiKTeX 2.9\tex\latex\moderncv\moderncv.cls"
Document Class: moderncv 2013/04/29 v1.5.1 modern curriculum vitae and letter d
ocument class
("C:\Program Files\MiKTeX 2.9\tex\latex\base\size11.clo"
File: size11.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
Requested font "cmr10" at 10.95pt
)
("C:\Program Files\MiKTeX 2.9\tex\latex\etoolbox\etoolbox.sty"
Package: etoolbox 2011/01/03 v2.1 e-TeX tools for LaTeX
("C:\Program Files\MiKTeX 2.9\tex\latex\misc\etex.sty"
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count80
)
\etb@tempcnta=\count81
)
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty"
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\xcolor\xcolor.sty"
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\color.cfg"
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: xetex.def on input line 225.
("C:\Program Files\MiKTeX 2.9\tex\xelatex\xetex-def\xetex.def"
File: xetex.def 2013/04/29 v0.96 LaTeX color/graphics driver for XeTeX (RRM/JK)
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
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.9\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifluatex.sty"
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.sty"
Package: fontspec 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTeX
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\expl3.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3names.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3bootstrap.sty"
Package: l3bootstrap 2013/07/28 v4581 L3 Experimental bootstrap code
)
Package: l3names 2012/12/07 v4346 L3 Namespace for primitives
)
Package: expl3 2013/07/28 v4582 L3 Experimental code bundle wrapper
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3basics.sty"
Package: l3basics 2013/07/28 v4581 L3 Basic definitions
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3expan.sty"
Package: l3expan 2013/07/24 v4565 L3 Argument expansion
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3tl.sty"
Package: l3tl 2013/07/28 v4581 L3 Token lists
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3seq.sty"
Package: l3seq 2013/07/28 v4581 L3 Sequences and stacks
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3int.sty"
Package: l3int 2013/07/28 v4581 L3 Integers
\c_max_int=\count82
\l_tmpa_int=\count83
\l_tmpb_int=\count84
\g_tmpa_int=\count85
\g_tmpb_int=\count86
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3quark.sty"
Package: l3quark 2013/07/21 v4564 L3 Quarks
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3prg.sty"
Package: l3prg 2013/07/28 v4581 L3 Control structures
\g__prg_map_int=\count87
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3clist.sty"
Package: l3clist 2013/07/28 v4581 L3 Comma separated lists
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3token.sty"
Package: l3token 2013/07/28 v4581 L3 Experimental token manipulation
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3prop.sty"
Package: l3prop 2013/07/28 v4581 L3 Property lists
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3msg.sty"
Package: l3msg 2013/07/28 v4581 L3 Messages
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3file.sty"
Package: l3file 2013/07/28 v4581 L3 File and I/O operations
\l_iow_line_count_int=\count88
\l__iow_target_count_int=\count89
\l__iow_current_line_int=\count90
\l__iow_current_word_int=\count91
\l__iow_current_indentation_int=\count92
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3skip.sty"
Package: l3skip 2013/07/28 v4581 L3 Dimensions and skips
\c_zero_dim=\dimen102
\c_max_dim=\dimen103
\l_tmpa_dim=\dimen104
\l_tmpb_dim=\dimen105
\g_tmpa_dim=\dimen106
\g_tmpb_dim=\dimen107
\c_zero_skip=\skip41
\c_max_skip=\skip42
\l_tmpa_skip=\skip43
\l_tmpb_skip=\skip44
\g_tmpa_skip=\skip45
\g_tmpb_skip=\skip46
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3keys.sty"
Package: l3keys 2013/07/28 v4581 L3 Experimental key-value interfaces
\g__keyval_level_int=\count93
\l_keys_choice_int=\count94
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3fp.sty"
Package: l3fp 2013/07/09 v4521 L3 Floating points
\c__fp_leading_shift_int=\count95
\c__fp_middle_shift_int=\count96
\c__fp_trailing_shift_int=\count97
\c__fp_big_leading_shift_int=\count98
\c__fp_big_middle_shift_int=\count99
\c__fp_big_trailing_shift_int=\count100
\c__fp_Bigg_leading_shift_int=\count101
\c__fp_Bigg_middle_shift_int=\count102
\c__fp_Bigg_trailing_shift_int=\count103
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3box.sty"
Package: l3box 2013/07/28 v4581 L3 Experimental boxes
\c_empty_box=\box26
\l_tmpa_box=\box27
\l_tmpb_box=\box28
\g_tmpa_box=\box29
\g_tmpb_box=\box30
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3coffins.sty"
Package: l3coffins 2012/09/09 v4212 L3 Coffin code layer
\l__coffin_internal_box=\box31
\l__coffin_internal_dim=\dimen108
\l__coffin_offset_x_dim=\dimen109
\l__coffin_offset_y_dim=\dimen110
\l__coffin_x_dim=\dimen111
\l__coffin_y_dim=\dimen112
\l__coffin_x_prime_dim=\dimen113
\l__coffin_y_prime_dim=\dimen114
\c_empty_coffin=\box32
\l__coffin_aligned_coffin=\box33
\l__coffin_aligned_internal_coffin=\box34
\l_tmpa_coffin=\box35
\l_tmpb_coffin=\box36
\l__coffin_display_coffin=\box37
\l__coffin_display_coord_coffin=\box38
\l__coffin_display_pole_coffin=\box39
\l__coffin_display_offset_dim=\dimen115
\l__coffin_display_x_dim=\dimen116
\l__coffin_display_y_dim=\dimen117
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3color.sty"
Package: l3color 2012/08/29 v4156 L3 Experimental color support
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3luatex.sty"
Package: l3luatex 2013/07/28 v4581 L3 Experimental LuaTeX-specific functions
\g__cctab_allocate_int=\count104
\g__cctab_stack_int=\count105
)
("C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3candidates.sty"
Package: l3candidates 2013/07/24 v4576 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen118
\l__box_bottom_dim=\dimen119
\l__box_left_dim=\dimen120
\l__box_right_dim=\dimen121
\l__box_top_new_dim=\dimen122
\l__box_bottom_new_dim=\dimen123
\l__box_left_new_dim=\dimen124
\l__box_right_new_dim=\dimen125
\l__box_internal_box=\box40
\l__coffin_bounding_shift_dim=\dimen126
\l__coffin_left_corner_dim=\dimen127
\l__coffin_right_corner_dim=\dimen128
\l__coffin_bottom_corner_dim=\dimen129
\l__coffin_top_corner_dim=\dimen130
\l__coffin_scaled_total_height_dim=\dimen131
\l__coffin_scaled_width_dim=\dimen132
)
("C:\Program Files\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 not detected.
))
("C:\Program Files\MiKTeX 2.9\tex\latex\l3packages\xparse\xparse.sty"
Package: xparse 2013/07/28 v4582 L3 Experimental document command parser
\l__xparse_current_arg_int=\count106
\l__xparse_m_args_int=\count107
\l__xparse_mandatory_args_int=\count108
\l__xparse_processor_int=\count109
\l__xparse_v_nesting_int=\count110
)
\l_fontspec_script_int=\count111
\l_fontspec_language_int=\count112
\l_fontspec_strnum_int=\count113
\l_fontspec_tmpa_dim=\dimen133
\l_fontspec_tmpb_dim=\dimen134
\l_fontspec_tmpc_dim=\dimen135
Variant \tl_gset:cV already defined; not changing it on line 69
("C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec-patches.sty"
Package: fontspec-patches 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLa
TeX
("C:\Program Files\MiKTeX 2.9\tex\latex\base\fixltx2e.sty"
Package: fixltx2e 2006/09/13 v1.1m fixes to LaTeX
LaTeX Info: Redefining \em on input line 420.
)
LaTeX Info: Redefining \em on input line 22.
LaTeX Info: Redefining \emph on input line 30.
LaTeX Info: Redefining \- on input line 33.
*************************************************
* LaTeX warning: "xparse/redefine-command"
*
* Redefining document command \oldstylenums with arg. spec. 'm' on line 128.
*************************************************
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \liningnums with arg. spec. 'm' on line 132.
.................................................
) ("C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec-xetex.sty"
Package: fontspec-xetex 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTe
X
("C:\Program Files\MiKTeX 2.9\tex\latex\base\fontenc.sty"
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
("C:\Program Files\MiKTeX 2.9\tex\latex\euenc\eu1enc.def"
File: eu1enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
)
LaTeX Font Info: Try loading font information for EU1+lmr on input line 100.
("C:\Program Files\MiKTeX 2.9\tex\latex\euenc\eu1lmr.fd"
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
Requested font "[lmroman10-regular]:mapping=tex-text" at 10.0pt
-> C:/Program Files/MiKTeX 2.9/fonts/opentype/public/lm/lmroman10-regular.otf
)
("C:\Program Files\MiKTeX 2.9\tex\xelatex\xunicode\xunicode.sty"
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many
other characters in Unicode lower plane
("C:\Program Files\MiKTeX 2.9\tex\latex\tipa\t3enc.def"
File: t3enc.def 2001/12/31 T3 encoding
Requested font "[lmromanslant10-regular]:mapping=tex-text" at 10.0pt
-> C:/Program Files/MiKTeX 2.9/fonts/opentype/public/lm/lmromanslant10-regular
.otf
Requested font "[lmroman10-italic]:mapping=tex-text" at 10.0pt
-> C:/Program Files/MiKTeX 2.9/fonts/opentype/public/lm/lmroman10-italic.otf
Requested font "[lmroman10-bold]:mapping=tex-text" at 10.0pt
-> C:/Program Files/MiKTeX 2.9/fonts/opentype/public/lm/lmroman10-bold.otf
LaTeX Font Info: Try loading font information for EU1+lmss on input line 357
.
("C:\Program Files\MiKTeX 2.9\tex\latex\euenc\eu1lmss.fd"
File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
Requested font "[lmsans10-regular]:mapping=tex-text" at 10.0pt
-> C:/Program Files/MiKTeX 2.9/fonts/opentype/public/lm/lmsans10-regular.otf
)
\tipaTiiicode=\count114
\tipasavetokens=\toks14
\tipachecktokens=\toks15
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty"
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks16
)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Program Files\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: xetex.def on input line 91.
)
\Gin@req@height=\dimen136
\Gin@req@width=\dimen137
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \fontspec with arg. spec. 'O{}m' on line 41.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmainfont with arg. spec. 'O{}m' on line 46.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setsansfont with arg. spec. 'O{}m' on line 51.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmonofont with arg. spec. 'O{}m' on line 56.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathrm with arg. spec. 'O{}m' on line 65.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setboldmathrm with arg. spec. 'O{}m' on line 69.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathsf with arg. spec. 'O{}m' on line 73.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathtt with arg. spec. 'O{}m' on line 77.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontfamily with arg. spec. 'mO{}m' on line 96.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontface with arg. spec. 'mO{}m' on line 100.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \defaultfontfeatures with arg. spec. 'om' on line
. 108.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \addfontfeatures with arg. spec. 'm' on line 144.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontfeature with arg. spec. 'mm' on line 156.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newAATfeature with arg. spec. 'mmmm' on line 164.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newICUfeature with arg. spec. 'mmm' on line 172.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \aliasfontfeature with arg. spec. 'mm' on line
. 201.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \aliasfontfeatureoption with arg. spec. 'mmm' on
. line 203.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontscript with arg. spec. 'mm' on line 208.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \newfontlanguage with arg. spec. 'mm' on line 235.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \DeclareFontsExtensions with arg. spec. 'm' on
. line 256.
.................................................
Variant \prop_gput:cnV already defined; not changing it on line 582
Variant \prop_gput:cnx already defined; not changing it on line 583
\l_fontspec_tmp_int=\count115
LaTeX Info: Redefining \itshape on input line 2087.
LaTeX Info: Redefining \slshape on input line 2092.
LaTeX Info: Redefining \scshape on input line 2097.
LaTeX Info: Redefining \upshape on input line 2102.
("C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.cfg")))
("C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math.sty"
Package: unicode-math 2013/05/04 v0.7e Unicode maths in XeLaTeX and LuaLaTeX
("C:\Program Files\MiKTeX 2.9\tex\latex\l3packages\l3keys2e\l3keys2e.sty"
Package: l3keys2e 2013/07/28 v4582 LaTeX2e option processing using LaTeX3 keys
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\catchfile.sty"
Package: catchfile 2011/03/01 v1.6 Catch the contents of a file (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\etexcmds.sty"
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.
))
("C:\Program Files\MiKTeX 2.9\tex\latex\base\fix-cm.sty"
Package: fix-cm 2006/09/13 v1.1m fixes to LaTeX
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
))
("C:\Program Files\MiKTeX 2.9\tex\latex\filehook\filehook.sty"
Package: filehook 2011/10/12 v0.5d Hooks for input files
)
Variant \tl_put_right:cx already defined; not changing it on line 50
Variant \seq_if_in:NVTF already defined; not changing it on line 51
\g_um_fam_int=\count116
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \unimathsetup with arg. spec. 'm' on line 108.
.................................................
("C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math-xetex.sty"
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \setmathfont with arg. spec. 'O{}m' on line 439.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \addnolimits with arg. spec. 'm' on line 636.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \removenolimits with arg. spec. 'm' on line 639.
.................................................
("C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math-table.tex")
\g_um_primekern_muskip=\muskip16
\l_um_primecount_int=\count117
))
\g__file_internal_ior=\read1
Requested font "Palatino Linotype" at 10.0pt
-> Z^^H/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/ICU" at 10.0pt
-> f^^H/Windows/Fonts/pala.ttf
\g_fontspec_family_Palatino Linotype_int=\count118
Requested font "Palatino Linotype/ICU" at 10.0pt
-> ]^^H/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/ICU" at 10.0pt
-> W^^H/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/B/ICU" at 10.0pt
-> T^^H/Windows/Fonts/palab.ttf
Requested font "Palatino Linotype/B/ICU" at 10.0pt
-> K^^H/Windows/Fonts/palab.ttf
Requested font "Palatino Linotype/ICU" at 10.0pt
-> H^^H/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/I/ICU" at 10.0pt
-> E^^H/Windows/Fonts/palai.ttf
Requested font "Palatino Linotype/I/ICU" at 10.0pt
-> 9^^H/Windows/Fonts/palai.ttf
Requested font "Palatino Linotype/ICU" at 10.0pt
-> 6^^H/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/BI/ICU" at 10.0pt
-> 3^^H/Windows/Fonts/palabi.ttf
Requested font "Palatino Linotype/BI/ICU" at 10.0pt
-> *^^H/Windows/Fonts/palabi.ttf
.................................................
. fontspec info: "defining-font"
.
. Font family 'PalatinoLinotype(0)' created for font 'Palatino Linotype' with
. options [Ligatures=TeX,].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"Palatino Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;"
.
. * 'small caps' with NFSS spec.:
. <->"Palatino Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"
.
. * 'bold' with NFSS spec.:
. <->"Palatino Linotype/B/ICU:script=latn;language=DFLT;mapping=tex-text;"
.
. * 'bold small caps' with NFSS spec.:
. <->"Palatino
. Linotype/B/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"
.
. * 'italic' with NFSS spec.:
. <->"Palatino Linotype/I/ICU:script=latn;language=DFLT;mapping=tex-text;"
.
. * 'italic small caps' with NFSS spec.:
. <->"Palatino
. Linotype/I/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"
.
. * 'bold italic' with NFSS spec.:
. <->"Palatino Linotype/BI/ICU:script=latn;language=DFLT;mapping=tex-text;"
.
. * 'bold italic small caps' with NFSS spec.:
. <->"Palatino
. Linotype/BI/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"
.................................................
Requested font "Palatino Linotype/ICU:script=latn;language=DFLT;mapping=tex-tex
t;" at 10.0pt
-> ^^X^^H/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/ICU" at 10.0pt
-> n^^I/Windows/Fonts/pala.ttf
.................................................
. fontspec info: "defining-font"
.
. Font family 'PalatinoLinotype(0)' created for font 'Palatino Linotype' with
. options [Ligatures=TeX,].
.
. This font family consists of the following shapes:
.................................................
Requested font "Palatino Linotype/ICU" at 10.0pt
-> k^^I/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/ICU" at 10.0pt
-> h^^I/Windows/Fonts/pala.ttf
*************************************************
* fontspec warning: "script-not-exist-latn"
*
* Font 'Palatino Linotype' does not contain script 'Math'.
* 'Latin' script used instead.
*************************************************
Requested font "Palatino Linotype/ICU" at 10.0pt
-> e^^I/Windows/Fonts/pala.ttf
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScript' (+ssty) not available for font 'Palatino
* Linotype' with script 'Math' and language 'Default'.
*************************************************
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScriptScript' (+ssty) not available for font
* 'Palatino Linotype' with script 'Math' and language 'Default'.
*************************************************
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScript' (+ssty) not available for font 'Palatino
* Linotype' with script 'Math' and language 'Default'.
*************************************************
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScriptScript' (+ssty) not available for font
* 'Palatino Linotype' with script 'Math' and language 'Default'.
*************************************************
Requested font "Palatino Linotype/ICU" at 10.0pt
-> b^^I/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/B/ICU" at 10.0pt
-> _^^I/Windows/Fonts/palab.ttf
Requested font "Palatino Linotype/B/ICU" at 10.0pt
-> \^^I/Windows/Fonts/palab.ttf
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScript' (+ssty) not available for font 'Palatino
* Linotype/B' with script 'Math' and language 'Default'.
*************************************************
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScriptScript' (+ssty) not available for font
* 'Palatino Linotype/B' with script 'Math' and language 'Default'.
*************************************************
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScript' (+ssty) not available for font 'Palatino
* Linotype/B' with script 'Math' and language 'Default'.
*************************************************
*************************************************
* fontspec warning: "icu-feature-not-exist-in-font"
*
* OpenType feature 'Style=MathScriptScript' (+ssty) not available for font
* 'Palatino Linotype/B' with script 'Math' and language 'Default'.
*************************************************
.................................................
. fontspec info: "defining-font"
.
. Font family 'PalatinoLinotype(1)' created for font 'Palatino Linotype' with
. options
. [Ligatures=TeX,BoldItalicFont={},ItalicFont={},Script=Math,SizeFeatures={{Siz
e=10-},{Size=7-10,Font=Palatino
. Linotype,Style=MathScript},{Size=-7,Font=Palatino
. Linotype,Style=MathScriptScript}},].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <10->"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;"<7-10>"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;"<-7>"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;"
.
. * 'small caps' with NFSS spec.:
. <10->"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"<7-10>"Palatin
o
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"<-7>"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"
.
. * 'bold' with NFSS spec.:
. <10->"Palatino
. Linotype/B/ICU:script=latn;language=DFLT;mapping=tex-text;"<7-10>"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;"<-7>"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;"
.
. * 'bold small caps' with NFSS spec.:
. <10->"Palatino
. Linotype/B/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"<7-10>"Palat
ino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"<-7>"Palatino
. Linotype/ICU:script=latn;language=DFLT;mapping=tex-text;+smcp;"
.................................................
Requested font "Palatino Linotype/ICU:script=latn;language=DFLT;mapping=tex-tex
t;" at 10.0pt
-> Y^^I/Windows/Fonts/pala.ttf
Requested font "Palatino Linotype/ICU:script=latn;language=DFLT;" at 10.0pt
-> G^^I/Windows/Fonts/pala.ttf
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
(Font) `operators' in the math version `normal' on input line 105.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> EU1/PalatinoLinotype(1)/m/n on input li
ne 105.
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
(Font) `operators' in the math version `bold' on input line 105.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> EU1/PalatinoLinotype(1)/bx/n on input
line 105.
("C:\Program Files\MiKTeX 2.9\tex\latex\url\url.sty"
\Urlmuskip=\muskip17
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fancyhdr\fancyhdr.sty"
\fancy@headwidth=\skip47
\f@ncyO@elh=\skip48
\f@ncyO@erh=\skip49
\f@ncyO@olh=\skip50
\f@ncyO@orh=\skip51
\f@ncyO@elf=\skip52
\f@ncyO@erf=\skip53
\f@ncyO@olf=\skip54
\f@ncyO@orf=\skip55
)
("C:\Program Files\MiKTeX 2.9\tex\latex\moderncv\tweaklist.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\calc.sty"
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count119
\calc@Bcount=\count120
\calc@Adimen=\dimen138
\calc@Bdimen=\dimen139
\calc@Askip=\skip56
\calc@Bskip=\skip57
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count121
\calc@Cskip=\skip58
)
("C:\Program Files\MiKTeX 2.9\tex\latex\microtype\microtype.sty"
Package: microtype 2013/05/23 v2.5a Micro-typographical refinements (RS)
\MT@toks=\toks17
\MT@count=\count122
LaTeX Info: Redefining \textls on input line 766.
\MT@outer@kern=\dimen140
LaTeX Info: Redefining \textmicrotypecontext on input line 1285.
\MT@listname@count=\count123
("C:\Program Files\MiKTeX 2.9\tex\latex\microtype\microtype-xetex.def"
File: microtype-xetex.def 2013/05/23 v2.5a Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 254.
)
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Program Files\MiKTeX 2.9\tex\latex\microtype\microtype.cfg"
File: microtype.cfg 2013/05/23 v2.5a microtype main configuration file (RS)
))
("C:\Program Files\MiKTeX 2.9\tex\latex\moderncv\moderncvcollection.sty"
Package: moderncvcollection 2013/04/29 v1.5.1 moderncv collections
\c@collection@iterator=\count124
)
("C:\Program Files\MiKTeX 2.9\tex\latex\moderncv\moderncvcompatibility.sty"
Package: moderncvcompatibility 2013/04/29 v1.5.1 modern curriculum vitae and le
tter compatibility patches
)
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \address with arg. spec. 'mG{}G{}' on line 234.
.................................................
\c@collection@phones@count=\count125
\c@collection@socials@count=\count126
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \social with arg. spec. 'O{}O{}m' on line 261.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \photo with arg. spec. 'O{64pt}O{0.4pt}m' on line
. 343.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \section with arg. spec. 'sm' on line 389.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining document command \subsection with arg. spec. 'sm' on line 393.
.................................................
\c@cvcolumnscounter=\count127
\c@cvcolumnsautowidthcounter=\count128
\c@tmpiteratorcounter=\count129
\cvcolumnsdummywidth=\skip59
\cvcolumnswidth=\skip60
\cvcolumnsautowidth=\skip61
\cvcolumnautowidth=\skip62
\bibindent=\skip63
)
("C:\Program Files\MiKTeX 2.9\tex\latex\moderncv\moderncvstylecasual.sty"
Package: moderncvstylecasual 2013/04/29 v1.5.1 modern curriculum vitae and lett
er style scheme: casual
("C:\Program Files\MiKTeX 2.9\tex\latex\moderncv\moderncvstyleclassic.sty"
Package: moderncvstyleclassic 2013/04/29 v1.5.1 modern curriculum vitae and let
ter style scheme: classic
("C:\Program Files\MiKTeX 2.9\tex\latex\lm\lmodern.sty"
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
LaTeX Font Info: Encoding `EU1' has changed to `OT1' for symbol font
(Font) `operators' in the math version `normal' on input line 22.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) EU1/PalatinoLinotype(1)/m/n --> OT1/lmr/m/n on input li
ne 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Encoding `EU1' has changed to `OT1' for symbol font
(Font) `operators' in the math version `bold' on input line 26.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) EU1/PalatinoLinotype(1)/bx/n --> OT1/lmr/bx/n on input
line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\moderncv\moderncviconsmarvosym.sty"
Package: moderncviconsmarvosym 2013/04/29 v1.5.1 modern curriculum vitae and le
tter icons: marvosym
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\frontendlayer\tikz.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\basiclayer\pgf.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\utilities\pgfrcs.sty"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-common.tex"
\pgfutil@everybye=\toks18
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-latex.def"
\pgfutil@abb=\box41
("C:\Program Files\MiKTeX 2.9\tex\latex\ms\everyshi.sty"
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfrcs.code.tex"
Package: pgfrcs 2010/10/25 v2.10 (rcs-revision 1.24)
))
Package: pgf 2008/01/15 v2.10 (rcs-revision 1.12)
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\basiclayer\pgfcore.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\systemlayer\pgfsys.sty"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys.code.tex"
Package: pgfsys 2010/06/30 v2.10 (rcs-revision 1.37)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfkeys.code.tex"
\pgfkeys@pathtoks=\toks19
\pgfkeys@temptoks=\toks20
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfkeysfiltered.code.te
x"
\pgfkeys@tmptoks=\toks21
))
\pgf@x=\dimen141
\pgf@y=\dimen142
\pgf@xa=\dimen143
\pgf@ya=\dimen144
\pgf@xb=\dimen145
\pgf@yb=\dimen146
\pgf@xc=\dimen147
\pgf@yc=\dimen148
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count130
\c@pgf@countb=\count131
\c@pgf@countc=\count132
\c@pgf@countd=\count133
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgf.cfg"
File: pgf.cfg 2008/05/14 (rcs-revision 1.7)
)
Package pgfsys Info: Driver file for pgf: pgfsys-xetex.def on input line 900.
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys-xetex.def"
File: pgfsys-xetex.def 2010/02/16 (rcs-revision 1.3)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
"
File: pgfsys-common-pdf.def 2008/05/19 (rcs-revision 1.10)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsys-common-pdf-via
-dvi.def"
File: pgfsys-common-pdf-via-dvi.def 2008/05/19 (rcs-revision 1.7)
)))
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.t
ex"
File: pgfsyssoftpath.code.tex 2008/07/18 (rcs-revision 1.7)
\pgfsyssoftpath@smallbuffer@items=\count134
\pgfsyssoftpath@bigbuffer@items=\count135
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\systemlayer\pgfsysprotocol.code.t
ex"
File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4)
)) ("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcore.code.tex"
Package: pgfcore 2010/04/11 v2.10 (rcs-revision 1.7)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmath.code.tex"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathcalc.code.tex"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathutil.code.tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathparser.code.tex"
\pgfmath@dimen=\dimen149
\pgfmath@count=\count136
\pgfmath@box=\box42
\pgfmath@toks=\toks22
\pgfmath@stack@operand=\toks23
\pgfmath@stack@operation=\toks24
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.code.tex"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.basic.code.
tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.trigonometr
ic.code.tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.random.code
.tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.comparison.
code.tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.base.code.t
ex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.round.code.
tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfunctions.misc.code.t
ex"))) ("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathfloat.code.tex
"
\c@pgfmathroundto@lastzeros=\count137
))
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
"
File: pgfcorepoints.code.tex 2010/04/09 (rcs-revision 1.20)
\pgf@picminx=\dimen150
\pgf@picmaxx=\dimen151
\pgf@picminy=\dimen152
\pgf@picmaxy=\dimen153
\pgf@pathminx=\dimen154
\pgf@pathmaxx=\dimen155
\pgf@pathminy=\dimen156
\pgf@pathmaxy=\dimen157
\pgf@xx=\dimen158
\pgf@xy=\dimen159
\pgf@yx=\dimen160
\pgf@yy=\dimen161
\pgf@zx=\dimen162
\pgf@zy=\dimen163
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathconstruct.c
ode.tex"
File: pgfcorepathconstruct.code.tex 2010/08/03 (rcs-revision 1.24)
\pgf@path@lastx=\dimen164
\pgf@path@lasty=\dimen165
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathusage.code.
tex"
File: pgfcorepathusage.code.tex 2008/04/22 (rcs-revision 1.12)
\pgf@shorten@end@additional=\dimen166
\pgf@shorten@start@additional=\dimen167
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
"
File: pgfcorescopes.code.tex 2010/09/08 (rcs-revision 1.34)
\pgfpic=\box43
\pgf@hbox=\box44
\pgf@layerbox@main=\box45
\pgf@picture@serial@count=\count138
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoregraphicstate.co
de.tex"
File: pgfcoregraphicstate.code.tex 2008/04/22 (rcs-revision 1.9)
\pgflinewidth=\dimen168
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoretransformations
.code.tex"
File: pgfcoretransformations.code.tex 2009/06/10 (rcs-revision 1.11)
\pgf@pt@x=\dimen169
\pgf@pt@y=\dimen170
\pgf@pt@temp=\dimen171
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorequick.code.tex"
File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreobjects.code.te
x"
File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathprocessing.
code.tex"
File: pgfcorepathprocessing.code.tex 2008/10/09 (rcs-revision 1.8)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
"