-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv_120.log
1381 lines (1321 loc) · 52.4 KB
/
cv_120.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 (TeX Live 2013/Debian) (format=xelatex 2017.9.6) 2 JUN 2018 12:43
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**cv_12.tex
(./cv_12.tex
LaTeX2e <2011/06/27>
Babel <3.9h> and hyphenation patterns for 78 languages loaded.
(./deedy-resume.cls
Document Class: deedy-resume 2014/04/30 CV class
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2010/09/12 v5.6 Page Geometry
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texlive/texmf-dist/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.
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count88
\Gm@cntv=\count89
\c@Gm@tempcnt=\count90
\Gm@bindingoffset=\dimen103
\Gm@wd@mp=\dimen104
\Gm@odd@mp=\dimen105
\Gm@even@mp=\dimen106
\Gm@layoutwidth=\dimen107
\Gm@layoutheight=\dimen108
\Gm@layouthoffset=\dimen109
\Gm@layoutvoffset=\dimen110
\Gm@dimlist=\toks15
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
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: pdfTeX >= 1.30 not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode not 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 2012/05/28 v1.2 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen111
\Hy@linkcounter=\count91
\Hy@pagecounter=\count92
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count93
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Hyper figures OFF on input line 4443.
Package hyperref Info: Link nesting OFF on input line 4448.
Package hyperref Info: Hyper index ON on input line 4451.
Package hyperref Info: Plain pages OFF on input line 4458.
Package hyperref Info: Backreferencing OFF on input line 4463.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4688.
\c@Hy@tempcnt=\count94
(/usr/share/texlive/texmf-dist/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=\dimen112
\Fld@menulength=\count95
\Field@Width=\dimen113
\Fld@charsize=\dimen114
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=\count96
\c@Item=\count97
\c@Hfootnote=\count98
)
Package hyperref Message: Driver (autodetected): hxetex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2012/11/06 v6.83m Hyperref driver for XeTeX
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2012/11/06 v6.83m Hyperref: PDF Unicode definition (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/stringenc.sty
Package: stringenc 2011/12/02 v1.10 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box26
\c@Hy@AnnotLevel=\count99
\HyField@AnnotCount=\count100
\Fld@listcount=\count101
\c@bookmark@seq@number=\count102
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package rerunfilecheck Info: Feature \pdfmdfivesum is not available
(rerunfilecheck) (e.g. pdfTeX or LuaTeX with package `pdftexcmds').
(rerunfilecheck) Therefore file contents cannot be checked efficien
tly
(rerunfilecheck) and the loading of the package is aborted.
)
\Hy@SectionHShift=\skip43
)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Package option `usenames' ignored on input line 216.
Package xcolor Info: Driver file: xetex.def on input line 225.
(/usr/share/texlive/texmf-dist/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.
(/usr/share/texlive/texmf-dist/tex/latex/graphics/dvipsnam.def
File: dvipsnam.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
))
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3names.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty
Package: l3bootstrap 2014/01/04 v4640 L3 Experimental bootstrap code
)
Package: l3names 2014/01/04 v4640 L3 Namespace for primitives
)
(/usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count103
)
Package: expl3 2014/01/07 v4646 L3 Experimental code bundle wrapper
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3basics.sty
Package: l3basics 2014/01/04 v4642 L3 Basic definitions
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3expan.sty
Package: l3expan 2014/01/04 v4642 L3 Argument expansion
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3tl.sty
Package: l3tl 2013/12/27 v4625 L3 Token lists
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3seq.sty
Package: l3seq 2013/12/14 v4623 L3 Sequences and stacks
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3int.sty
Package: l3int 2013/08/02 v4583 L3 Integers
\c_max_int=\count104
\l_tmpa_int=\count105
\l_tmpb_int=\count106
\g_tmpa_int=\count107
\g_tmpb_int=\count108
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3quark.sty
Package: l3quark 2013/12/14 v4623 L3 Quarks
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prg.sty
Package: l3prg 2014/01/04 v4642 L3 Control structures
\g__prg_map_int=\count109
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3clist.sty
Package: l3clist 2013/07/28 v4581 L3 Comma separated lists
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3token.sty
Package: l3token 2013/08/25 v4587 L3 Experimental token manipulation
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prop.sty
Package: l3prop 2013/12/14 v4623 L3 Property lists
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3msg.sty
Package: l3msg 2013/07/28 v4581 L3 Messages
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3file.sty
Package: l3file 2013/10/13 v4596 L3 File and I/O operations
\l_iow_line_count_int=\count110
\l__iow_target_count_int=\count111
\l__iow_current_line_int=\count112
\l__iow_current_word_int=\count113
\l__iow_current_indentation_int=\count114
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3skip.sty
Package: l3skip 2013/07/28 v4581 L3 Dimensions and skips
\c_zero_dim=\dimen115
\c_max_dim=\dimen116
\l_tmpa_dim=\dimen117
\l_tmpb_dim=\dimen118
\g_tmpa_dim=\dimen119
\g_tmpb_dim=\dimen120
\c_zero_skip=\skip44
\c_max_skip=\skip45
\l_tmpa_skip=\skip46
\l_tmpb_skip=\skip47
\g_tmpa_skip=\skip48
\g_tmpb_skip=\skip49
\c_zero_muskip=\muskip11
\c_max_muskip=\muskip12
\l_tmpa_muskip=\muskip13
\l_tmpb_muskip=\muskip14
\g_tmpa_muskip=\muskip15
\g_tmpb_muskip=\muskip16
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3keys.sty
Package: l3keys 2013/12/08 v4614 L3 Experimental key-value interfaces
\g__keyval_level_int=\count115
\l_keys_choice_int=\count116
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3fp.sty
Package: l3fp 2014/01/04 v4642 L3 Floating points
\c__fp_leading_shift_int=\count117
\c__fp_middle_shift_int=\count118
\c__fp_trailing_shift_int=\count119
\c__fp_big_leading_shift_int=\count120
\c__fp_big_middle_shift_int=\count121
\c__fp_big_trailing_shift_int=\count122
\c__fp_Bigg_leading_shift_int=\count123
\c__fp_Bigg_middle_shift_int=\count124
\c__fp_Bigg_trailing_shift_int=\count125
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3box.sty
Package: l3box 2013/07/28 v4581 L3 Experimental boxes
\c_empty_box=\box27
\l_tmpa_box=\box28
\l_tmpb_box=\box29
\g_tmpa_box=\box30
\g_tmpb_box=\box31
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3coffins.sty
Package: l3coffins 2013/12/14 v4624 L3 Coffin code layer
\l__coffin_internal_box=\box32
\l__coffin_internal_dim=\dimen121
\l__coffin_offset_x_dim=\dimen122
\l__coffin_offset_y_dim=\dimen123
\l__coffin_x_dim=\dimen124
\l__coffin_y_dim=\dimen125
\l__coffin_x_prime_dim=\dimen126
\l__coffin_y_prime_dim=\dimen127
\c_empty_coffin=\box33
\l__coffin_aligned_coffin=\box34
\l__coffin_aligned_internal_coffin=\box35
\l_tmpa_coffin=\box36
\l_tmpb_coffin=\box37
\l__coffin_display_coffin=\box38
\l__coffin_display_coord_coffin=\box39
\l__coffin_display_pole_coffin=\box40
\l__coffin_display_offset_dim=\dimen128
\l__coffin_display_x_dim=\dimen129
\l__coffin_display_y_dim=\dimen130
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3color.sty
Package: l3color 2012/08/29 v4156 L3 Experimental color support
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3luatex.sty
Package: l3luatex 2013/07/28 v4581 L3 Experimental LuaTeX-specific functions
\g__cctab_allocate_int=\count126
\g__cctab_stack_int=\count127
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3candidates.sty
Package: l3candidates 2014/01/06 v4643 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen131
\l__box_bottom_dim=\dimen132
\l__box_left_dim=\dimen133
\l__box_right_dim=\dimen134
\l__box_top_new_dim=\dimen135
\l__box_bottom_new_dim=\dimen136
\l__box_left_new_dim=\dimen137
\l__box_right_new_dim=\dimen138
\l__box_internal_box=\box41
\l__coffin_bounding_shift_dim=\dimen139
\l__coffin_left_corner_dim=\dimen140
\l__coffin_right_corner_dim=\dimen141
\l__coffin_bottom_corner_dim=\dimen142
\l__coffin_top_corner_dim=\dimen143
\l__coffin_scaled_total_height_dim=\dimen144
\l__coffin_scaled_width_dim=\dimen145
))
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2013/12/31 v4634 L3 Experimental document command parser
\l__xparse_current_arg_int=\count128
\l__xparse_m_args_int=\count129
\l__xparse_mandatory_args_int=\count130
\l__xparse_processor_int=\count131
\l__xparse_v_nesting_int=\count132
)
\l_fontspec_script_int=\count133
\l_fontspec_language_int=\count134
\l_fontspec_strnum_int=\count135
\l_fontspec_tmpa_dim=\dimen146
\l_fontspec_tmpb_dim=\dimen147
\l_fontspec_tmpc_dim=\dimen148
Variant \tl_gset:cV already defined; not changing it on line 69
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-patches.sty
Package: fontspec-patches 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLa
TeX
(/usr/share/texlive/texmf-dist/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.
.................................................
) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTe
X
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(/usr/share/texlive/texmf-dist/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.
(/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmr.fd
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
(/usr/share/texlive/texmf-dist/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
(/usr/share/texmf/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
LaTeX Font Info: Try loading font information for EU1+lmss on input line 357
.
(/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmss.fd
File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
\tipaTiiicode=\count136
\tipasavetokens=\toks16
\tipachecktokens=\toks17
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: xetex.def on input line 91.
)
\Gin@req@height=\dimen149
\Gin@req@width=\dimen150
))
.................................................
. 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=\count137
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.
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
\g__file_internal_ior=\read1
\g_fontspec_family_Lato-Lig_int=\count138
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Lig(0)' created for font 'Lato-Lig' with options
. [Color=primary, Path =
. fonts/lato/,BoldItalicFont=Lato-RegIta,BoldFont=Lato-Reg,ItalicFont=Lato-LigI
ta].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"[fonts/lato/Lato-Lig]/ICU:script=latn;language=DFLT;color=2B2B2BFF ;"
.
. * 'bold' with NFSS spec.:
. <->"[fonts/lato/Lato-Reg]/ICU:script=latn;language=DFLT;color=2B2B2BFF ;"
.
. * 'italic' with NFSS spec.:
. <->"[fonts/lato/Lato-LigIta]/ICU:script=latn;language=DFLT;color=2B2B2BFF ;"
.
. * 'bold italic' with NFSS spec.:
. <->"[fonts/lato/Lato-RegIta]/ICU:script=latn;language=DFLT;color=2B2B2BFF ;"
.................................................
.................................................
. fontspec info: "set-scale"
.
. Raleway-ExtraLight scale = 0.9567325044675999.
.................................................
\g_fontspec_family_Raleway-ExtraLight_int=\count139
.................................................
. fontspec info: "set-scale"
.
. Raleway-ExtraLight scale = 0.9567325044675999.
.................................................
.................................................
. fontspec info: "set-scale"
.
. Raleway-ExtraLight scale = 0.9567325044675999.
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-ExtraLight(0)' created for font 'Raleway-ExtraLight'
. with options [Scale=MatchLowercase,Mapping=tex-text, Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
.
. <->s*[0.9567325044675999]"[fonts/raleway/Raleway-ExtraLight]/ICU:script=latn;
language=DFLT;mapping=tex-text;"
.
. * 'small caps' with NFSS spec.:
.
. <->s*[0.9567325044675999]"[fonts/raleway/Raleway-ExtraLight]/ICU:script=latn;
language=DFLT;mapping=tex-text;+smcp;"
.................................................
(/usr/share/texlive/texmf-dist/tex/latex/textpos/textpos.sty
Package: textpos 2014/01/03 v1.7j
Package: textpos 2014/01/03 1.7j, absolute positioning of text on the page
(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
)
\TP@textbox=\box42
\TP@holdbox=\box43
\TPHorizModule=\dimen151
\TPVertModule=\dimen152
\TP@margin=\dimen153
\TP@absmargin=\dimen154
Grid set 16 x 16 = 37.34424pt x 52.81541pt
\TPboxrulesize=\dimen155
\TP@ox=\dimen156
\TP@oy=\dimen157
\TP@tbargs=\toks18
\TP@prevdepth=\dimen158
TextBlockOrigin set to 0pt x 0pt
) (/usr/share/texlive/texmf-dist/tex/latex/isodate/isodate.sty
Package: isodate 2010/01/03 v2.30 Print dates with different formats (HH)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/substr/substr.sty
Package: substr 2009/10/20 v1.2 Handle substrings
\c@su@anzahl=\count140
)
(/usr/share/texlive/texmf-dist/tex/latex/isodate/english.idf
File: english.idf 2010/01/03 v2.30 Language definitions for isodate package (HH
)
Define commands for English date format
)
\c@iso@tmpmonth=\count141
\c@iso@yeartwo=\count142
\c@iso@slash=\count143
\c@iso@minus=\count144
\c@iso@dot=\count145
\c@iso@@slash=\count146
\c@iso@@minus=\count147
\c@iso@@dot=\count148
) (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
Package: titlesec 2011/12/15 v2.10.0 Sectioning titles
\ttl@box=\box44
\beforetitleunit=\skip50
\aftertitleunit=\skip51
\ttl@plus=\dimen159
\ttl@minus=\dimen160
\ttl@toksa=\toks19
\titlewidth=\dimen161
\titlewidthlast=\dimen162
\titlewidthfirst=\dimen163
))
(./cv_12.aux)
\openout1 = `cv_12.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 24.
LaTeX Font Info: ... okay on input line 24.
LaTeX Font Info: Checking defaults for T3/cmr/m/n on input line 24.
LaTeX Font Info: Try loading font information for T3+cmr on input line 24.
(/usr/share/texmf/tex/latex/tipa/t3cmr.fd
File: t3cmr.fd 2001/12/31 TIPA font definitions
)
LaTeX Font Info: ... okay on input line 24.
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
*geometry* verbose mode - [ preamble ] result:
* driver: xetex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(35.56593pt, 526.376pt, 35.56593pt)
* v-part:(T,H,B)=(21.33955pt, 802.36774pt, 21.33955pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=526.376pt
* \textheight=802.36774pt
* \oddsidemargin=-36.70406pt
* \evensidemargin=-36.70406pt
* \topmargin=-87.93044pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=57.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
\AtBeginShipoutBox=\box45
Package hyperref Info: Link coloring OFF on input line 24.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count149
)
LaTeX Info: Redefining \ref on input line 24.
LaTeX Info: Redefining \pageref on input line 24.
LaTeX Info: Redefining \nameref on input line 24.
(./cv_12.out) (./cv_12.out)
\@outlinefile=\write3
\openout3 = `cv_12.out'.
.................................................
. fontspec info: "setup-math"
.
. Adjusting the maths setup (use [no-math] to avoid this).
.................................................
\symlegacymaths=\mathgroup4
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 24.
LaTeX Font Info: Redeclaring math accent \acute on input line 24.
LaTeX Font Info: Redeclaring math accent \grave on input line 24.
LaTeX Font Info: Redeclaring math accent \ddot on input line 24.
LaTeX Font Info: Redeclaring math accent \tilde on input line 24.
LaTeX Font Info: Redeclaring math accent \bar on input line 24.
LaTeX Font Info: Redeclaring math accent \breve on input line 24.
LaTeX Font Info: Redeclaring math accent \check on input line 24.
LaTeX Font Info: Redeclaring math accent \hat on input line 24.
LaTeX Font Info: Redeclaring math accent \dot on input line 24.
LaTeX Font Info: Redeclaring math accent \mathring on input line 24.
LaTeX Font Info: Redeclaring math symbol \colon on input line 24.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 24.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 24.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 24.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 24.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 24.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 24.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 24.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 24.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 24.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 24.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 24.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 24.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 24.
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
(Font) `operators' in the math version `normal' on input line 24.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> EU1/Lato-Lig(0)/m/n on input line 24.
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
(Font) `operators' in the math version `bold' on input line 24.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> EU1/Lato-Lig(0)/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) EU1/Lato-Lig(0)/m/n --> EU1/Lato-Lig(0)/m/n on input li
ne 24.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) EU1/Lato-Lig(0)/m/n --> EU1/Lato-Lig(0)/m/n on input li
ne 24.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> EU1/Lato-Lig(0)/m/it on input line 24.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> EU1/Lato-Lig(0)/bx/n on input line 24.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> EU1/Raleway-ExtraLight(0)/m/n on input
line 24.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> EU1/lmtt/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) EU1/Lato-Lig(0)/m/n --> EU1/Lato-Lig(0)/bx/n on input l
ine 24.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
(Font) EU1/Lato-Lig(0)/m/n --> EU1/Lato-Lig(0)/bx/n on input l
ine 24.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> EU1/Lato-Lig(0)/bx/it on input line 2
4.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> EU1/Raleway-ExtraLight(0)/bx/n on inp
ut line 24.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> EU1/lmtt/bx/n on input line 24.
ABD: EveryShipout initializing macros
isodate: babel.sty, (n)german.sty have not been loaded
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-ExtraLight(1)' created for font 'Raleway-ExtraLight'
. with options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"[fonts/raleway/Raleway-ExtraLight]/ICU:script=latn;language=DFLT;"
.
. * 'small caps' with NFSS spec.:
.
. <->"[fonts/raleway/Raleway-ExtraLight]/ICU:script=latn;language=DFLT;+smcp;"
.................................................
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 30.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 30.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 30.
\g_fontspec_family_Lato-Hai_int=\count150
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Hai(0)' created for font 'Lato-Hai' with options [Path =
. fonts/lato/].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"[fonts/lato/Lato-Hai]/ICU:script=latn;language=DFLT;"
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Lig(1)' created for font 'Lato-Lig' with options [Path =
. fonts/lato/].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"[fonts/lato/Lato-Lig]/ICU:script=latn;language=DFLT;"
.................................................
\g_fontspec_family_Raleway-Medium_int=\count151
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"[fonts/raleway/Raleway-Medium]/ICU:script=latn;language=DFLT;"
.
. * 'small caps' with NFSS spec.:
. <->"[fonts/raleway/Raleway-Medium]/ICU:script=latn;language=DFLT;+smcp;"
.................................................
\g_fontspec_family_Lato-Bol_int=\count152
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Bol(0)' created for font 'Lato-Bol' with options [Path =
. fonts/lato/].
.
. This font family consists of the following shapes:
.
. * 'normal' with NFSS spec.:
. <->"[fonts/lato/Lato-Bol]/ICU:script=latn;language=DFLT;"
.................................................
LaTeX Font Warning: Font shape `EU1/Lato-Bol(0)/bx/n' undefined
(Font) using `EU1/Lato-Bol(0)/m/n' instead on input line 48.
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/se-ascii-print.def
File: se-ascii-print.def 2011/12/02 v1.10 stringenc: Printable ASCII characters
)
LaTeX Font Warning: Font shape `EU1/Lato-Lig(0)/m/sc' undefined
(Font) using `EU1/Lato-Lig(0)/m/n' instead on input line 50.
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Lig(1)' created for font 'Lato-Lig' with options [Path =
. fonts/lato/].
.
. This font family consists of the following shapes:
.................................................
LaTeX Font Warning: Font shape `EU1/Lato-Lig(1)/m/sc' undefined
(Font) using `EU1/Lato-Lig(1)/m/n' instead on input line 50.
LaTeX Font Warning: Font shape `EU1/Lato-Lig(1)/bx/sc' undefined
(Font) using `EU1/Lato-Lig(1)/m/n' instead on input line 50.
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Lig(1)' created for font 'Lato-Lig' with options [Path =
. fonts/lato/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Lato-Lig(1)' created for font 'Lato-Lig' with options [Path =
. fonts/lato/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'Raleway-Medium(0)' created for font 'Raleway-Medium' with
. options [Path = fonts/raleway/].
.
. This font family consists of the following shapes:
.................................................
.................................................