-
Notifications
You must be signed in to change notification settings - Fork 1
/
greek-study.log
1079 lines (1004 loc) · 41.7 KB
/
greek-study.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.14159265-2.6-0.99999 (TeX Live 2019/dev/Debian) (preloaded format=xelatex 2023.12.17) 19 OCT 2024 19:07
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**greek-study.tex
(.//greek-study.tex
LaTeX2e <2018-12-01>
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2018/09/03 v1.4i Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2018/09/03 v1.4i 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/ucs/ucs.sty
Package: ucs 2013/05/11 v2.2 UCS: Unicode input support
(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def
File: uni-global.def 2013/05/13 UCS: Unicode global data
)
\uc@secondtry=\count88
\uc@combtoks=\toks14
\uc@combtoksb=\toks15
\uc@temptokena=\toks16
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 99.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def
File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex
))
\Gin@req@height=\dimen103
\Gin@req@width=\dimen104
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC)+ FMi change
\LTleft=\skip43
\LTright=\skip44
\LTpre=\skip45
\LTpost=\skip46
\LTchunksize=\count89
\LTcapwidth=\dimen105
\LT@head=\box27
\LT@firsthead=\box28
\LT@foot=\box29
\LT@lastfoot=\box30
\LT@cols=\count90
\LT@rows=\count91
\c@LT@tables=\count92
\c@LT@chunks=\count93
\LT@p@ftn=\toks18
)
(/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty
\wrapoverhang=\dimen106
\WF@size=\dimen107
\c@WF@wrappedlines=\count94
\WF@box=\box31
\WF@everypar=\toks19
Package: wrapfig 2003/01/31 v 3.6
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/rotating.sty
Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count95
\rotFPtop=\skip47
\rotFPbot=\skip48
\rot@float@box=\box32
\rot@mess@toks=\toks20
)
(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box33
\UL@hyphenbox=\box34
\UL@skip=\skip49
\UL@hook=\toks21
\UL@height=\dimen108
\UL@pe=\count96
\UL@pixel=\dimen109
\ULC@box=\box35
Package: ulem 2012/05/18
\ULdepth=\dimen110
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2018/12/01 v2.17b AMS math features
\@mathmargin=\skip50
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks22
\ex@=\dimen111
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen112
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count97
LaTeX Info: Redefining \frac on input line 223.
\uproot@=\count98
\leftroot@=\count99
LaTeX Info: Redefining \overline on input line 385.
\classnum@=\count100
\DOTSCASE@=\count101
LaTeX Info: Redefining \ldots on input line 482.
LaTeX Info: Redefining \dots on input line 485.
LaTeX Info: Redefining \cdots on input line 606.
\Mathstrutbox@=\box36
\strutbox@=\box37
\big@size=\dimen113
LaTeX Font Info: Redeclaring font encoding OML on input line 729.
LaTeX Font Info: Redeclaring font encoding OMS on input line 730.
\macc@depth=\count102
\c@MaxMatrixCols=\count103
\dotsspace@=\muskip10
\c@parentequation=\count104
\dspbrk@lvl=\count105
\tag@help=\toks23
\row@=\count106
\column@=\count107
\maxfields@=\count108
\andhelp@=\toks24
\eqnshift@=\dimen114
\alignsep@=\dimen115
\tagshift@=\dimen116
\tagwidth@=\dimen117
\totwidth@=\dimen118
\lineht@=\dimen119
\@envbody=\toks25
\multlinegap=\skip51
\multlinetaggap=\skip52
\mathdisplay@stack=\toks26
LaTeX Info: Redefining \[ on input line 2844.
LaTeX Info: Redefining \] on input line 2845.
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\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.
))
(/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty
Package: capt-of 2009/12/29 v0.2 standard captions outside of floats
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2018/11/30 v6.88e Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
Package: pdftexcmds 2018/09/10 v0.29 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 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
)
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
Package: xcolor-patch 2016/05/16 xcolor patch
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
)
\@linkdim=\dimen120
\Hy@linkcounter=\count109
\Hy@pagecounter=\count110
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2018/11/30 v6.88e Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count111
(/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 4519.
Package hyperref Info: Link nesting OFF on input line 4524.
Package hyperref Info: Hyper index ON on input line 4527.
Package hyperref Info: Plain pages OFF on input line 4534.
Package hyperref Info: Backreferencing OFF on input line 4539.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4772.
\c@Hy@tempcnt=\count112
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip11
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5125.
\XeTeXLinkMargin=\dimen121
\Fld@menulength=\count113
\Field@Width=\dimen122
\Fld@charsize=\dimen123
Package hyperref Info: Hyper figures OFF on input line 6380.
Package hyperref Info: Link nesting OFF on input line 6385.
Package hyperref Info: Hyper index ON on input line 6388.
Package hyperref Info: backreferencing OFF on input line 6395.
Package hyperref Info: Link coloring OFF on input line 6400.
Package hyperref Info: Link coloring with OCG OFF on input line 6405.
Package hyperref Info: PDF/A mode OFF on input line 6410.
LaTeX Info: Redefining \ref on input line 6450.
LaTeX Info: Redefining \pageref on input line 6454.
\Hy@abspage=\count114
\c@Item=\count115
\c@Hfootnote=\count116
)
Package hyperref Info: Driver (autodetected): hxetex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2018/11/30 v6.88e Hyperref driver for XeTeX
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2018/11/30 v6.88e Hyperref: PDF Unicode definition (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/stringenc.sty
Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box38
\c@Hy@AnnotLevel=\count117
\HyField@AnnotCount=\count118
\Fld@listcount=\count119
\c@bookmark@seq@number=\count120
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip53
)
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2018/04/16 v5.8 Page Geometry
\Gm@cnth=\count121
\Gm@cntv=\count122
\c@Gm@tempcnt=\count123
\Gm@bindingoffset=\dimen124
\Gm@wd@mp=\dimen125
\Gm@odd@mp=\dimen126
\Gm@even@mp=\dimen127
\Gm@layoutwidth=\dimen128
\Gm@layoutheight=\dimen129
\Gm@layouthoffset=\dimen130
\Gm@layoutvoffset=\dimen131
\Gm@dimlist=\toks27
)
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2018/08/11 v2.0j Standard LaTeX package
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/lgrenc.def
File: lgrenc.def 2015/12/07 v0.13.1 LGR Greek font encoding definitions
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/greek-fontenc.def
File: greek-fontenc.def 2015/08/04 v0.13 Common Greek font encoding definitions
))
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def
File: t1enc.def 2018/08/11 v2.0j Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
))
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks28
\inpenc@posthook=\toks29
Package inputenc Warning: inputenc package ignored with utf8 based engines.
) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/pmboxdraw.sty
Package: pmboxdraw 2016/05/16 v1.2 Poor man's box drawing characters (HO)
\pmbd@W=\dimen132
\pmbd@H=\dimen133
\pmbd@L=\dimen134
\pmbd@Thin=\dimen135
\pmbd@Thick=\dimen136
\pmbd@Sep=\dimen137
)
(/usr/share/texlive/texmf-dist/tex/latex/newunicodechar/newunicodechar.sty
Package: newunicodechar 2018/04/08 v1.2 Defining Unicode characters
)
! LaTeX Error: Two \documentclass or \documentstyle commands.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.22 \documentclass[12pt]{
article}
The document may only declare one class.
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2019-02-15 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2019-02-15 L3 programming layer (code)
\c_max_int=\count124
\l_tmpa_int=\count125
\l_tmpb_int=\count126
\g_tmpa_int=\count127
\g_tmpb_int=\count128
\g__kernel_prg_map_int=\count129
\c_log_iow=\count130
\l_iow_line_count_int=\count131
\l__iow_line_target_int=\count132
\l__iow_one_indent_int=\count133
\l__iow_indent_int=\count134
\c_zero_dim=\dimen138
\c_max_dim=\dimen139
\l_tmpa_dim=\dimen140
\l_tmpb_dim=\dimen141
\g_tmpa_dim=\dimen142
\g_tmpb_dim=\dimen143
\c_zero_skip=\skip54
\c_max_skip=\skip55
\l_tmpa_skip=\skip56
\l_tmpb_skip=\skip57
\g_tmpa_skip=\skip58
\g_tmpb_skip=\skip59
\c_zero_muskip=\muskip12
\c_max_muskip=\muskip13
\l_tmpa_muskip=\muskip14
\l_tmpb_muskip=\muskip15
\g_tmpa_muskip=\muskip16
\g_tmpb_muskip=\muskip17
\l_keys_choice_int=\count135
\l__intarray_loop_int=\count136
\c__intarray_sp_dim=\dimen144
\g__intarray_font_int=\count137
\c__fp_leading_shift_int=\count138
\c__fp_middle_shift_int=\count139
\c__fp_trailing_shift_int=\count140
\c__fp_big_leading_shift_int=\count141
\c__fp_big_middle_shift_int=\count142
\c__fp_big_trailing_shift_int=\count143
\c__fp_Bigg_leading_shift_int=\count144
\c__fp_Bigg_middle_shift_int=\count145
\c__fp_Bigg_trailing_shift_int=\count146
\g__fp_array_int=\count147
\l__fp_array_loop_int=\count148
\l__sort_length_int=\count149
\l__sort_min_int=\count150
\l__sort_top_int=\count151
\l__sort_max_int=\count152
\l__sort_true_max_int=\count153
\l__sort_block_int=\count154
\l__sort_begin_int=\count155
\l__sort_end_int=\count156
\l__sort_A_int=\count157
\l__sort_B_int=\count158
\l__sort_C_int=\count159
\l__tl_analysis_normal_int=\count160
\l__tl_analysis_index_int=\count161
\l__tl_analysis_nesting_int=\count162
\l__tl_analysis_type_int=\count163
\l__regex_internal_a_int=\count164
\l__regex_internal_b_int=\count165
\l__regex_internal_c_int=\count166
\l__regex_balance_int=\count167
\l__regex_group_level_int=\count168
\l__regex_mode_int=\count169
\c__regex_cs_in_class_mode_int=\count170
\c__regex_cs_mode_int=\count171
\l__regex_catcodes_int=\count172
\l__regex_default_catcodes_int=\count173
\c__regex_catcode_L_int=\count174
\c__regex_catcode_O_int=\count175
\c__regex_catcode_A_int=\count176
\c__regex_all_catcodes_int=\count177
\l__regex_show_lines_int=\count178
\l__regex_min_state_int=\count179
\l__regex_max_state_int=\count180
\l__regex_left_state_int=\count181
\l__regex_right_state_int=\count182
\l__regex_capturing_group_int=\count183
\l__regex_min_pos_int=\count184
\l__regex_max_pos_int=\count185
\l__regex_curr_pos_int=\count186
\l__regex_start_pos_int=\count187
\l__regex_success_pos_int=\count188
\l__regex_curr_char_int=\count189
\l__regex_curr_catcode_int=\count190
\l__regex_last_char_int=\count191
\l__regex_case_changed_char_int=\count192
\l__regex_curr_state_int=\count193
\l__regex_step_int=\count194
\l__regex_min_active_int=\count195
\l__regex_max_active_int=\count196
\l__regex_replacement_csnames_int=\count197
\l__regex_match_count_int=\count198
\l__regex_min_submatch_int=\count199
\l__regex_submatch_int=\count266
\l__regex_zeroth_submatch_int=\count267
\g__regex_trace_regex_int=\count268
\c_empty_box=\box39
\l_tmpa_box=\box40
\l_tmpb_box=\box41
\g_tmpa_box=\box42
\g_tmpb_box=\box43
\l__box_top_dim=\dimen145
\l__box_bottom_dim=\dimen146
\l__box_left_dim=\dimen147
\l__box_right_dim=\dimen148
\l__box_top_new_dim=\dimen149
\l__box_bottom_new_dim=\dimen150
\l__box_left_new_dim=\dimen151
\l__box_right_new_dim=\dimen152
\l__box_internal_box=\box44
\l__coffin_internal_box=\box45
\l__coffin_internal_dim=\dimen153
\l__coffin_offset_x_dim=\dimen154
\l__coffin_offset_y_dim=\dimen155
\l__coffin_x_dim=\dimen156
\l__coffin_y_dim=\dimen157
\l__coffin_x_prime_dim=\dimen158
\l__coffin_y_prime_dim=\dimen159
\c_empty_coffin=\box46
\l__coffin_aligned_coffin=\box47
\l__coffin_aligned_internal_coffin=\box48
\l_tmpa_coffin=\box49
\l_tmpb_coffin=\box50
\g_tmpa_coffin=\box51
\g_tmpb_coffin=\box52
\c__coffin_empty_coffin=\box53
\l__coffin_display_coffin=\box54
\l__coffin_display_coord_coffin=\box55
\l__coffin_display_pole_coffin=\box56
\l__coffin_display_offset_dim=\dimen160
\l__coffin_display_x_dim=\dimen161
\l__coffin_display_y_dim=\dimen162
\g__file_internal_ior=\read1
\l__coffin_bounding_shift_dim=\dimen163
\l__coffin_left_corner_dim=\dimen164
\l__coffin_right_corner_dim=\dimen165
\l__coffin_bottom_corner_dim=\dimen166
\l__coffin_top_corner_dim=\dimen167
\l__coffin_scaled_total_height_dim=\dimen168
\l__coffin_scaled_width_dim=\dimen169
\l__seq_internal_a_int=\count269
\l__seq_internal_b_int=\count270
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def
File: l3xdvipdfmx.def 2019-02-15 v L3 Experimental driver: xdvipdfmx
\g__driver_image_int=\count271
\g__driver_pdf_object_int=\count272
))
Package: xparse 2018-10-17 L3 Experimental document command parser
\l__xparse_current_arg_int=\count273
\g__xparse_grabber_int=\count274
\l__xparse_m_args_int=\count275
\l__xparse_mandatory_args_int=\count276
\l__xparse_v_nesting_int=\count277
)
Package: fontspec 2019/02/12 v2.7b Font selection for XeLaTeX and LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2019/02/12 v2.7b Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count278
\l__fontspec_language_int=\count279
\l__fontspec_strnum_int=\count280
\l__fontspec_tmp_int=\count281
\l__fontspec_tmpa_int=\count282
\l__fontspec_tmpb_int=\count283
\l__fontspec_tmpc_int=\count284
\l__fontspec_em_int=\count285
\l__fontspec_emdef_int=\count286
\l__fontspec_strong_int=\count287
\l__fontspec_strongdef_int=\count288
\l__fontspec_tmpa_dim=\dimen170
\l__fontspec_tmpb_dim=\dimen171
\l__fontspec_tmpc_dim=\dimen172
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2018/08/11 v2.0j Standard LaTeX package
(/usr/share/texlive/texmf-dist/tex/latex/base/tuenc.def
File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TU on input line 82.
)
LaTeX Font Info: Try loading font information for TU+cmr on input line 105.
LaTeX Font Info: No file TUcmr.fd. on input line 105.
LaTeX Font Warning: Font shape `TU/cmr/m/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 105.
) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)
LaTeX Info: Redefining \itshape on input line 4044.
LaTeX Info: Redefining \slshape on input line 4049.
LaTeX Info: Redefining \scshape on input line 4054.
LaTeX Info: Redefining \upshape on input line 4059.
LaTeX Info: Redefining \em on input line 4089.
LaTeX Info: Redefining \emph on input line 4114.
))
Package fontspec Info: Font family 'DejaVuSerif(0)' created for font 'DejaVu
(fontspec) Serif' with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"DejaVu
(fontspec) Serif/OT:script=latn;language=DFLT;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (bx/n) with NFSS spec.: <->"DejaVu
(fontspec) Serif/B/OT:script=latn;language=DFLT;mapping=tex-text;"
(fontspec) - 'bold small caps' (bx/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"DejaVu
(fontspec) Serif/I/OT:script=latn;language=DFLT;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/itsc) with NFSS spec.:
(fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"DejaVu
(fontspec) Serif/BI/OT:script=latn;language=DFLT;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.:
LaTeX Info: Redefining \rmfamily on input line 25.
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2018/11/13 3.27 The Babel package
(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def
File: switch.def 2018/11/13 3.27 Babel switching mechanism
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-greek/greek.ldf
Language: greek 2016/09/07 v1.9g Greek support for the babel system
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2018/11/13 3.27 Babel common definitions
\babel@savecnt=\count289
\U@D=\dimen173
(/usr/share/texlive/texmf-dist/tex/generic/babel/xebabel.def
(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def))
\bbl@dirlevel=\count290
)
\bbl@monogreek=\count291
\bbl@polygreek=\count292
\bbl@ancientgreek=\count293
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/greek-euenc.def
File: greek-euenc.def 2015/08/07 0.13 Greek LICRs for XeTeX and LuaTeX
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/greek-fontenc.def
File: greek-fontenc.def 2015/08/04 v0.13 Common Greek font encoding definitions
)
LaTeX Info: Composite with undeclared \accdialytikaoxia in encoding TU on input
line 426.
)
LaTeX Info: Composite with undeclared \< in encoding LGR on input line 418.
LaTeX Info: Composite with undeclared \> in encoding LGR on input line 418.
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
\l@british = a dialect from \language\l@english
\l@UKenglish = a dialect from \language\l@english
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/american.ldf
Language: american 2017/06/06 v3.3r English support from the babel system
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
)))
Package Babel Warning: The package option `english' should not be used
(Babel) with a more specific one (like `american') on input line
26.
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/alphabeta.sty
Package: alphabeta 2016/02/05 v0.13.2 macros for Greek letters in text and math
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/textalpha.sty
Package: textalpha 2016/02/05 v0.13.2 macros for Greek letters in text
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/greek-euenc.def
File: greek-euenc.def 2015/08/07 0.13 Greek LICRs for XeTeX and LuaTeX
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/greek-fontenc.def
File: greek-fontenc.def 2015/08/04 v0.13 Common Greek font encoding definitions
))))
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/se-ascii-print.def
File: se-ascii-print.def 2016/05/16 v1.11 stringenc: Printable ASCII characters
)
(.//greek-study.aux)
\openout1 = `greek-study.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 39.
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for LGR/cmr/m/n on input line 39.
LaTeX Font Info: Try loading font information for LGR+cmr on input line 39.
(/usr/share/texlive/texmf-dist/tex/latex/cbfonts-fd/lgrcmr.fd
File: lgrcmr.fd 2017/07/29 v1.2 Greek European Computer Regular
)
LaTeX Font Info: ... okay on input line 39.
LaTeX Font Info: Checking defaults for pmboxdraw/pmboxdraw/m/n on input line
39.
LaTeX Font Info: ... okay on input line 39.
(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def
File: ucsencs.def 2011/01/21 Fixes to fontencodings LGR, T3
LGR\textpentedeka already defined.
LGR\textpenteqilioi already defined.
LGR\textpentemuria already defined.
LGR\textstigma already defined.
LGR\textqoppa already defined.
LGR\texteuro already defined.
LGR\textperthousand already defined.
LGR\textquoteleft already defined.
LGR\textquoteright already defined.
LGR\u already defined.
LGR\= already defined.
LGR\" already defined.
LGR\textpercent already defined.
LGR\textperiodcentered already defined.
LGR\' already defined.
LGR\textanoteleia already defined.
LGR\textAlpha already defined.
LGR\textBeta already defined.
LGR\textDelta already defined.
LGR\textEpsilon already defined.
LGR\textPhi already defined.
LGR\textGamma already defined.
LGR\textEta already defined.
LGR\textIota already defined.
LGR\textTheta already defined.
LGR\textKappa already defined.
LGR\textLambda already defined.
LGR\textMu already defined.
LGR\textNu already defined.
LGR\textOmicron already defined.
LGR\textPi already defined.
LGR\textChi already defined.
LGR\textRho already defined.
LGR\textSigma already defined.
LGR\textTau already defined.
LGR\textUpsilon already defined.
LGR\textOmega already defined.
LGR\textXi already defined.
LGR\textPsi already defined.
LGR\textZeta already defined.
LGR\` already defined.
LGR\textalpha already defined.
LGR\textbeta already defined.
LGR\textvarsigma already defined.
LGR\textdelta already defined.
LGR\textepsilon already defined.
LGR\textphi already defined.
LGR\textgamma already defined.
LGR\texteta already defined.
LGR\textiota already defined.
LGR\texttheta already defined.
LGR\textkappa already defined.
LGR\textlambda already defined.
LGR\textmu already defined.
LGR\textnu already defined.
LGR\textomicron already defined.
LGR\textpi already defined.
LGR\textchi already defined.
LGR\textrho already defined.
LGR\textautosigma already defined.
LGR\textsigma already defined.
LGR\texttau already defined.
LGR\textupsilon already defined.
LGR\textomega already defined.
LGR\textxi already defined.
LGR\textpsi already defined.
LGR\textzeta already defined.
LGR\guillemotleft already defined.
LGR\guillemotright already defined.
LGR\~ already defined.
LGR\textemdash already defined.
LGR\textdigamma already defined.
LGR\textDigamma already defined.
LGR\textdexiakeraia already defined.
LGR\textaristerikeraia already defined.
fontencoding LGR patched
)
\AtBeginShipoutBox=\box57
Package hyperref Info: Link coloring OFF on input line 39.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO)
)
\c@section@level=\count294
)
LaTeX Info: Redefining \ref on input line 39.
LaTeX Info: Redefining \pageref on input line 39.
LaTeX Info: Redefining \nameref on input line 39.
(.//greek-study.out) (.//greek-study.out)
\@outlinefile=\write3
\openout3 = `greek-study.out'.
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
*geometry* verbose mode - [ preamble ] result:
* driver: xetex
* paper: <default>
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(36.135pt, 542.02501pt, 36.135pt)
* v-part:(T,H,B)=(36.135pt, 722.7pt, 36.135pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=542.02501pt
* \textheight=722.7pt
* \oddsidemargin=-36.135pt
* \evensidemargin=-36.135pt
* \topmargin=-73.135pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=11.0pt
* \footskip=30.0pt
* \marginparwidth=59.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.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)
Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup6
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 39.
LaTeX Font Info: Redeclaring math accent \acute on input line 39.
LaTeX Font Info: Redeclaring math accent \grave on input line 39.
LaTeX Font Info: Redeclaring math accent \ddot on input line 39.
LaTeX Font Info: Redeclaring math accent \tilde on input line 39.
LaTeX Font Info: Redeclaring math accent \bar on input line 39.
LaTeX Font Info: Redeclaring math accent \breve on input line 39.
LaTeX Font Info: Redeclaring math accent \check on input line 39.
LaTeX Font Info: Redeclaring math accent \hat on input line 39.
LaTeX Font Info: Redeclaring math accent \dot on input line 39.
LaTeX Font Info: Redeclaring math accent \mathring on input line 39.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 39.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 39.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 39.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 39.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 39.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 39.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 39.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 39.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 39.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 39.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 39.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 39.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 39.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 39.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/DejaVuSerif(0)/m/n on input line 39.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 39.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/DejaVuSerif(0)/m/n on input line 39
.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/DejaVuSerif(0)/m/n --> TU/DejaVuSerif(0)/m/n on inpu
t line 39.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/DejaVuSerif(0)/m/it on input line 3
9.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/DejaVuSerif(0)/bx/n on input line 3
9.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 39.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 39.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/DejaVuSerif(0)/m/n --> TU/DejaVuSerif(0)/bx/n on inp
ut line 39.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/DejaVuSerif(0)/bx/it on input line
39.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 39.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 39.
(/usr/share/texlive/texmf-dist/tex/latex/greek-fontenc/alphabeta-euenc.def
File: alphabeta-euenc 2014/09/04 0.11.2 Composite definitions for XeTeX and Lua
TeX
)
LaTeX Font Info: Try loading font information for U+msa on input line 42.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 42.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
LaTeX Font Info: Try loading font information for LGR+DejaVuSerif(0) on inpu
t line 48.
LaTeX Font Info: No file LGRDejaVuSerif(0).fd. on input line 48.
LaTeX Font Warning: Font shape `LGR/DejaVuSerif(0)/m/n' undefined
(Font) using `LGR/cmr/m/n' instead on input line 48.
Missing character: There is no φ in font grmn1095!
Missing character: There is no ύ in font grmn1095!
Missing character: There is no σ in font grmn1095!
Missing character: There is no ι in font grmn1095!
Missing character: There is no ς in font grmn1095!
LaTeX Font Info: Try loading font information for T1+lmtt on input line 66.
(/usr/share/texmf/tex/latex/lm/t1lmtt.fd
File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
Missing character: There is no ˌ in font ec-lmtt10!
Missing character: There is no ɪ in font ec-lmtt10!
Missing character: There is no ə in font ec-lmtt10!
Missing character: There is no ˈ in font ec-lmtt10!
Missing character: There is no ɒ in font ec-lmtt10!
Missing character: There is no ɡ in font ec-lmtt10!
Missing character: There is no ə in font ec-lmtt10!
Missing character: There is no ɪ in font ec-lmtt10!
[1
] [2]
Missing character: There is no ō in font ec-lmtt10!
Missing character: There is no ē in font ec-lmtt10!
Missing character: There is no ō in font ec-lmtt10!
Missing character: There is no π in font ec-lmtt10!
Missing character: There is no ᾶ in font ec-lmtt10!
Missing character: There is no ς in font ec-lmtt10!
Missing character: There is no ὁ in font ec-lmtt10!
Missing character: There is no π in font ec-lmtt10!
Missing character: There is no ρ in font ec-lmtt10!
Missing character: There is no ο in font ec-lmtt10!
Missing character: There is no ά in font ec-lmtt10!
Missing character: There is no γ in font ec-lmtt10!
Missing character: There is no ω in font ec-lmtt10!
Missing character: There is no ν in font ec-lmtt10!
Missing character: There is no κ in font ec-lmtt10!
Missing character: There is no α in font ec-lmtt10!
Missing character: There is no ὶ in font ec-lmtt10!
Missing character: There is no μ in font ec-lmtt10!
Missing character: There is no ὴ in font ec-lmtt10!
Missing character: There is no μ in font ec-lmtt10!
Missing character: There is no έ in font ec-lmtt10!
Missing character: There is no ν in font ec-lmtt10!
Missing character: There is no ω in font ec-lmtt10!
Missing character: There is no ν in font ec-lmtt10!
Missing character: There is no ┌ in font ec-lmtt10!
Missing character: There is no ┐ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no ē in font ec-lmtt10!
Missing character: There is no ē in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no ἐ in font ec-lmtt10!
Missing character: There is no ν in font ec-lmtt10!
Missing character: There is no τ in font ec-lmtt10!
Missing character: There is no ῇ in font ec-lmtt10!
Missing character: There is no δ in font ec-lmtt10!
Missing character: There is no ι in font ec-lmtt10!
Missing character: There is no δ in font ec-lmtt10!
Missing character: There is no α in font ec-lmtt10!
Missing character: There is no χ in font ec-lmtt10!
Missing character: There is no ῇ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no τ in font ec-lmtt10!
Missing character: There is no ο in font ec-lmtt10!
Missing character: There is no ῦ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no Χ in font ec-lmtt10!
Missing character: There is no ρ in font ec-lmtt10!
Missing character: There is no ι in font ec-lmtt10!
Missing character: There is no σ in font ec-lmtt10!
Missing character: There is no τ in font ec-lmtt10!
Missing character: There is no ο in font ec-lmtt10!
Missing character: There is no ῦ in font ec-lmtt10!
Missing character: There is no Θ in font ec-lmtt10!
Missing character: There is no ε in font ec-lmtt10!
Missing character: There is no ὸ in font ec-lmtt10!
Missing character: There is no ν in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no │ in font ec-lmtt10!
Missing character: There is no ┘ in font ec-lmtt10!
Missing character: There is no ō in font ec-lmtt10!
Missing character: There is no ē in font ec-lmtt10!
Missing character: There is no ο in font ec-lmtt10!
Missing character: There is no ὐ in font ec-lmtt10!
Missing character: There is no κ in font ec-lmtt10!