-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCorrelationComparison.log
More file actions
1291 lines (1036 loc) · 47.8 KB
/
CorrelationComparison.log
File metadata and controls
1291 lines (1036 loc) · 47.8 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
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.1415926-2.5-1.40.14 (MiKTeX 2.9) (preloaded format=pdflatex 2014.3.11) 11 MAR 2014 10:48
entering extended mode
**CorrelationComparison.tex
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\Corre
lationComparison.tex"
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, afrikaans, ancientgreek, ar
abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan, coptic,
croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish, french, ga
lician, german, german-x-2013-05-26, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, latin, latvian,
lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerman, n
german-x-2013-05-26, nynorsk, oriya, panjabi, pinyin, polish, portuguese, roman
ian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swissgerm
an, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, usengl
ishmax, welsh, loaded.
("D:\Program Files\MikTex2.9\tex\latex\tufte-latex\tufte-handout.cls"
Document Class: tufte-handout 2009/12/11 v3.5.0 Tufte-handout class
("D:\Program Files\MikTex2.9\tex\latex\tufte-latex\tufte-common.def"
File: tufte-common.def 2009/12/11 v3.5.0 Common code for the Tufte-LaTeX styles
("D:\Program Files\MikTex2.9\tex\latex\xkeyval\xkeyval.sty"
Package: xkeyval 2012/10/14 v2.6b package option processing (HA)
("D:\Program Files\MikTex2.9\tex\generic\xkeyval\xkeyval.tex"
\XKV@toks=\toks14
\XKV@tempa@toks=\toks15
\XKV@depth=\count79
File: xkeyval.tex 2012/10/14 v2.6b key=value parser (HA)
("D:\Program Files\MikTex2.9\tex\generic\xkeyval\keyval.tex")))
("D:\Program Files\MikTex2.9\tex\latex\xifthen\xifthen.sty"
Package: xifthen 2009/04/17 v1.3 Extended ifthen features
("D:\Program Files\MikTex2.9\tex\latex\misc\etex.sty"
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count80
)
("D:\Program Files\MikTex2.9\tex\latex\tools\calc.sty"
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count81
\calc@Bcount=\count82
\calc@Adimen=\dimen102
\calc@Bdimen=\dimen103
\calc@Askip=\skip41
\calc@Bskip=\skip42
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count83
\calc@Cskip=\skip43
)
("D:\Program Files\MikTex2.9\tex\latex\base\ifthen.sty"
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
("D:\Program Files\MikTex2.9\tex\latex\ifmtarg\ifmtarg.sty"
Package: ifmtarg 2009/09/02 v1.2a check for an empty argument
))
Class tufte-handout Info: Passing english to the `article' class..
Class tufte-handout Info: Loading the base class `article'.
("D:\Program Files\MikTex2.9\tex\latex\base\article.cls"
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
("D:\Program Files\MikTex2.9\tex\latex\base\size10.clo"
File: size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count84
\c@section=\count85
\c@subsection=\count86
\c@subsubsection=\count87
\c@paragraph=\count88
\c@subparagraph=\count89
\c@figure=\count90
\c@table=\count91
\abovecaptionskip=\skip44
\belowcaptionskip=\skip45
\bibindent=\dimen104
)
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\ifpdf.sty"
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
("D:\Program Files\MikTex2.9\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
("D:\Program Files\MikTex2.9\tex\latex\titlesec\titlesec.sty"
Package: titlesec 2011/12/15 v2.10.0 Sectioning titles
\ttl@box=\box26
\beforetitleunit=\skip46
\aftertitleunit=\skip47
\ttl@plus=\dimen105
\ttl@minus=\dimen106
\ttl@toksa=\toks16
\titlewidth=\dimen107
\titlewidthlast=\dimen108
\titlewidthfirst=\dimen109
)
("D:\Program Files\MikTex2.9\tex\latex\titlesec\titletoc.sty"
Package: titletoc 2011/12/15 v1.6 TOC entries
\ttl@leftsep=\dimen110
)
("D:\Program Files\MikTex2.9\tex\latex\ms\ragged2e.sty"
Package: ragged2e 2009/05/21 v2.1 ragged2e Package (MS)
("D:\Program Files\MikTex2.9\tex\latex\ms\everysel.sty"
Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS)
)
\CenteringLeftskip=\skip48
\RaggedLeftLeftskip=\skip49
\RaggedRightLeftskip=\skip50
\CenteringRightskip=\skip51
\RaggedLeftRightskip=\skip52
\RaggedRightRightskip=\skip53
\CenteringParfillskip=\skip54
\RaggedLeftParfillskip=\skip55
\RaggedRightParfillskip=\skip56
\JustifyingParfillskip=\skip57
\CenteringParindent=\skip58
\RaggedLeftParindent=\skip59
\RaggedRightParindent=\skip60
\JustifyingParindent=\skip61
)
("D:\Program Files\MikTex2.9\tex\latex\geometry\geometry.sty"
Package: geometry 2010/09/12 v5.6 Page Geometry
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\ifvtex.sty"
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
\Gm@cnth=\count92
\Gm@cntv=\count93
\c@Gm@tempcnt=\count94
\Gm@bindingoffset=\dimen111
\Gm@wd@mp=\dimen112
\Gm@odd@mp=\dimen113
\Gm@even@mp=\dimen114
\Gm@layoutwidth=\dimen115
\Gm@layoutheight=\dimen116
\Gm@layouthoffset=\dimen117
\Gm@layoutvoffset=\dimen118
\Gm@dimlist=\toks17
("D:\Program Files\MikTex2.9\tex\latex\geometry\geometry.cfg"))
("D:\Program Files\MikTex2.9\tex\latex\changepage\changepage.sty"
Package: changepage 2009/10/20 v1.0c check page and change page layout
\c@cp@cntr=\count95
\cp@tempcnt=\count96
)
\@tufte@overhang=\skip62
\@tufte@fullwidth=\skip63
\@tufte@caption@fill=\skip64
("D:\Program Files\MikTex2.9\tex\latex\paralist\paralist.sty"
Package: paralist 2013/06/09 v2.4 Extended list environments
\pltopsep=\skip65
\plpartopsep=\skip66
\plitemsep=\skip67
\plparsep=\skip68
\pl@lab=\toks18
)
("D:\Program Files\MikTex2.9\tex\latex\textcase\textcase.sty"
Package: textcase 2004/10/07 v0.07 Text only upper/lower case changing (DPC)
)
("D:\Program Files\MikTex2.9\tex\latex\microtype\letterspace.sty"
Package: letterspace 2013/05/23 v2.5a Robust letterspacing (RS)
LaTeX Info: Redefining \lsstyle on input line 307.
LaTeX Info: Redefining \lslig on input line 308.
LaTeX Info: Redefining \textls on input line 333.
\MT@outer@kern=\dimen119
)
("D:\Program Files\MikTex2.9\tex\latex\setspace\setspace.sty"
Package: setspace 2011/12/19 v6.7a set line spacing
)
("D:\Program Files\MikTex2.9\tex\latex\natbib\natbib.sty"
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip69
\bibsep=\skip70
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count97
)
("D:\Program Files\MikTex2.9\tex\latex\natbib\bibentry.sty"
Package: bibentry 2007/10/30 1.5 (PWD)
)
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\Corre
lationComparison.bbl")
\c@@tufte@num@bibkeys=\count98
("D:\Program Files\MikTex2.9\tex\latex\sauerj\optparams.sty"
Package: optparams 2004/08/14 v0.9 multiple optional parameters in macros
)
\@tufte@sidenote@vertical@offset=\skip71
("D:\Program Files\MikTex2.9\tex\latex\placeins\placeins.sty"
Package: placeins 2005/04/18 v 2.2
)
\@tufte@margin@floatbox=\box27
\@tufte@figure@box=\box28
\@tufte@caption@box=\box29
\@tufte@caption@vertical@offset=\skip72
\@tufte@float@contents@width=\skip73
("D:\Program Files\MikTex2.9\tex\latex\psnfss\mathpazo.sty"
Package: mathpazo 2005/04/12 PSNFSS-v9.2a Palatino w/ Pazo Math (D.Puga, WaS)
\symupright=\mathgroup4
)
("D:\Program Files\MikTex2.9\tex\latex\psnfss\helvet.sty"
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
)
("D:\Program Files\MikTex2.9\tex\latex\bera\beramono.sty"
Package: beramono 2004/01/31 (WaS)
)
("D:\Program Files\MikTex2.9\tex\latex\base\fontenc.sty"
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
("D:\Program Files\MikTex2.9\tex\latex\base\t1enc.def"
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
("D:\Program Files\MikTex2.9\tex\latex\base\textcomp.sty"
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
("D:\Program Files\MikTex2.9\tex\latex\base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310.
Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 311.
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 312.
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 313.
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 314.
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 315.
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 316.
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 317.
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 318.
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 319.
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 320.
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 321.
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 322.
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 323.
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 324.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 325.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 326.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 327.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 328.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 329.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 330.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 331.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 332.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 333.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 334.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 335.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 336.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 337.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 338.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 339.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 340.
)
("D:\Program Files\MikTex2.9\tex\latex\fancyhdr\fancyhdr.sty"
\fancy@headwidth=\skip74
\f@ncyO@elh=\skip75
\f@ncyO@erh=\skip76
\f@ncyO@olh=\skip77
\f@ncyO@orh=\skip78
\f@ncyO@elf=\skip79
\f@ncyO@erf=\skip80
\f@ncyO@olf=\skip81
\f@ncyO@orf=\skip82
)
("D:\Program Files\MikTex2.9\tex\latex\xcolor\xcolor.sty"
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
("D:\Program Files\MikTex2.9\tex\latex\00miktex\color.cfg"
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Package option `usenames' ignored on input line 216.
Package xcolor Info: Driver file: pdftex.def on input line 225.
("D:\Program Files\MikTex2.9\tex\latex\pdftex-def\pdftex.def"
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count99
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
("D:\Program Files\MikTex2.9\tex\latex\graphics\dvipsnam.def"
File: dvipsnam.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
)
("D:\Program Files\MikTex2.9\tex\latex\xcolor\svgnam.def"
File: svgnam.def 2007/01/21 v2.11 Predefined colors according to SVG 1.1 (UK)
))
\langwohyphens=\language69
("D:\Program Files\MikTex2.9\tex\latex\tools\multicol.sty"
Package: multicol 2011/06/27 v1.7a multicolumn formatting (FMi)
\c@tracingmulticols=\count100
\mult@box=\box30
\multicol@leftmargin=\dimen120
\c@unbalance=\count101
\c@collectmore=\count102
\doublecol@number=\count103
\multicoltolerance=\count104
\multicolpretolerance=\count105
\full@width=\dimen121
\page@free=\dimen122
\premulticols=\dimen123
\postmulticols=\dimen124
\multicolsep=\skip83
\multicolbaselineskip=\skip84
\partial@page=\box31
\last@line=\box32
\mult@rightbox=\box33
\mult@grightbox=\box34
\mult@gfirstbox=\box35
\mult@firstbox=\box36
\@tempa=\box37
\@tempa=\box38
\@tempa=\box39
\@tempa=\box40
\@tempa=\box41
\@tempa=\box42
\@tempa=\box43
\@tempa=\box44
\@tempa=\box45
\@tempa=\box46
\@tempa=\box47
\@tempa=\box48
\@tempa=\box49
\@tempa=\box50
\@tempa=\box51
\@tempa=\box52
\@tempa=\box53
\c@columnbadness=\count106
\c@finalcolumnbadness=\count107
\last@try=\dimen125
\multicolovershoot=\dimen126
\multicolundershoot=\dimen127
\mult@nat@firstbox=\box54
\colbreak@box=\box55
\multicol@sort@counter=\count108
)))
("D:\Program Files\MikTex2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("D:\Program Files\MikTex2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("D:\Program Files\MikTex2.9\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("D:\Program Files\MikTex2.9\tex\latex\00miktex\graphics.cfg"
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 91.
)
\Gin@req@height=\dimen128
\Gin@req@width=\dimen129
)
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\frame
d.sty"
Package: framed 2007/10/04 v 0.95: framed or shaded text with page breaks
\fb@frw=\dimen130
\fb@frh=\dimen131
\FrameRule=\dimen132
\FrameSep=\dimen133
) ("D:\Program Files\MikTex2.9\tex\latex\base\alltt.sty"
Package: alltt 1997/06/16 v2.0g defines alltt environment
)
("D:\Program Files\MikTex2.9\tex\latex\psnfss\charter.sty"
Package: charter 2005/04/12 PSNFSS-v9.2a (P.Dyballa)
)
("D:\Program Files\MikTex2.9\tex\latex\base\inputenc.sty"
Package: inputenc 2008/03/30 v1.1d Input encoding file
\inpenc@prehook=\toks19
\inpenc@posthook=\toks20
("D:\Program Files\MikTex2.9\tex\latex\base\latin9.def"
File: latin9.def 2008/03/30 v1.1d Input encoding file
))
("D:\Program Files\MikTex2.9\tex\generic\babel\babel.sty"
Package: babel 2008/07/08 v3.8m The Babel package
*************************************
* Local config file bblopts.cfg used
*
("D:\Program Files\MikTex2.9\tex\latex\00miktex\bblopts.cfg"
File: bblopts.cfg 2006/07/31 v1.0 MiKTeX 'babel' configuration
)
("D:\Program Files\MikTex2.9\tex\generic\babel\english.ldf"
Language: english 2005/03/30 v3.3o English support from the babel system
("D:\Program Files\MikTex2.9\tex\generic\babel\babel.def"
File: babel.def 2008/07/08 v3.8m Babel common definitions
\babel@savecnt=\count109
\U@D=\dimen134
)
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
))
("D:\Program Files\MikTex2.9\tex\latex\amsmath\amsmath.sty"
Package: amsmath 2013/01/14 v2.14 AMS math features
\@mathmargin=\skip85
For additional information on amsmath, use the `?' option.
("D:\Program Files\MikTex2.9\tex\latex\amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01
("D:\Program Files\MikTex2.9\tex\latex\amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks21
\ex@=\dimen135
))
("D:\Program Files\MikTex2.9\tex\latex\amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen136
)
("D:\Program Files\MikTex2.9\tex\latex\amsmath\amsopn.sty"
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count110
LaTeX Info: Redefining \frac on input line 210.
\uproot@=\count111
\leftroot@=\count112
LaTeX Info: Redefining \overline on input line 306.
\classnum@=\count113
\DOTSCASE@=\count114
LaTeX Info: Redefining \ldots on input line 378.
LaTeX Info: Redefining \dots on input line 381.
LaTeX Info: Redefining \cdots on input line 466.
\Mathstrutbox@=\box56
\strutbox@=\box57
\big@size=\dimen137
LaTeX Font Info: Redeclaring font encoding OML on input line 566.
LaTeX Font Info: Redeclaring font encoding OMS on input line 567.
\macc@depth=\count115
\c@MaxMatrixCols=\count116
\dotsspace@=\muskip10
\c@parentequation=\count117
\dspbrk@lvl=\count118
\tag@help=\toks22
\row@=\count119
\column@=\count120
\maxfields@=\count121
\andhelp@=\toks23
\eqnshift@=\dimen138
\alignsep@=\dimen139
\tagshift@=\dimen140
\tagwidth@=\dimen141
\totwidth@=\dimen142
\lineht@=\dimen143
\@envbody=\toks24
\multlinegap=\skip86
\multlinetaggap=\skip87
\mathdisplay@stack=\toks25
LaTeX Info: Redefining \[ on input line 2665.
LaTeX Info: Redefining \] on input line 2666.
)
("D:\Program Files\MikTex2.9\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\hobsub-hyperref.sty"
Package: hobsub-hyperref 2012/04/25 v1.12 Bundle oberdiek, subset hyperref (HO)
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\hobsub-generic.sty"
Package: hobsub-generic 2012/04/25 v1.12 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/04/25 v1.12 Construct package bundles (HO)
Package hobsub Info: Skipping package `infwarerr' (already loaded).
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
Package hobsub Info: Skipping package `ifvtex' (already loaded).
Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
)
Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
Package: hopatch 2011/06/24 v1.1 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
)
("D:\Program Files\MikTex2.9\tex\latex\oberdiek\auxhook.sty"
Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
)
("D:\Program Files\MikTex2.9\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen144
\Hy@linkcounter=\count122
\Hy@pagecounter=\count123
("D:\Program Files\MikTex2.9\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count124
("D:\Program Files\MikTex2.9\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `hyperfootnotes' set `false' on input line 4319.
Package hyperref Info: Option `unicode' set `true' on input line 4319.
("D:\Program Files\MikTex2.9\tex\latex\hyperref\puenc.def"
File: puenc.def 2012/11/06 v6.83m Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Option `pdfusetitle' set `true' on input line 4319.
Package hyperref Info: Option `bookmarks' set `true' on input line 4319.
Package hyperref Info: Option `bookmarksnumbered' set `false' on input line 431
9.
Package hyperref Info: Option `bookmarksopen' set `false' on input line 4319.
Package hyperref Info: Option `breaklinks' set `false' on input line 4319.
Package hyperref Info: Option `colorlinks' set `true' on input line 4319.
Package hyperref Info: Hyper figures OFF on input line 4443.
Package hyperref Info: Link nesting OFF on input line 4448.
Package hyperref Info: Hyper index ON on input line 4451.
Package hyperref Info: Plain pages OFF on input line 4458.
Package hyperref Info: Backreferencing OFF on input line 4463.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4688.
\c@Hy@tempcnt=\count125
("D:\Program Files\MikTex2.9\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 5041.
\XeTeXLinkMargin=\dimen145
\Fld@menulength=\count126
\Field@Width=\dimen146
\Fld@charsize=\dimen147
Package hyperref Info: Hyper figures OFF on input line 6295.
Package hyperref Info: Link nesting OFF on input line 6300.
Package hyperref Info: Hyper index ON on input line 6303.
Package hyperref Info: backreferencing OFF on input line 6310.
Package hyperref Info: Link coloring ON on input line 6313.
Package hyperref Info: Link coloring with OCG OFF on input line 6320.
Package hyperref Info: PDF/A mode OFF on input line 6325.
LaTeX Info: Redefining \ref on input line 6365.
LaTeX Info: Redefining \pageref on input line 6369.
\Hy@abspage=\count127
\c@Item=\count128
)
Package hyperref Message: Driver (autodetected): hpdftex.
("D:\Program Files\MikTex2.9\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX
\Fld@listcount=\count129
\c@bookmark@seq@number=\count130
("D:\Program Files\MikTex2.9\tex\latex\oberdiek\rerunfilecheck.sty"
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip88
)
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\afterassignment' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\f@size' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\afterassignment' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\f@baselineskip' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\f@linespread' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<let>-command' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\baselinestretch' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\font@name' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\T1/cmr/m/n/10' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\\' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\noindent' on input line 74.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\afterassignment' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\f@size' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\afterassignment' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\f@baselineskip' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\f@linespread' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<let>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\baselinestretch' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\font@name' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\T1/cmr/m/n/10' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\abovedisplayskip' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\abovedisplayshortskip' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\z@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\belowdisplayshortskip' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\p@' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\<def>-command' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\leftmargin' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\belowdisplayskip' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\abovedisplayskip' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\\' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\noindent' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\\' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\noindent' on input line 77.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\\' on input line 77.
("D:\Program Files\MikTex2.9\tex\latex\upquote\upquote.sty"
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
)
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\Corre
lationComparison.aux")
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 89.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 89.
("D:\Program Files\MikTex2.9\tex\latex\base\ts1cmr.fd"
File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 89.
LaTeX Font Info: ... okay on input line 89.
LaTeX Font Info: Try loading font information for T1+bch on input line 89.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\t1bch.fd"
File: t1bch.fd 2004/10/18 font definitions for T1/bch.
)
ABD: EverySelectfont initializing macros
LaTeX Info: Redefining \selectfont on input line 89.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: letterpaper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside asymmetric
* h-part:(L,W,R)=(72.26999pt, 312.0pt, 230.02501pt)
* v-part:(T,H,B)=(72.26999pt, 616.0pt, 106.7pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=312.0pt
* \textheight=616.0pt
* \oddsidemargin=0.0pt
* \evensidemargin=0.0pt
* \topmargin=-42.0pt
* \headheight=14.0pt
* \headsep=28.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=144.0pt
* \marginparsep=24.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
("D:\Program Files\MikTex2.9\tex\context\base\supp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count131
\scratchdimen=\dimen148
\scratchbox=\box58
\nofMPsegments=\count132
\nofMParguments=\count133
\everyMPshowfont=\toks26
\MPscratchCnt=\count134
\MPscratchDim=\dimen149
\MPnumerator=\count135
\makeMPintoPDFobject=\count136
\everyMPtoPDFconversion=\toks27
)
\AtBeginShipoutBox=\box59
Package hyperref Info: Link coloring ON on input line 89.
("D:\Program Files\MikTex2.9\tex\latex\hyperref\nameref.sty"
Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section
("D:\Program Files\MikTex2.9\tex\generic\oberdiek\gettitlestring.sty"
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count137
)
LaTeX Info: Redefining \ref on input line 89.
LaTeX Info: Redefining \pageref on input line 89.
LaTeX Info: Redefining \nameref on input line 89.
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\Corre
lationComparison.out")
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\Corre
lationComparison.out")
\@outlinefile=\write3
LaTeX Font Info: Try loading font information for T1+phv on input line 92.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\t1phv.fd"
File: t1phv.fd 2001/06/04 scalable font definitions for T1/phv.
)
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 8.99994pt on input line 92.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 16.19989pt on input line 92.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 8.09995pt on input line 92.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 32.39978pt on input line 92.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 18.66588pt on input line 92.
LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 12.59991pt on input line 92.
[1
{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map}]
("C:\Users\mclark19\Documents\CSR\Technical Reports\CorrelationComparison\Corre
lationComparison.toc")
\tf@toc=\write4
[2
]
LaTeX Warning: Marginpar on page 3 moved.
[3]
LaTeX Font Info: Try loading font information for OT1+pplx on input line 111
.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\ot1pplx.fd"
File: ot1pplx.fd 2004/09/06 font definitions for OT1/pplx.
)
LaTeX Font Info: Try loading font information for OML+zplm on input line 111
.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\omlzplm.fd"
File: omlzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OML/zplm.
)
LaTeX Font Info: Try loading font information for OMS+zplm on input line 111
.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\omszplm.fd"
File: omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm.
)
LaTeX Font Info: Try loading font information for OMX+zplm on input line 111
.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\omxzplm.fd"
File: omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm.
)
LaTeX Font Info: Try loading font information for OT1+zplm on input line 111
.
("D:\Program Files\MikTex2.9\tex\latex\psnfss\ot1zplm.fd"
File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm.
)
LaTeX Warning: Marginpar on page 4 moved.