-
Notifications
You must be signed in to change notification settings - Fork 1
/
feria6.log~
12546 lines (12447 loc) · 648 KB
/
feria6.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 LuaTeX, Version 0.95.0 (TeX Live 2016/Debian) (format=lualatex 2017.2.14) 13 MAR 2018 09:37
system commands enabled.
**feria6.tex
(./feria6.tex
LaTeX2e <2016/03/31> patch level 3
Babel <3.9r> and hyphenation patterns for 1 language(s) loaded.
(./init-a5.tex (/usr/share/texlive/texmf-dist/tex/latex/extsizes/extreport.cls
Document Class: extreport 1996/10/08 v1.0 Non Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size12.clo
File: size12.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
(/usr/share/texlive/texmf-dist/tex/latex/base/exscale.sty
Package: exscale 2014/09/29 v2.1h Standard LaTeX package exscale
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 57.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 57.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 57.
\big@size=\dimen102
)
\c@part=\count79
\c@chapter=\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=\dimen103
)
(/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
Package: titlesec 2016/03/21 v2.10.2 Sectioning titles
\ttl@box=\box26
\beforetitleunit=\skip43
\aftertitleunit=\skip44
\ttl@plus=\dimen104
\ttl@minus=\dimen105
\ttl@toksa=\toks14
\titlewidth=\dimen106
\titlewidthlast=\dimen107
\titlewidthfirst=\dimen108
)
(/usr/share/texlive/texmf-dist/tex/lualatex/luatextra/luatextra.sty
Package: luatextra 2010/10/10 v1.0 Loading usual LuaLaTeX packages
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX detected.
)
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2016/05/18 v6512 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2016/05/18 v6512 L3 programming layer (code)
L3 Module: l3bootstrap 2016/02/12 v6412 L3 Bootstrap code
\ucharcat@table=\catcodetable5
L3 Module: l3names 2016/03/11 v6433 L3 Namespace for primitives
L3 Module: l3basics 2015/11/22 v6315 L3 Basic definitions
L3 Module: l3expan 2015/09/10 v5983 L3 Argument expansion
L3 Module: l3tl 2016/03/26 v6465 L3 Token lists
L3 Module: l3str 2016/03/24 v6441 L3 Strings
L3 Module: l3seq 2015/08/05 v5777 L3 Sequences and stacks
L3 Module: l3int 2016/03/24 v6441 L3 Integers
\c_max_int=\count88
\l_tmpa_int=\count89
\l_tmpb_int=\count90
\g_tmpa_int=\count91
\g_tmpb_int=\count92
L3 Module: l3quark 2015/08/17 v5855 L3 Quarks
L3 Module: l3prg 2015/11/01 v6216 L3 Control structures
\g__prg_map_int=\count93
L3 Module: l3clist 2015/09/02 v5901 L3 Comma separated lists
L3 Module: l3token 2016/04/03 v6470 L3 Experimental token manipulation
L3 Module: l3prop 2016/01/05 v6366 L3 Property lists
L3 Module: l3msg 2016/03/26 v6464 L3 Messages
L3 Module: l3file 2016/03/25 v6458 L3 File and I/O operations
\l_iow_line_count_int=\count94
\l__iow_target_count_int=\count95
\l__iow_current_line_int=\count96
\l__iow_current_word_int=\count97
\l__iow_current_indentation_int=\count98
L3 Module: l3skip 2016/01/05 v6366 L3 Dimensions and skips
\c_zero_dim=\dimen109
\c_max_dim=\dimen110
\l_tmpa_dim=\dimen111
\l_tmpb_dim=\dimen112
\g_tmpa_dim=\dimen113
\g_tmpb_dim=\dimen114
\c_zero_skip=\skip45
\c_max_skip=\skip46
\l_tmpa_skip=\skip47
\l_tmpb_skip=\skip48
\g_tmpa_skip=\skip49
\g_tmpb_skip=\skip50
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
L3 Module: l3keys 2015/11/17 v6284 L3 Key-value interfaces
\g__keyval_level_int=\count99
\l_keys_choice_int=\count100
L3 Module: l3fp 2016/03/26 v6465 L3 Floating points
\c__fp_leading_shift_int=\count101
\c__fp_middle_shift_int=\count102
\c__fp_trailing_shift_int=\count103
\c__fp_big_leading_shift_int=\count104
\c__fp_big_middle_shift_int=\count105
\c__fp_big_trailing_shift_int=\count106
\c__fp_Bigg_leading_shift_int=\count107
\c__fp_Bigg_middle_shift_int=\count108
\c__fp_Bigg_trailing_shift_int=\count109
L3 Module: l3box 2015/08/09 v5822 L3 Experimental boxes
\c_empty_box=\box27
\l_tmpa_box=\box28
\l_tmpb_box=\box29
\g_tmpa_box=\box30
\g_tmpb_box=\box31
L3 Module: l3coffins 2016/05/17 v6508 L3 Coffin code layer
\l__coffin_internal_box=\box32
\l__coffin_internal_dim=\dimen115
\l__coffin_offset_x_dim=\dimen116
\l__coffin_offset_y_dim=\dimen117
\l__coffin_x_dim=\dimen118
\l__coffin_y_dim=\dimen119
\l__coffin_x_prime_dim=\dimen120
\l__coffin_y_prime_dim=\dimen121
\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=\dimen122
\l__coffin_display_x_dim=\dimen123
\l__coffin_display_y_dim=\dimen124
L3 Module: l3color 2014/08/23 v5354 L3 Experimental color support
L3 Module: l3sys 2015/09/25 v6087 L3 Experimental system/runtime functions
L3 Module: l3candidates 2016/05/13 v6484 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen125
\l__box_bottom_dim=\dimen126
\l__box_left_dim=\dimen127
\l__box_right_dim=\dimen128
\l__box_top_new_dim=\dimen129
\l__box_bottom_new_dim=\dimen130
\l__box_left_new_dim=\dimen131
\l__box_right_new_dim=\dimen132
\l__box_internal_box=\box41
\l__coffin_bounding_shift_dim=\dimen133
\l__coffin_left_corner_dim=\dimen134
\l__coffin_right_corner_dim=\dimen135
\l__coffin_bottom_corner_dim=\dimen136
\l__coffin_top_corner_dim=\dimen137
\l__coffin_scaled_total_height_dim=\dimen138
\l__coffin_scaled_width_dim=\dimen139
L3 Module: l3luatex 2016/03/26 v6465 L3 Experimental LuaTeX-specific functions
)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3pdfmode.def
File: l3pdfmode.def 2016/03/26 v6465 L3 Experimental driver: PDF mode
\l__driver_color_stack_int=\count110
\l__driver_tmp_box=\box42
))
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2016/05/18 v6512 L3 Experimental document command parser
\l__xparse_current_arg_int=\count111
\l__xparse_m_args_int=\count112
\l__xparse_mandatory_args_int=\count113
\l__xparse_processor_int=\count114
\l__xparse_v_nesting_int=\count115
)
Package: fontspec 2016/02/01 v2.5a Font selection for XeLaTeX and LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/luatex/luaotfload/luaotfload.sty
Package: luaotfload 2016/06/16 v2.7 OpenType layout system
Lua module: luaotfload-main 2016/06/16 2.70003 OpenType layout system.
Lua module: lualibs 2016-04-06 2.4 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2016-04-06 2.4 ConTeXt Lua libraries -- extended co
llection.(using write cache: /home/marek/.texlive2016/texmf-var/luatex-cache/gen
eric)(using read cache: /var/lib/texmf/luatex-cache/generic /home/marek/.texlive
2016/texmf-var/luatex-cache/generic)
luaotfload | conf : Root cache directory is /home/marek/.texlive2016/texmf-var/l
uatex-cache/generic/names.
luaotfload | init : Loading fontloader “fontloader-2016-06-16.lua” from kpse
-resolved path “/usr/share/texlive/texmf-dist/tex/luatex/luaotfload/fontloader
-2016-06-16.lua”.
Lua-only attribute luaotfload@state = 1
Lua-only attribute luaotfload@noligature = 2
Lua-only attribute luaotfload@syllabe = 3
luaotfload | init : Context OpenType loader version “3.023”
Inserting `luaotfload.node_processor' at position 1 in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' at position 1 in `hpack_filter'.
Inserting `luaotfload.define_font' at position 1 in `define_font'.
Lua-only attribute luaotfload_color_attribute = 4
luaotfload | conf : Root cache directory is /home/marek/.texlive2016/texmf-var/l
uatex-cache/generic/names.
Inserting `luaotfload.aux.set_sscale_dimens' at position 1 in `luaotfload.patch_
font'.
Inserting `luaotfload.aux.patch_cambria_domh' at position 2 in `luaotfload.patch
_font'.
Inserting `luaotfload.aux.fixup_fontdata' at position 1 in `luaotfload.patch_fon
t_unsafe'.
Inserting `luaotfload.aux.set_capheight' at position 3 in `luaotfload.patch_font
'.
Inserting `luaotfload.rewrite_fontname' at position 4 in `luaotfload.patch_font'
.
luaotfload | main : initialization completed in 0.115 seconds)
Lua module: fontspec 2016/02/01 2.5a Advanced font selection for LuaLaTeX.
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2016/02/01 v2.5a Font selection for XeLaTeX and LuaLaTe
X
\l_fontspec_script_int=\count116
\l_fontspec_language_int=\count117
\l_fontspec_strnum_int=\count118
\l__fontspec_tmpa_dim=\dimen140
\l__fontspec_tmpb_dim=\dimen141
\l__fontspec_tmpc_dim=\dimen142
\g__file_internal_ior=\read1
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2016/06/19 v1.99m Standard LaTeX package
(/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2enc.def
File: eu2enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
)
LaTeX Font Info: Try loading font information for EU2+lmr on input line 105.
(/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmr.fd
File: eu2lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
luaotfload | db : Font names database loaded from /home/marek/.texlive2016/texmf
-var/luatex-cache/generic/names/luaotfload-names.luc(compiling luc: /var/lib/tex
mf/luatex-cache/generic/fonts/otl/lmroman10-regular.luc)(load luc: /home/marek/.
texlive2016/texmf-var/luatex-cache/generic/fonts/otl/lmroman10-regular.luc))(com
piling luc: /var/lib/texmf/luatex-cache/generic/fonts/otl/lmroman12-regular.luc)
(load luc: /home/marek/.texlive2016/texmf-var/luatex-cache/generic/fonts/otl/lmr
oman12-regular.luc)
(/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 o
ther characters in Unicode lower plane
(/usr/share/texmf/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
(compiling luc: /var/lib/texmf/luatex-cache/generic/fonts/otl/lmromanslant12-reg
ular.luc)(load luc: /home/marek/.texlive2016/texmf-var/luatex-cache/generic/font
s/otl/lmromanslant12-regular.luc)(compiling luc: /var/lib/texmf/luatex-cache/gen
eric/fonts/otl/lmroman12-italic.luc)(load luc: /home/marek/.texlive2016/texmf-va
r/luatex-cache/generic/fonts/otl/lmroman12-italic.luc)(compiling luc: /var/lib/t
exmf/luatex-cache/generic/fonts/otl/lmroman12-bold.luc)(load luc: /home/marek/.t
exlive2016/texmf-var/luatex-cache/generic/fonts/otl/lmroman12-bold.luc)
LaTeX Font Info: Try loading font information for EU2+lmss on input line 357.
(/usr/share/texlive/texmf-dist/tex/latex/euenc/eu2lmss.fd
File: eu2lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
)(compiling luc: /var/lib/texmf/luatex-cache/generic/fonts/otl/lmsans12-regular.
luc)(load luc: /home/marek/.texlive2016/texmf-var/luatex-cache/generic/fonts/otl
/lmsans12-regular.luc))
\tipaTiiicode=\count119
\tipasavetokens=\toks15
\tipachecktokens=\toks16
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2014/10/28 v1.0g 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 2016/07/10 v1.0t 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: luatex.def on input line 99.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/luatex.def
File: luatex.def 2016/08/17 v0.01g Graphics/Color for luaTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count120
))
\Gin@req@height=\dimen143
\Gin@req@width=\dimen144
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__fontspec_post_arg:w with sig. 'mmO{}' on line 356.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \fontspec with sig. 'om' on line 358.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmainfont with sig. 'om' on line 368.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setsansfont with sig. 'om' on line 378.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmonofont with sig. 'om' on line 388.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathrm with sig. 'om' on line 402.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setboldmathrm with sig. 'om' on line 410.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathsf with sig. 'om' on line 418.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathtt with sig. 'om' on line 426.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfamily with sig. 'mom' on line 440.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontface with sig. 'mom' on line 456.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \defaultfontfeatures with sig. 't+om' on line 470.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addfontfeatures with sig. 'm' on line 533.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfeature with sig. 'mm' on line 544.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newAATfeature with sig. 'mmmm' on line 552.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newopentypefeature with sig. 'mmm' on line 560.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeature with sig. 'mm' on line 581.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeatureoption with sig. 'mmm' on line 590.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontscript with sig. 'mm' on line 594.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontlanguage with sig. 'mm' on line 598.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareFontsExtensions with sig. 'm' on line 603.
.................................................
\l__fontspec_tmp_int=\count121
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)
LaTeX Info: Redefining \itshape on input line 2629.
LaTeX Info: Redefining \slshape on input line 2634.
LaTeX Info: Redefining \scshape on input line 2639.
LaTeX Info: Redefining \upshape on input line 2644.
\l__fontspec_em_int=\count122
\l__fontspec_emdef_int=\count123
LaTeX Info: Redefining \em on input line 2660.
LaTeX Info: Redefining \emph on input line 2666.
LaTeX Info: Redefining \- on input line 2670.
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \oldstylenums with sig. 'm' on line 2765.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \liningnums with sig. 'm' on line 2769.
.................................................
))
(/usr/share/texlive/texmf-dist/tex/luatex/luatexbase/luatexbase.sty
Package: luatexbase 2015/10/04 v1.3 luatexbase interface to LuaTeX
(/usr/share/texlive/texmf-dist/tex/luatex/ctablestack/ctablestack.sty
Package: ctablestack 2015/10/01 v1.0 Catcode table stable support
\@catcodetablestackcnt=\count124
)
\CatcodeTableOther=\catcodetable6
\CatcodeTableExpl=\catcodetable7
)
(/usr/share/texlive/texmf-dist/tex/latex/metalogo/metalogo.sty
Package: metalogo 2010/05/29 v0.12 Extended TeX logo macros
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\xl@everylogo=\toks18
\xl@@everylogo=\toks19
LaTeX Info: Redefining \TeX on input line 193.
LaTeX Info: Redefining \LaTeX on input line 202.
LaTeX Info: Redefining \LaTeXe on input line 219.
)
(/usr/share/texlive/texmf-dist/tex/lualatex/luacode/luacode.sty
Package: luacode 2012/01/23 v1.2a lua-in-tex helpers (mpg)
\luacode@lines=\toks20
\luacode@table@soft=\catcodetable8
)
(/usr/share/texlive/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2015/06/22 v2.0b fixes to LaTeX (obsolete)
Package fixltx2e Warning: fixltx2e is not required with releases after 2015
(fixltx2e) All fixes are now in the LaTeX kernel.
(fixltx2e) See the latexrelease package for details.
)) (/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/generic/oberdiek/ifpdf.sty
Package: ifpdf 2016/05/14 v3.1 Provides the ifpdf switch
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
\Gm@cnth=\count125
\Gm@cntv=\count126
\c@Gm@tempcnt=\count127
\Gm@bindingoffset=\dimen145
\Gm@wd@mp=\dimen146
\Gm@odd@mp=\dimen147
\Gm@even@mp=\dimen148
\Gm@layoutwidth=\dimen149
\Gm@layoutheight=\dimen150
\Gm@layouthoffset=\dimen151
\Gm@layoutvoffset=\dimen152
\Gm@dimlist=\toks21
)
(/usr/local/share/texmf/tex/lualatex/gregoriotex/gregoriotex.sty
Package: gregoriotex 2016/09/23 v4.2.0 GregorioTeX system.
(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: luatex.def on input line 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
)))
(/usr/share/texlive/texmf-dist/tex/luatex/luamplib/luamplib.sty
Package: luamplib 2016/03/31 v2.11.3 mplib package for LuaTeX
Lua module: luamplib 2016/03/31 2.11.3 Lua package to typeset Metapost with LuaT
eX's MPLib.
\mplibstartlineno=\count128
\everymplibtoks=\toks22
\everyendmplibtoks=\toks23
\mplibscratchbox=\box43
)
(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty
(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex
\@xs@message=\write3
\integerpart=\count129
\decimalpart=\count130
)
Package: xstring 2013/10/13 v1.7c String manipulations (C Tellechea)
)
(/usr/local/share/texmf/tex/luatex/gregoriotex/gregoriotex-main.tex
\gre@attr@dash=\attribute5
\gre@attr@center=\attribute6
\GreScoreId=\attribute7
\gre@attr@glyph@id=\attribute8
\gre@attr@glyph@top=\attribute9
\gre@attr@glyph@bottom=\attribute10
\gre@attr@syllable@id=\attribute11
\gre@atletter=\catcodetable9
Lua module: gregoriotex 2016/09/23 4.2.0 GregorioTeX module.
Custom whatsit marker = 1
Module gregoriotex Info: marker whatsit id is 1 on input line 185
(feria6.gaux)
Module gregoriotex Info: Reading feria6.gaux on input line 189
Inserting `gregoriotex.write_greaux' at position 1 in `finish_pdffile'.
\gre@gaux=\write4
\gre@factor=\count131
(/usr/local/share/texmf/tex/luatex/gregoriotex/gregoriotex-spaces.tex
\gre@hyphenpenaltysave=\count132
\gre@exhyphenpenaltysave=\count133
\gre@doublehyphendemeritssave=\count134
\gre@finalhyphendemeritssave=\count135
\gre@brokenpenaltysave=\count136
\gre@loosenesssave=\count137
\gre@tolerancesave=\count138
\gre@pretolerancesave=\count139
\gre@emergencystretchsave=\skip51
\gre@widowpenaltysave=\count140
\gre@clubpenaltysave=\count141
\gre@skip@parskip@save=\skip52
\gre@skip@lineskip@save=\skip53
\gre@skip@baselineskip@save=\skip54
\gre@skip@lineskiplimit@save=\skip55
\gre@dimen@textlower=\dimen153
\gre@dimen@stafflinewidth=\dimen154
\gre@dimen@linewidth=\dimen155
\gre@dimen@stafflineheight=\dimen156
\gre@dimen@interstafflinespace=\dimen157
\gre@dimen@stafflinediff=\dimen158
\gre@dimen@constantglyphraise=\dimen159
\gre@dimen@staffheight=\dimen160
\gre@skip@syllablefinalskip=\skip56
\gre@skip@minTextDistance=\skip57
\gre@skip@minNotesDistance=\skip58
\gre@dimen@curTextDistance=\dimen161
\gre@dimen@curNotesDistance=\dimen162
\gre@skip@minShiftText=\skip59
\gre@skip@minShiftNotes=\skip60
\gre@dimen@bolshift=\dimen163
\gre@dimen@bolextra=\dimen164
\gre@dimen@eolshift=\dimen165
\gre@count@protrusion@hyphen@eol=\count142
\gre@dimen@glyphraisevalue=\dimen166
\gre@dimen@additionalbottomspace=\dimen167
\gre@dimen@additionaltopspace=\dimen168
\gre@dimen@additionaltopspacealt=\dimen169
\gre@dimen@additionaltopspacenabc=\dimen170
\gre@space@count@additionaltopspacethreshold=\count143
\gre@space@count@additionaltopspacealtthreshold=\count144
\gre@space@count@additionaltopspacenabcthreshold=\count145
\gre@dimen@textaligncenter=\dimen171
\gre@dimen@enddifference=\dimen172
\gre@dimen@previousenddifference=\dimen173
\gre@dimen@currenttranslationheight=\dimen174
\gre@skip@nextbegindifference=\skip61
\gre@dimen@annotationtrueraise=\dimen175
\gre@dimen@commentarytrueraise=\dimen176
\gre@skip@bar@requirement=\skip62
\gre@skip@bar@allocation=\skip63
\gre@dimen@bar@shift=\dimen177
\gre@skip@text@requirement=\skip64
\gre@skip@text@allocation=\skip65
\gre@dimen@text@shift=\dimen178
\gre@dimen@adjustedpreviousenddifference=\dimen179
\gre@skip@adjustednextbegindifference=\dimen180
\gre@skip@punctummorashift=\skip66
\gre@skip@alterationshift=\skip67
\gre@dimen@begindifference=\dimen181
\gre@dimen@clefwidth=\dimen182
\gre@dimen@lastglyphwidth=\dimen183
\gre@dimen@notesaligncenter=\dimen184
\gre@dimen@additionalleftspace=\dimen185
\gre@dimen@initialwidth=\dimen186
\gre@dimen@currentabovelinestextheight=\dimen187
\gre@dimen@temp@one=\dimen188
\gre@dimen@temp@two=\dimen189
\gre@dimen@temp@three=\dimen190
\gre@dimen@temp@four=\dimen191
\gre@dimen@temp@five=\dimen192
\gre@skip@temp@one=\skip68
\gre@skip@temp@two=\skip69
\gre@skip@temp@three=\skip70
\gre@skip@temp@four=\skip71
\gre@count@temp@one=\count146
\gre@count@temp@two=\count147
\gre@count@temp@three=\count148
\gre@space@count@newlinepenalty=\count149
\gre@space@count@nobreakpenalty=\count150
\gre@space@count@endofwordpenalty=\count151
\gre@space@count@endofsyllablepenalty=\count152
\gre@space@count@endafterbarpenalty=\count153
\gre@space@count@endafterbaraltpenalty=\count154
\gre@space@count@finalpenalty=\count155
\gre@space@count@endofelementpenalty=\count156
\gre@space@count@hyphenpenalty=\count157
\gre@space@count@brokenpenalty=\count158
\gre@space@count@looseness=\count159
\gre@space@count@tolerance=\count160
\gre@space@count@pretolerance=\count161
\gre@space@count@widowpenalty=\count162
\gre@space@count@clubpenalty=\count163
\greconffactor=\count164
)
\gre@box@temp@width=\box44
\gre@box@initial=\box45
\gre@biginitial=\count165
\gre@knownline=\count166
\gre@box@annotation=\box46
\gre@box@add=\box47
\gre@box@old=\box48
\gre@count@annotationvalign=\count167
\gre@box@commentary=\box49
\gre@box@lines=\box50
Module gregoriotex Info: Registering variant font greciliae as gre@font@variant@
A. on input line 994
luaotfload | cache : Lookup cache loaded from /home/marek/.texlive2016/texmf-var
/luatex-cache/generic/names/luaotfload-lookup-cache.luc.(compiling luc: /var/lib
/texmf/luatex-cache/generic/fonts/otl/greciliae.luc)(load luc: /home/marek/.texl
ive2016/texmf-var/luatex-cache/generic/fonts/otl/greciliae.luc)
Module gregoriotex Info: Mapping font greciliae on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusTwoOneTwoDeminutus to \char5
8192 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusOneThreeThreeAscendens t
o \char61618 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveThreeOneNothing to \
char60591 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarOneOneFourDeminutus t
o \char60209 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFiveFourFiveDeminutus to \ch
ar58285 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneTwoFiveDeminut
us to \char60465 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesQuassusInusitatusThreeAscendens t
o \char62716 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusTwoOneFiveDeminutus to \char
58195 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusNobarThreeOneUp to \char62964 on in
put line 995
Module gregoriotex Info: Setting \GreCPTorculusFourFiveAscendens to \char58710 o
n input line 995
Module gregoriotex Info: Setting \GreCPHEpisemaNaturalReduced to \char57457 on i
nput line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarThreeThreeThreeAscend
ens to \char59993 on input line 995
Module gregoriotex Info: Setting \GreCPLowerFlexusOneAscendens to \char62844 on
input line 995
Module gregoriotex Info: Setting \GreCPAncusFourFiveDeminutus to \char57885 on i
nput line 995
Module gregoriotex Info: Setting \GreCPScandicusFiveOneDeminutus to \char57861 o
n input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusOneOneOneNothing to \cha
r60481 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaTwoTwoThreeDesce
ndens to \char62263 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveThreeFiveInitioDebil
isDeminutus to \char61095 on input line 995
Module gregoriotex Info: Setting \GreCPScandicusFourFiveDeminutus to \char57860
on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensFiveFiveFourDeminutus t
o \char58964 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneFourOneAscende
ns to \char60196 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarTwoThreeFiveDescenden
s to \char59695 on input line 995
Module gregoriotex Info: Setting \GreCPAncusLongqueueTwoThreeDeminutus to \char5
7898 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusFiveFiveOneAscendens to \c
har60176 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaFourFiveThreeDe
minutus to \char59063 on input line 995
Module gregoriotex Info: Setting \GreCPAncusFourOneDeminutus to \char57881 on in
put line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaTwoThreeFiveDem
inutus to \char59005 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaThreeThreeTwoDes
cendens to \char62292 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesQuassusInusitatusFourAscendens to
\char62717 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFourTwoOneAscendens to \char
58371 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFiveTwoFourDeminutus to \cha
r58274 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusOneFiveFourDescendens to \
char59804 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusOneFourOneInitioDebilisD
escendens to \char62121 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaFourThreeThreeAs
cendens to \char61943 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarOneFourOneDeminutus t
o \char60221 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusThreeFiveThreeDeminutus to
\char60403 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusTwoFiveThreeAscendens to \
char60103 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusThreeFourFiveDeminutus to
\char60400 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusOneThreeFiveDeminutus to \
char60345 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveTwoThreeDeminutus to
\char60963 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusFourOneFiveDescendens to \
char59860 on input line 995
Module gregoriotex Info: Setting \GreCPUpperOblatusFlexusOriscusInusitatusFiveDe
scendens to \char62918 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusTwoFourThreeNothing to \
char60523 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensThreeOneThreeDeminutus
to \char58893 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaFourOneTwoAscend
ens to \char61932 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourThreeFourNothing to
\char60569 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourFourOneNothing to \c
har60571 on input line 995
Module gregoriotex Info: Setting \GreCPPesQuassusThreeAscendens to \char57603 on
input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusOneTwoOneNothing to \char580
46 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesQuassusInusitatusTwoDeminutus to
\char62587 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusNobarOneFourUp to \char62957 on inp
ut line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFiveThreeThreeAscendens to \
char58403 on input line 995
Module gregoriotex Info: Setting \GreCPLeadingPunctumOne to \char62356 on input
line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusThreeOneFourInitioDebili
s to \char60659 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusThreeFourFiveDescendens to \
char58485 on input line 995
Module gregoriotex Info: Setting \GreCPLowerFlexusFiveDeminutus to \char62808 on
input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaFiveOneThreeAsce
ndens to \char61958 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaOneTwoFiveDescen
dens to \char62240 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaThreeFourThreeD
eminutus to \char59033 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarTwoThreeFiveNothing t
o \char59420 on input line 995
Module gregoriotex Info: Setting \GreCPUpperFlexusOriscusInusitatusFiveNothing t
o \char62793 on input line 995
Module gregoriotex Info: Setting \GreCPUpperOblatusPesQuassusOneDeminutus to \ch
ar62571 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaThreeFourTwoDem
inutus to \char59032 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaFiveFiveFourNoth
ing to \char60854 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusFiveThreeFourDeminutus to
\char60444 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaThreeTwoFourDemi
nutus to \char61164 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusTwoThreeFiveDescendens to \c
har58455 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaTwoFiveFiveNothi
ng to \char60780 on input line 995
Module gregoriotex Info: Setting \GreCPUpperFlexusTwoDeminutus to \char62810 on
input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveTwoOneInitioDebilis
to \char60711 on input line 995
Module gregoriotex Info: Setting \GreCPLowerOblatusPesQuassusInusitatusTwoDescen
dens to \char62760 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusAmOneLineBL to \char57488 on input
line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarFiveFiveThreeDeminutu
s to \char60328 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneTwoOneNothing
to \char59636 on input line 995
Module gregoriotex Info: Setting \GreCPHEpisemaInclinatumReduced to \char57427 o
n input line 995
Module gregoriotex Info: Setting \GreCPFlexusOriscusFourDeminutus to \char57702
on input line 995
Module gregoriotex Info: Setting \GreCPTorculusQuilismaOneFourDescendens to \cha
r58644 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusLongqueueFiveFiveDeminutus to \c
har59305 on input line 995
Module gregoriotex Info: Setting \GreCPDescendensPunctumInclinatum to \char57371
on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaFiveFiveTwoDemi
nutus to \char59087 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusTwoThreeAscendens to \char57998 on
input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourFourFiveAscendens to
\char61700 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusOriscusScapusInusitatusLongqueueFou
rAscendens to \char57765 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusOneOneFourAscendens to \ch
ar60059 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusTwoFourFiveAscendens to
\char61650 on input line 995
Module gregoriotex Info: Setting \GreCPUpperFlexusOriscusThreeNothing to \char62
776 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveThreeFiveInitioDebil
is to \char60720 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFourFourDeminutus to \char59274
on input line 995
Module gregoriotex Info: Setting \GreCPPesQuilismaQuadratumOneDescendens to \cha
r57636 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaOneFiveOneDeminu
tus to \char61126 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesQuassusInusitatusLongqueueOneNoth
ing to \char62672 on input line 995
Module gregoriotex Info: Setting \GreCPAncusLongqueueTwoOneDeminutus to \char578
96 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarThreeTwoFourNothing t
o \char59439 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarFiveTwoThreeNothing t
o \char59488 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusFiveTwoInitioDebilisAscendens to
\char58762 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourFiveOneDescendens to
\char62076 on input line 995
Module gregoriotex Info: Setting \GreCPUpperPunctumOneDown to \char62530 on inpu
t line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensFourFiveFourDeminutus t
o \char58939 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourThreeTwoDescendens t
o \char62067 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarFourTwoFourDeminutus
to \char60289 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFourFiveThreeAscendens to \c
har58388 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFiveOneTwoAscendens to \char
58392 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusNobarOneFourNothing to \char5912
4 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveThreeOneInitioDebili
sDescendens to \char62216 on input line 995
Module gregoriotex Info: Setting \GreCPAscendensOriscusTwoUp to \char62402 on in
put line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourFiveFourInitioDebili
s to \char60704 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarFiveTwoFourDescendens
to \char59764 on input line 995
Module gregoriotex Info: Setting \GreCPUpperPesQuassusLongqueueFiveNothing to \c
har62627 on input line 995
Module gregoriotex Info: Setting \GreCPVirgula to \char57423 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusTwoThreeUp to \char62931 on input l
ine 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusOneThreeOneDescendens to \ch
ar58426 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarThreeTwoTwoDescendens
to \char59712 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusOneThreeOneInitioDebilis
to \char60616 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFiveFourFourDeminutus to \ch
ar58284 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusOriscusFourAscendens to \char57728
on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusTwoOneThreeInitioDebilis
Ascendens to \char61758 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFourOneOneInitioDebilisA
scendens to \char61806 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveOneOneInitioDebilisA
scendens to \char61831 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFiveFiveFourDeminutus to \ch
ar58289 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesQuassusInusitatusThreeDeminutus t
o \char62588 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusTwoFiveTwoInitioDebilis
to \char60652 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveFiveTwoDescendens to
\char62102 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarThreeFourOneDeminutus
to \char60271 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensThreeOneOneDeminutus to
\char58891 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusTwoTwoFiveAscendens to \char
58325 on input line 995
Module gregoriotex Info: Setting \GreCPFlexusOriscusScapusThreeDescendens to \ch
ar57796 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesTwoDeminutus to \char62562 on inp
ut line 995
Module gregoriotex Info: Setting \GreCPPesQuassusOneDeminutus to \char57527 on i
nput line 995
Module gregoriotex Info: Setting \GreCPPunctumOneDown to \char62525 on input lin
e 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveOneOneInitioDebilisD
eminutus to \char61081 on input line 995
Module gregoriotex Info: Setting \GreCPUpperPesQuassusFiveAscendens to \char6269
8 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarFiveTwoTwoNothing to
\char59487 on input line 995
Module gregoriotex Info: Setting \GreCPLowerPesQuadratumFiveAscendens to \char62
693 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaFourOneFourDemi
nutus to \char59044 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneOneThreeDeminu
tus to \char60458 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusThreeThreeThreeDescendens to
\char58478 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusFiveFourOneAscendens to \c
har60171 on input line 995
Module gregoriotex Info: Setting \GreCPUpperOblatusFlexusOriscusInusitatusTwoDem
inutus to \char62835 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusThreeFiveFiveDeminutus to
\char60405 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusTwoOneFiveInitioDebilisD
escendens to \char62135 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneThreeThreeDesc
endens to \char59918 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusFiveThreeFiveDescendens
to \char62095 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusOneFiveOneAscendens to \char
58311 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusOneFourThreeDescendens to \c
har58433 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarThreeFourTwoNothing t
o \char59447 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneTwoThreeAscend
ens to \char60188 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusOneFiveThreeInitioDebili
sDescendens to \char62128 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusThreeFiveFiveInitioDebil
isDescendens to \char62180 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusTwoTwoInitioDebilis to \char58597
on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusFourThreeOneDeminutus to \ch
ar58251 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusThreeFiveOneNothing to \ch
ar59576 on input line 995
Module gregoriotex Info: Setting \GreCPLowerAscendensOriscusFourDown to \char624
91 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusLiquescensQuilismaFourFiveTwoDemi
nutus to \char59062 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusThreeFiveOneAscendens to \ch
ar58361 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusThreeFourFourNothing to \c
har59574 on input line 995
Module gregoriotex Info: Setting \GreCPSalicusFlexusTwoTwoThreeDeminutus to \cha
r58198 on input line 995
Module gregoriotex Info: Setting \GreCPUpperPunctumTwoUp to \char62382 on input
line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusTwoTwoFiveDeminutus to \
char60890 on input line 995
Module gregoriotex Info: Setting \GreCPLowerFlexusOriscusFourNothing to \char627
82 on input line 995
Module gregoriotex Info: Setting \GreCPScandicusThreeFiveNothing to \char57830 o
n input line 995
Module gregoriotex Info: Setting \GreCPAscendensOriscusScapusLongqueueOneUp to \
char62446 on input line 995
Module gregoriotex Info: Setting \GreCPUpperFlexusOriscusInusitatusOneDescendens
to \char62909 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusFiveTwoDescendens to \char58637 o
n input line 995
Module gregoriotex Info: Setting \GreCPSalicusFiveTwoAscendens to \char58012 on
input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusLongqueueOneFourFourDescen
dens to \char59924 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarOneFiveOneNothing to
\char59401 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFlexusNobarOneThreeOneAscendens
to \char59941 on input line 995
Module gregoriotex Info: Setting \GreCPTorculusResupinusQuilismaOneFiveThreeNoth
ing to \char60753 on input line 995
Module gregoriotex Info: Setting \GreCPPorrectusFiveThreeAscendens to \char59168
on input line 995