-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainrep.log
More file actions
965 lines (815 loc) · 35.2 KB
/
Copy pathmainrep.log
File metadata and controls
965 lines (815 loc) · 35.2 KB
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
This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=pdflatex 2020.4.30) 5 MAY 2020 20:39
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**mainrep.tex
(./mainrep.tex
LaTeX2e <2017-04-15>
Babel <3.18> and hyphenation patterns for 9 language(s) loaded.
(./iitbreport.cls
Document Class: iitbreport 23/10/2015 IIT Bombay Report class v 1.2
Document Class 'iitbreport' v1.2beta <10 Feb 16>
(/usr/share/texlive/texmf-dist/tex/latex/base/report.cls
Document Class: report 2014/09/29 v1.4h 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)
)
\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=\dimen102
)
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2017/04/05 v2.0i Standard LaTeX package
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def
File: t1enc.def 2017/04/05 v2.0i Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2017/09/02 v2.17a AMS math features
\@mathmargin=\skip43
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=\toks14
\ex@=\dimen103
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen104
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count88
LaTeX Info: Redefining \frac on input line 213.
\uproot@=\count89
\leftroot@=\count90
LaTeX Info: Redefining \overline on input line 375.
\classnum@=\count91
\DOTSCASE@=\count92
LaTeX Info: Redefining \ldots on input line 472.
LaTeX Info: Redefining \dots on input line 475.
LaTeX Info: Redefining \cdots on input line 596.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen105
LaTeX Font Info: Redeclaring font encoding OML on input line 712.
LaTeX Font Info: Redeclaring font encoding OMS on input line 713.
\macc@depth=\count93
\c@MaxMatrixCols=\count94
\dotsspace@=\muskip10
\c@parentequation=\count95
\dspbrk@lvl=\count96
\tag@help=\toks15
\row@=\count97
\column@=\count98
\maxfields@=\count99
\andhelp@=\toks16
\eqnshift@=\dimen106
\alignsep@=\dimen107
\tagshift@=\dimen108
\tagwidth@=\dimen109
\totwidth@=\dimen110
\lineht@=\dimen111
\@envbody=\toks17
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks18
LaTeX Info: Redefining \[ on input line 2817.
LaTeX Info: Redefining \] on input line 2818.
)
(/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/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
)
(/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: pdftex.def on input line 225.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2018/01/08 v1.0l 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.
)
(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
Package: fancyhdr 2017/06/30 v3.9a Extensive control of page headers and footer
s
\f@nch@headwidth=\skip46
\f@nch@O@elh=\skip47
\f@nch@O@erh=\skip48
\f@nch@O@olh=\skip49
\f@nch@O@orh=\skip50
\f@nch@O@elf=\skip51
\f@nch@O@erf=\skip52
\f@nch@O@olf=\skip53
\f@nch@O@orf=\skip54
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2018/02/06 v6.86b 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 2017/03/15 v3.2 Provides the ifpdf switch
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
Package: pdftexcmds 2018/01/21 v0.26 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode 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/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks19
)
(/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=\dimen112
\Hy@linkcounter=\count100
\Hy@pagecounter=\count101
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2018/02/06 v6.86b Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count102
(/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: Option `bookmarks' set `true' on input line 4383.
Package hyperref Info: Option `breaklinks' set `true' on input line 4383.
Package hyperref Info: Option `pdffitwindow' set `true' on input line 4383.
Package hyperref Info: Option `pdfcenterwindow' set `true' on input line 4383.
Package hyperref Info: Option `pdfusetitle' set `true' on input line 4383.
Package hyperref Info: Hyper figures OFF on input line 4509.
Package hyperref Info: Link nesting OFF on input line 4514.
Package hyperref Info: Hyper index ON on input line 4517.
Package hyperref Info: Plain pages OFF on input line 4524.
Package hyperref Info: Backreferencing OFF on input line 4529.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4762.
\c@Hy@tempcnt=\count103
(/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 5115.
\XeTeXLinkMargin=\dimen113
\Fld@menulength=\count104
\Field@Width=\dimen114
\Fld@charsize=\dimen115
Package hyperref Info: Hyper figures OFF on input line 6369.
Package hyperref Info: Link nesting OFF on input line 6374.
Package hyperref Info: Hyper index ON on input line 6377.
Package hyperref Info: backreferencing OFF on input line 6384.
Package hyperref Info: Link coloring OFF on input line 6389.
Package hyperref Info: Link coloring with OCG OFF on input line 6394.
Package hyperref Info: PDF/A mode OFF on input line 6399.
LaTeX Info: Redefining \ref on input line 6439.
LaTeX Info: Redefining \pageref on input line 6443.
\Hy@abspage=\count105
\c@Item=\count106
\c@Hfootnote=\count107
)
Package hyperref Info: Driver (autodetected): hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2018/02/06 v6.86b Hyperref driver for pdfTeX
\Fld@listcount=\count108
\c@bookmark@seq@number=\count109
(/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=\skip55
)
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/txfonts.sty
Package: txfonts 2008/01/22 v3.2.1
LaTeX Font Info: Redeclaring symbol font `operators' on input line 21.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/txr/m/n on input line 21.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/txr/m/n on input line 21.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/txr/m/n --> OT1/txr/bx/n on input line 22.
\symitalic=\mathgroup6
LaTeX Font Info: Overwriting symbol font `italic' in version `bold'
(Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 26.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 30.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/txr/m/it on input line 30.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/txr/m/it on input line 30.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 31.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 40.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/txss/m/n on input line 40.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/txss/m/n on input line 40.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/txss/m/n --> OT1/txss/b/n on input line 41.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 50.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/txtt/m/n --> OT1/txtt/b/n on input line 51.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 58.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/txmi/m/it on input line 58.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/txmi/m/it on input line 58.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/txmi/m/it --> OML/txmi/bx/it on input line 59.
\symlettersA=\mathgroup7
LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold'
(Font) U/txmia/m/it --> U/txmia/bx/it on input line 67.
LaTeX Font Info: Redeclaring math alphabet \mathfrak on input line 70.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 77.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/txsy/m/n on input line 77.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/txsy/m/n on input line 77.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/txsy/m/n --> OMS/txsy/bx/n on input line 78.
LaTeX Font Info: Redeclaring symbol font `AMSa' on input line 93.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `normal'
(Font) U/msa/m/n --> U/txsya/m/n on input line 93.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/msa/m/n --> U/txsya/m/n on input line 93.
LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold'
(Font) U/txsya/m/n --> U/txsya/bx/n on input line 94.
LaTeX Font Info: Redeclaring symbol font `AMSb' on input line 102.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `normal'
(Font) U/msb/m/n --> U/txsyb/m/n on input line 102.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/msb/m/n --> U/txsyb/m/n on input line 102.
LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold'
(Font) U/txsyb/m/n --> U/txsyb/bx/n on input line 103.
\symsymbolsC=\mathgroup8
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold'
(Font) U/txsyc/m/n --> U/txsyc/bx/n on input line 113.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 120.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 120.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 120.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/txex/m/n --> OMX/txex/bx/n on input line 121.
\symlargesymbolsA=\mathgroup9
LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `bold'
(Font) U/txexa/m/n --> U/txexa/bx/n on input line 129.
LaTeX Info: Redefining \not on input line 1043.
)
(/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/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: pdftex.def on input line 99.
)
\Gin@req@height=\dimen116
\Gin@req@width=\dimen117
)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/nomencl/nomencl.sty
Package: nomencl 2005/09/22 v4.2 Nomenclature package (LN)
\nomlabelwidth=\dimen118
\nom@tempdim=\dimen119
\nomitemsep=\skip56
)
\@nomenclaturefile=\write3
\openout3 = `mainrep.nlo'.
Writing nomenclature file mainrep.nlo
) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2016/04/27 v1.618033 publication quality tables
\heavyrulewidth=\dimen120
\lightrulewidth=\dimen121
\cmidrulewidth=\dimen122
\belowrulesep=\dimen123
\belowbottomsep=\dimen124
\aboverulesep=\dimen125
\abovetopsep=\dimen126
\cmidrulesep=\dimen127
\cmidrulekern=\dimen128
\defaultaddspace=\dimen129
\@cmidla=\count110
\@cmidlb=\count111
\@aboverulesep=\dimen130
\@belowrulesep=\dimen131
\@thisruleclass=\count112
\@lastruleclass=\count113
\@thisrulewidth=\dimen132
)
(/usr/share/texlive/texmf-dist/tex/latex/subfig/subfig.sty
Package: subfig 2005/06/28 ver: 1.3 subfig package
(/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2016/05/22 v1.7-166 caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 67.
\captionmargin=\dimen133
\captionmargin@=\dimen134
\captionwidth=\dimen135
\caption@tempdima=\dimen136
\caption@indent=\dimen137
\caption@parindent=\dimen138
\caption@hangindent=\dimen139
)
\c@KVtest=\count114
\sf@farskip=\skip57
\sf@captopadj=\dimen140
\sf@capskip=\skip58
\sf@nearskip=\skip59
\c@subfigure=\count115
\c@subfigure@save=\count116
\c@lofdepth=\count117
\c@subtable=\count118
\c@subtable@save=\count119
\c@lotdepth=\count120
\sf@top=\skip60
\sf@bottom=\skip61
)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
Package: multirow 2016/11/25 v2.2 Span multiple rows of a table
\multirow@colwidth=\skip62
\multirow@cntb=\count121
\multirow@dima=\skip63
\bigstrutjot=\dimen141
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/bm.sty
Package: bm 2017/01/16 v1.2c Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup10
\symboldletters=\mathgroup11
\symboldsymbols=\mathgroup12
\symboldlargesymbols=\mathgroup13
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 141.
LaTeX Info: Redefining \bm on input line 207.
)
(/usr/share/texlive/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty
Package: algorithm2e 2017/07/18 v5.2 algorithms environments
\c@AlgoLine=\count122
\algocf@hangindent=\skip64
(/usr/share/texlive/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty
Package: ifoddpage 2016/04/23 v1.1 Conditionals for odd/even page detection
\c@checkoddpage=\count123
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
(/usr/share/texlive/texmf-dist/tex/latex/relsize/relsize.sty
Package: relsize 2013/03/29 ver 4.1
)
\skiptotal=\skip65
\skiplinenumber=\skip66
\skiprule=\skip67
\skiphlne=\skip68
\skiptext=\skip69
\skiplength=\skip70
\algomargin=\skip71
\skipalgocfslide=\skip72
\algowidth=\dimen142
\inoutsize=\dimen143
\inoutindent=\dimen144
\interspacetitleruled=\dimen145
\interspacealgoruled=\dimen146
\interspacetitleboxruled=\dimen147
\algocf@ruledwidth=\skip73
\algocf@inoutbox=\box28
\algocf@inputbox=\box29
\AlCapSkip=\skip74
\AlCapHSkip=\skip75
\algoskipindent=\skip76
\algocf@nlbox=\box30
\algocf@hangingbox=\box31
\algocf@untilbox=\box32
\algocf@skipuntil=\skip77
\algocf@capbox=\box33
\algocf@lcaptionbox=\skip78
\algoheightruledefault=\skip79
\algoheightrule=\skip80
\algotitleheightruledefault=\skip81
\algotitleheightrule=\skip82
\c@algocfline=\count124
\c@algocfproc=\count125
\c@algocf=\count126
\algocf@algoframe=\box34
\algocf@algobox=\box35
) (./mainrep.aux
(./dec.aux) (./abs.aux) (./intro/introduction.aux) (./lit/literature.aux)
(./rir/rir.aux) (./icassp_2017/icassp2017.aux)
(./interspeech_2018/interspeech2018.aux) (./RNMF/RNMF.aux) (./rnd/results.aux)
(./pub.aux) (./ack.aux))
\openout1 = `mainrep.aux'.
LaTeX Font Info: Checking defaults for OML/txmi/m/it on input line 55.
LaTeX Font Info: Try loading font information for OML+txmi on input line 55.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/omltxmi.fd
File: omltxmi.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 55.
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 55.
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Checking defaults for OMS/txsy/m/n on input line 55.
LaTeX Font Info: Try loading font information for OMS+txsy on input line 55.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/omstxsy.fd
File: omstxsy.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Checking defaults for OMX/txex/m/n on input line 55.
LaTeX Font Info: Try loading font information for OMX+txex on input line 55.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/omxtxex.fd
File: omxtxex.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Checking defaults for U/txexa/m/n on input line 55.
LaTeX Font Info: Try loading font information for U+txexa on input line 55.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/utxexa.fd
File: utxexa.fd 2000/12/15 v3.1
)
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 55.
LaTeX Font Info: ... okay on input line 55.
LaTeX Font Info: Try loading font information for T1+txr on input line 55.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/t1txr.fd
File: t1txr.fd 2000/12/15 v3.1
)
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count127
\scratchdimen=\dimen148
\scratchbox=\box36
\nofMPsegments=\count128
\nofMParguments=\count129
\everyMPshowfont=\toks20
\MPscratchCnt=\count130
\MPscratchDim=\dimen149
\MPnumerator=\count131
\makeMPintoPDFobject=\count132
\everyMPtoPDFconversion=\toks21
) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO)
)
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
38.
Package grfext Info: Graphics extension search list:
(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 456.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
\AtBeginShipoutBox=\box37
Package hyperref Info: Link coloring OFF on input line 55.
(/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=\count133
)
LaTeX Info: Redefining \ref on input line 55.
LaTeX Info: Redefining \pageref on input line 55.
LaTeX Info: Redefining \nameref on input line 55.
(./mainrep.out) (./mainrep.out)
\@outlinefile=\write4
\openout4 = `mainrep.out'.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: subfig package v1.3 is loaded.
Package caption Info: End \AtBeginDocument code.
LaTeX Font Info: Try loading font information for T1+ptm on input line 98.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1ptm.fd
File: t1ptm.fd 2001/06/04 font definitions for T1/ptm.
)
LaTeX Font Info: Try loading font information for T1+phv on input line 98.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1phv.fd
File: t1phv.fd 2001/06/04 scalable font definitions for T1/phv.
)
LaTeX Font Info: Font shape `T1/phv/bx/n' in size <20.74> not available
(Font) Font shape `T1/phv/b/n' tried instead on input line 98.
LaTeX Font Info: Try loading font information for T1+pzc on input line 98.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pzc.fd
File: t1pzc.fd 2001/06/04 font definitions for T1/pzc.
)
LaTeX Font Info: Font shape `T1/pzc/m/it' in size <14.4> not available
(Font) Font shape `T1/pzc/mb/it' tried instead on input line 98.
LaTeX Font Info: Try loading font information for T1+ppl on input line 98.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1ppl.fd
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
)
LaTeX Font Info: Font shape `T1/ppl/bx/it' in size <14.4> not available
(Font) Font shape `T1/ppl/b/it' tried instead on input line 98.
LaTeX Font Info: Font shape `T1/ptm/bx/n' in size <14.4> not available
(Font) Font shape `T1/ptm/b/n' tried instead on input line 98.
<iitb-black.pdf, id=152, 557.08125pt x 533.995pt>
File: iitb-black.pdf Graphic file (type pdf)
<use iitb-black.pdf>
Package pdftex.def Info: iitb-black.pdf used on input line 98.
(pdftex.def) Requested size: 120.0pt x 115.02669pt.
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./iitb-black.pdf>] [2
] [3] [4
]
LaTeX Font Info: Try loading font information for OT1+txr on input line 116.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/ot1txr.fd
File: ot1txr.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+txsya on input line 116.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/utxsya.fd
File: utxsya.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+txsyb on input line 116.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/utxsyb.fd
File: utxsyb.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+txmia on input line 116.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/utxmia.fd
File: utxmia.fd 2000/12/15 v3.1
)
LaTeX Font Info: Try loading font information for U+txsyc on input line 116.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/utxsyc.fd
File: utxsyc.fd 2000/12/15 v3.1
) [5]
\openout2 = `dec.aux'.
(./dec.tex
[6
]) [7
]
\openout2 = `abs.aux'.
(./abs.tex [8
]) [9
] [10
] (./mainrep.toc [11
] [12])
\tf@toc=\write5
\openout5 = `mainrep.toc'.
[13] [14
]
(./mainrep.lof)
\tf@lof=\write6
\openout6 = `mainrep.lof'.
[15
] [16
] (./mainrep.lot)
\tf@lot=\write7
\openout7 = `mainrep.lot'.
[17
] [18
] (./mainrep.nls [19
])
[20]
\openout2 = `lit/literature.aux'.
(./lit/literature.tex
Chapter 2.
[5
]
<fig/TDOA_plot.pdf, id=415, 247.8861pt x 175.61609pt>
File: fig/TDOA_plot.pdf Graphic file (type pdf)
<use fig/TDOA_plot.pdf>
Package pdftex.def Info: fig/TDOA_plot.pdf used on input line 25.
(pdftex.def) Requested size: 426.79134pt x 302.37267pt.
[6 <./fig/TDOA_plot.pdf
pdfTeX warning: pdflatex (file ./fig/TDOA_plot.pdf): PDF inclusion: invalid oth
er resource which is no dict (key 'ProcSets', type <array>); ignored.
>] [7] [8] [9] [10] [11]) [12]
\openout2 = `icassp_2017/icassp2017.aux'.
(./icassp_2017/icassp2017.tex
Chapter 4.
[25
] [26] [27] [28]) [29] [30]
\openout2 = `interspeech_2018/interspeech2018.aux'.
(./interspeech_2018/interspeech2018.tex
Chapter 5.
LaTeX Font Info: Try loading font information for OMS+txr on input line 6.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/omstxr.fd
File: omstxr.fd 2000/12/15 v3.1
)
LaTeX Font Info: Font shape `OMS/txr/m/n' in size <12> not available
(Font) Font shape `OMS/txsy/m/n' tried instead on input line 6.
[31
]) [32]
\openout2 = `RNMF/RNMF.aux'.
(./RNMF/RNMF.tex
Chapter 6.
[33
]
LaTeX Warning: No positions in optional float specifier.
Default added (so using `tbp') on input line 33.
LaTeX Warning: No positions in optional float specifier.
Default added (so using `tbp') on input line 48.
LaTeX Warning: No positions in optional float specifier.
Default added (so using `tbp') on input line 64.
LaTeX Warning: No positions in optional float specifier.
Default added (so using `tbp') on input line 80.
) [34] [35]pdfTeX warning (ext4): destination with the same identifier (name{pa
ge.34}) has been already used, duplicate ignored
<to be read again>
\relax
l.174 \chapter
{Supporting Material} [34
]
Appendix A.
pdfTeX warning (ext4): destination with the same identifier (name{page.35}) has
been already used, duplicate ignored
<to be read again>
\relax
l.179 \bibliography{NMF}
[35] [36
] (./mainrep.bbl
Underfull \hbox (badness 10000) in paragraph at lines 40--45
[]\T1/txr/m/n/12 J. Barker, R. Marxer, E. Vin-cent, and S. Watan-abe, ``The thi
rd
[]
Underfull \hbox (badness 2846) in paragraph at lines 40--45
\T1/txr/m/n/12 ‘CHiME’speech sep-a-ra-tion and recog-ni-tion chal-lenge: Da
taset, task
[]
[37
] [38] [39]) [40]
\openout2 = `pub.aux'.
(./pub.tex
LaTeX Font Info: Try loading font information for T1+txtt on input line 5.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/t1txtt.fd
File: t1txtt.fd 2000/12/15 v3.1
)) [41
]
\openout2 = `ack.aux'.
(./ack.tex
[42
]) [43
]
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 197.
Package atveryend Info: Empty hook `AfterLastShipout' on input line 197.
(./mainrep.aux (./dec.aux) (./abs.aux) (./intro/introduction.aux)
(./lit/literature.aux) (./rir/rir.aux) (./icassp_2017/icassp2017.aux)
(./interspeech_2018/interspeech2018.aux) (./RNMF/RNMF.aux) (./rnd/results.aux)
(./pub.aux) (./ack.aux))
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 197.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 197.
Package rerunfilecheck Info: File `mainrep.out' has not changed.
(rerunfilecheck) Checksum: 3C451B8A4898A229BA84572F54952FB4;2652.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 197.
)
Here is how much of TeX's memory you used:
9982 strings out of 494805
142894 string characters out of 6178000
244370 words of memory out of 5000000
12816 multiletter control sequences out of 15000+600000
116391 words of font info for 175 fonts, out of 8000000 for 9000
81 hyphenation exceptions out of 8191
36i,18n,51p,1958b,439s stack positions out of 5000i,500n,10000p,200000b,80000s
pdfTeX warning (dest): name{page.4} has been referenced but does not exist, r
eplaced by a fixed one
pdfTeX warning (dest): name{figure.3.4} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{figure.3.3} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{figure.3.2} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{figure.3.1} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{figure.1.2} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{figure.1.1} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{chapter.7} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{section.3.4} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.3.3} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.3.2} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.3.1} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{section.3.3} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.2.2} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.2.1} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{section.3.2} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.1.4} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.1.3} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.1.2} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{subsection.3.1.1} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{section.3.1} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{chapter.3} has been referenced but does not exist,
replaced by a fixed one
pdfTeX warning (dest): name{section.1.6} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{section.1.5} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{section.1.4} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{section.1.3} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{section.1.2} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{section.1.1} has been referenced but does not exist
, replaced by a fixed one
pdfTeX warning (dest): name{chapter.1} has been referenced but does not exist,
replaced by a fixed one
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/
texmf-dist/fonts/type1/public/txfonts/rtxi.pfb></usr/share/texlive/texmf-dist/f
onts/type1/public/txfonts/rtxmi.pfb></usr/share/texlive/texmf-dist/fonts/type1/
public/txfonts/rtxr.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/txfon
ts/t1xtt.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/txfonts/txex.pfb
></usr/share/texlive/texmf-dist/fonts/type1/public/txfonts/txsy.pfb></usr/share
/texlive/texmf-dist/fonts/type1/public/txfonts/txsyb.pfb></usr/share/texlive/te
xmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfb></usr/share/texlive/texmf-dist/fon
ts/type1/urw/palatino/uplbi8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/ur
w/times/utmb8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmbi8a
.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmr8a.pfb></usr/shar
e/texlive/texmf-dist/fonts/type1/urw/times/utmri8a.pfb></usr/share/texlive/texm
f-dist/fonts/type1/urw/zapfchan/uzcmi8a.pfb>
Output written on mainrep.pdf (49 pages, 298163 bytes).
PDF statistics:
818 PDF objects out of 1000 (max. 8388607)
740 compressed objects within 8 object streams
198 named destinations out of 1000 (max. 500000)
307 words of extra memory for PDF output out of 10000 (max. 10000000)