forked from FAO-SID/GSOCseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GSOCseq_TM.log
1717 lines (1504 loc) · 59.7 KB
/
GSOCseq_TM.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/W32TeX) (preloaded format=pdflatex 2021.6.8) 18 JUN 2021 11:48
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**GSOCseq_TM.tex
(./GSOCseq_TM.tex
LaTeX2e <2021-06-01>
L3 programming layer <2021-06-01> (c:/Users/luottoi/AppData/Roaming/TinyTeX/tex
mf-dist/tex/latex/base/book.cls
Document Class: book 2021/02/12 v1.4n Standard LaTeX document class
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/bk10.clo
File: bk10.clo 2021/02/12 v1.4n Standard LaTeX file (size option)
)
\c@part=\count182
\c@chapter=\count183
\c@section=\count184
\c@subsection=\count185
\c@subsubsection=\count186
\c@paragraph=\count187
\c@subparagraph=\count188
\c@figure=\count189
\c@table=\count190
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen138
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsmath.
sty
Package: amsmath 2021/04/20 v2.17j AMS math features
\@mathmargin=\skip49
For additional information on amsmath, use the `?' option.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amstext.
sty
Package: amstext 2000/06/29 v2.01 AMS text
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsgen.s
ty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks16
\ex@=\dimen139
))
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsbsy.s
ty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen140
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsopn.s
ty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count191
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count192
\leftroot@=\count193
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count194
\DOTSCASE@=\count195
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box50
\strutbox@=\box51
\big@size=\dimen141
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count196
\c@MaxMatrixCols=\count197
\dotsspace@=\muskip16
\c@parentequation=\count198
\dspbrk@lvl=\count199
\tag@help=\toks17
\row@=\count266
\column@=\count267
\maxfields@=\count268
\andhelp@=\toks18
\eqnshift@=\dimen142
\alignsep@=\dimen143
\tagshift@=\dimen144
\tagwidth@=\dimen145
\totwidth@=\dimen146
\lineht@=\dimen147
\@envbody=\toks19
\multlinegap=\skip50
\multlinetaggap=\skip51
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2923.
LaTeX Info: Redefining \] on input line 2924.
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amssymb
.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amsfont
s.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
)) (c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/lmodern.st
y
Package: lmodern 2015/05/01 v1.6.1 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifxetex.
sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/iftex.st
y
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/ifluatex
.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+lmr on input line 11
2.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/t1lmr.fd
File: t1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
))
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/inputenc.st
y
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks21
\inpenc@posthook=\toks22
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/textcomp.st
y
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/xcolor.st
y
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/col
or.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-def/pdf
tex.def
File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
)
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.
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperre
f.sty
Package: hyperref 2021-06-07 v7.00m Hypertext links for LaTeX
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ltxcmds/ltxcmd
s.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdftexcmds/pdf
texcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/infwarerr/infw
arerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/keyval.
sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks23
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvsetkeys/kvse
tkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvdefinekeys/k
vdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdfescape/pdfe
scape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hycolor/hycolor.
sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/letltxmacro/letl
txmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/auxhook/auxhook.
sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvoptions/kvopti
ons.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
)
\@linkdim=\dimen148
\Hy@linkcounter=\count269
\Hy@pagecounter=\count270
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/pd1enc.
def
File: pd1enc.def 2021-06-07 v7.00m Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperre
f-langpatches.def
File: hyperref-langpatches.def 2021-06-07 v7.00m Hyperref: patches for babel la
nguages
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/intcalc/intcal
c.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/etexcmds/etexc
mds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count271
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/puenc.d
ef
File: puenc.def 2021-06-07 v7.00m Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Option `unicode' set `true' on input line 4073.
Package hyperref Info: Hyper figures OFF on input line 4192.
Package hyperref Info: Link nesting OFF on input line 4197.
Package hyperref Info: Hyper index ON on input line 4200.
Package hyperref Info: Plain pages OFF on input line 4207.
Package hyperref Info: Backreferencing OFF on input line 4212.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4445.
\c@Hy@tempcnt=\count272
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4804.
\XeTeXLinkMargin=\dimen149
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bitset/bitset.
sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bigintcalc/big
intcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count273
\Field@Width=\dimen150
\Fld@charsize=\dimen151
Package hyperref Info: Hyper figures OFF on input line 6076.
Package hyperref Info: Link nesting OFF on input line 6081.
Package hyperref Info: Hyper index ON on input line 6084.
Package hyperref Info: backreferencing OFF on input line 6091.
Package hyperref Info: Link coloring OFF on input line 6096.
Package hyperref Info: Link coloring with OCG OFF on input line 6101.
Package hyperref Info: PDF/A mode OFF on input line 6106.
LaTeX Info: Redefining \ref on input line 6146.
LaTeX Info: Redefining \pageref on input line 6150.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/atbegshi-lt
x.sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count274
\c@Item=\count275
\c@Hfootnote=\count276
)
Package hyperref Info: Driver (autodetected): hpdftex.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hpdftex
.def
File: hpdftex.def 2021-06-07 v7.00m Hyperref driver for pdfTeX
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/atveryend-l
tx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
e
with kernel methods
)
\Fld@listcount=\count277
\c@bookmark@seq@number=\count278
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/rerunfilecheck/r
erunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/uniquecounter/
uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip52
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyvrb/fancyvr
b.sty
Package: fancyvrb 2021/01/20 v3.7 verbatim text (tvz,hv)
\FV@CodeLineNo=\count279
\FV@InFile=\read2
\FV@TabBox=\box52
\c@FancyVerbLine=\count280
\FV@StepNumber=\count281
\FV@OutFile=\write3
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/framed/framed.st
y
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip53
\fb@frw=\dimen152
\fb@frh=\dimen153
\FrameRule=\dimen154
\FrameSep=\dimen155
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/longtable.
sty
Package: longtable 2021-05-07 v4.16 Multi-page Table package (DPC)
\LTleft=\skip54
\LTright=\skip55
\LTpre=\skip56
\LTpost=\skip57
\LTchunksize=\count282
\LTcapwidth=\dimen156
\LT@head=\box53
\LT@firsthead=\box54
\LT@foot=\box55
\LT@lastfoot=\box56
\LT@gbox=\box57
\LT@cols=\count283
\LT@rows=\count284
\c@LT@tables=\count285
\c@LT@chunks=\count286
\LT@p@ftn=\toks24
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/booktabs/booktab
s.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen157
\lightrulewidth=\dimen158
\cmidrulewidth=\dimen159
\belowrulesep=\dimen160
\belowbottomsep=\dimen161
\aboverulesep=\dimen162
\abovetopsep=\dimen163
\cmidrulesep=\dimen164
\cmidrulekern=\dimen165
\defaultaddspace=\dimen166
\@cmidla=\count287
\@cmidlb=\count288
\@aboverulesep=\dimen167
\@belowrulesep=\dimen168
\@thisruleclass=\count289
\@lastruleclass=\count290
\@thisrulewidth=\dimen169
) (c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/array.st
y
Package: array 2021/04/20 v2.5e Tabular extension package (FMi)
\col@sep=\dimen170
\ar@mcellbox=\box58
\extrarowheight=\dimen171
\NC@list=\toks25
\extratabsurround=\skip58
\backup@length=\skip59
\ar@cellbox=\box59
) (c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count291
\calc@Bcount=\count292
\calc@Adimen=\dimen172
\calc@Bdimen=\dimen173
\calc@Askip=\skip60
\calc@Bskip=\skip61
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count293
\calc@Cskip=\skip62
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/etoolbox/etoolbo
x.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count294
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/mdwtools/footnot
e.sty
Package: footnote 1997/01/28 1.13 Save footnotes around boxes
\fn@notes=\box60
\fn@width=\dimen174
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphic
x.sty
Package: graphicx 2020/12/05 v1.2c Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphic
s.sty
Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/trig.st
y
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/gra
phics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
)
\Gin@req@height=\dimen175
\Gin@req@width=\dimen176
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/natbib/natbib.st
y
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip63
\bibsep=\skip64
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count295
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3backend/l3back
end-pdftex.def
File: l3backend-pdftex.def 2021-05-07 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count296
\l__pdf_internal_box=\box61
)
No file GSOCseq_TM.aux.
\openout1 = `GSOCseq_TM.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 123.
LaTeX Font Info: ... okay on input line 123.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/epstopdf-pkg/eps
topdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/latexconfig/epst
opdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
Package hyperref Info: Link coloring OFF on input line 123.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/nameref
.sty
Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/refcount/refcoun
t.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/gettitlestring
/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count297
)
LaTeX Info: Redefining \ref on input line 123.
LaTeX Info: Redefining \pageref on input line 123.
LaTeX Info: Redefining \nameref on input line 123.
\@outlinefile=\write4
\openout4 = `GSOCseq_TM.out'.
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 1
25.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ot1lmr.fd
File: ot1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OML+lmm on input line 1
25.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omllmm.fd
File: omllmm.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line
125.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omslmsy.fd
File: omslmsy.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMX+lmex on input line
125.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/omxlmex.fd
File: omxlmex.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 125.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 125.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 125.
LaTeX Font Info: Trying to load font information for U+msa on input line 125
.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Trying to load font information for U+msb on input line 125
.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
Overfull \hbox (31.62418pt too wide) in paragraph at lines 125--125
[][]
[]
[1
{c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-var/fonts/map/pdftex/updmap/pdf
tex.map}] [2
]
Overfull \hbox (5.73532pt too wide) in paragraph at lines 164--164
[]|\T1/lmr/m/n/10 CIRCASA|
[]
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
<to be read again>
\relax
l.176 \section*{GitHub Page}\label{github-page}}
[1
]pdfTeX warning (ext4): destination with the same identifier (name{page.2}) has
been already used, duplicate ignored
<to be read again>
\relax
l.191 ...tbar{} Presentation}\label{presentation}}
[2]
Chapter 1.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 193.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 193.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5> on input line 193.
[3
]
Underfull \vbox (badness 10000) has occurred while \output is active []
[4]
LaTeX Font Info: Trying to load font information for TS1+lmr on input line 2
10.
(c:/Users/luottoi/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/ts1lmr.fd
File: ts1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
Underfull \hbox (badness 10000) in paragraph at lines 210--212
[]
Underfull \hbox (badness 10000) in paragraph at lines 212--214
[]
Underfull \hbox (badness 10000) in paragraph at lines 214--216
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[5]
Underfull \hbox (badness 10000) in paragraph at lines 228--230
\T1/lmr/m/n/10 / / drive . google . com / drive / folders / 1Jonn17LAiCyaUSpUn6
W63o16bjTg1P0E ?
[]
[6]
Chapter 2.
[7
] [8]
Underfull \hbox (badness 10000) in paragraph at lines 257--258
[]
[9]
Underfull \hbox (badness 10000) in paragraph at lines 263--264
[]
<images/Figure_2.1.png, id=87, 825.83531pt x 487.06969pt>
File: images/Figure_2.1.png Graphic file (type png)
<use images/Figure_2.1.png>
Package pdftex.def Info: images/Figure_2.1.png used on input line 272.
(pdftex.def) Requested size: 344.9961pt x 203.47534pt.
[10pdfTeX warning (ext4): destination with the same identifier (name{equation.2
.4.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.279
] [11 <./images/Figure_2.1.png>] [12]
Chapter 3.
[13
]
Underfull \hbox (badness 10000) in paragraph at lines 291--292
[]
[14] [15] [16]
Chapter 4.
[17
]
<images/Figure_4.1.png, id=147, 708.39656pt x 505.89pt>
File: images/Figure_4.1.png Graphic file (type png)
<use images/Figure_4.1.png>
Package pdftex.def Info: images/Figure_4.1.png used on input line 364.
(pdftex.def) Requested size: 345.00954pt x 246.38301pt.
Overfull \hbox (828.21791pt too wide) in paragraph at lines 377--392
[][]
[]
[18pdfTeX warning (ext4): destination with the same identifier (name{equation.4
.1.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.392 \end{table}
] [19 <./images/Figure_4.1.png>] [20]
Chapter 5.
[21
]
Underfull \vbox (badness 10000) has occurred while \output is active []
[22]
Overfull \hbox (51.63383pt too wide) has occurred while \output is active
\T1/lmr/m/sl/10 5.3. BUSINESS AS USUAL AND SUSTAINABLE SOIL MANAGEMENT SCENARI
OS \T1/lmr/m/n/10 23
[]
[23] [24] [25pdfTeX warning (ext4): destination with the same identifier (name{
equation.5.4.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.470
]pdfTeX warning (ext4): destination with the same identifier (name{equati
on.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.481 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.481 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.481 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.481 \begin{equation}
Overfull \hbox (39.10011pt too wide) detected at line 485
[]\OML/lmm/m/it/10 C\OT1/lmr/m/n/10 (\OML/lmm/m/it/10 t\OT1/lmr/m/n/10 ) = \OML
/lmm/m/it/10 S[]C[] \OT1/lmr/m/n/10 + [] \OML/lmm/m/it/10 NI[]\OT1/lmr/m/n/10 (
\OML/lmm/m/it/10 u[]^^M[] \OT1/lmr/m/n/10 + \OML/lmm/m/it/10 u[]Y[] \OT1/lmr/m/
n/10 + \OML/lmm/m/it/10 u[]^^M[]\OT1/lmr/m/n/10 )[] \OML/lmm/m/it/10 C[]f[]\OT1
/lmr/m/n/10 [\OML/lmm/m/it/10 Mg C ha[]\OT1/lmr/m/n/10 ]
[]
Underfull \vbox (badness 2707) has occurred while \output is active []
[26]pdfTeX warning (ext4): destination with the same identifier (name{equation.
5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.489 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.489 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.489 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.489 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.516 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.516 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.516 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.516 \begin{equation}
[27]pdfTeX warning (ext4): destination with the same ide
ntifier (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.521 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.521 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.521 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.521 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.526 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.526 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.526 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.526 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.531 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.531 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.531 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.531 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.536 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.536 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.536 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.536 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.544 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.544 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.544 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.544 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.549 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.549 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.549 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.549 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.557 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.557 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.557 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.5.4.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.557 \begin{equation}
[28] [29]
<images/Figure_5.1.png, id=238, 372.64218pt x 213.04594pt>
File: images/Figure_5.1.png Graphic file (type png)
<use images/Figure_5.1.png>
Package pdftex.def Info: images/Figure_5.1.png used on input line 595.
(pdftex.def) Requested size: 345.01273pt x 197.2497pt.
Overfull \hbox (1266.51076pt too wide) in paragraph at lines 603--664
[][]
[]
[30] [31 <./images/Figure_5.1.png>] [32]
Chapter 6.
[33
] [34] [35]
Overfull \hbox (26.29042pt too wide) detected at line 744
[][] \OT1/lmr/m/n/10 = 24\OML/lmm/m/it/10 :\OT1/lmr/m/n/10 25
[]
[36pdfTeX warning (ext4): destination with the same identifier (name{equation.6
.2.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.762
]
Overfull \hbox (58.1623pt too wide) in paragraph at lines 767--798
[][]
[]
Underfull \vbox (badness 4927) has occurred while \output is active []
[37] [38] [39pdfTeX warning (ext4): destination with the same identifier (name{
equation.6.5.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.868
]pdfTeX warning (ext4): destination with the same identifier (name{equati
on.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.869 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.869 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.869 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.869 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.874 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.874 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.874 \begin{equation}
pdfTeX warning (ext4): destination with the same identifi
er (name{equation.6.5.1}) has been already used, duplicate ignored
<to be read again>