-
Notifications
You must be signed in to change notification settings - Fork 3
/
previewbook.txt
2648 lines (1973 loc) · 89.5 KB
/
previewbook.txt
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-1.40.11 (MiKTeX 2.9) (preloaded format=pdflatex 2011.7.31) 10 DEC 2012 20:34
entering extended mode
**previewbook.tex
("F:\Book- Spatial Capture Recapture\scrbook\previewbook.tex"
LaTeX2e <2009/09/24>
Babel <v3.8l> 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-2009-06-19, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin, lat
vian, lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerm
an, ngerman-x-2009-06-19, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
romanian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swis
sgerman, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, u
senglishmax, welsh, loaded.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\book.cls"
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\bk10.clo"
File: bk10.clo 2007/10/19 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
)
("F:\Book- Spatial Capture Recapture\scrbook\elsst-book.sty"
File: elsst-book.sty 2005/05/05Elsevier S&T 'book' style (VS)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\float\float.sty"
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count88
\float@exts=\toks14
\float@box=\box26
\@float@everytoks=\toks15
\@floatcapt=\box27
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ams\math\amsmath.sty"
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ams\math\amstext.sty"
Package: amstext 2000/06/29 v2.01
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ams\math\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks16
\ex@=\dimen103
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ams\math\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen104
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ams\math\amsopn.sty"
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count89
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count90
\leftroot@=\count91
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count92
\DOTSCASE@=\count93
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box28
\strutbox@=\box29
\big@size=\dimen105
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count94
\c@MaxMatrixCols=\count95
\dotsspace@=\muskip10
\c@parentequation=\count96
\dspbrk@lvl=\count97
\tag@help=\toks17
\row@=\count98
\column@=\count99
\maxfields@=\count100
\andhelp@=\toks18
\eqnshift@=\dimen106
\alignsep@=\dimen107
\tagshift@=\dimen108
\tagwidth@=\dimen109
\totwidth@=\dimen110
\lineht@=\dimen111
\@envbody=\toks19
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsfonts\amsfonts.sty"
Package: amsfonts 2009/06/22 v3.00 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 96.
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\keyval.sty"
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks21
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Program Files (x86)\MiKTeX 2.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.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\pdftex-def\pdftex.def"
File: pdftex.def 2011/04/25 v0.06b Graphics/color for pdfTeX
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/message (HO)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2011/04/18 v1.20 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count101
))
\Gin@req@height=\dimen112
\Gin@req@width=\dimen113
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\lineno\lineno.sty"
Package: lineno 2005/11/02 line numbers on paragraphs v4.41
\linenopenalty=\count102
\output=\toks22
\linenoprevgraf=\count103
\linenumbersep=\dimen114
\linenumberwidth=\dimen115
\c@linenumber=\count104
\c@pagewiselinenumber=\count105
\c@LN@truepage=\count106
\c@internallinenumber=\count107
\c@internallinenumbers=\count108
\quotelinenumbersep=\dimen116
\bframerule=\dimen117
\bframesep=\dimen118
\bframebox=\box30
LaTeX Info: Redefining \\ on input line 3056.
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\natbib\natbib.sty"
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip46
\bibsep=\skip47
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count109
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2011/04/17 v6.82g Hypertext links for LaTeX
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\hobsub-hyperref.sty"
Package: hobsub-hyperref 2011/04/23 v1.4 Bundle oberdiek, subset hyperref (HO)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\hobsub-generic.sty"
Package: hobsub-generic 2011/04/23 v1.4 Bundle oberdiek, subset generic (HO)
Package: hobsub 2011/04/23 v1.4 Subsetting bundle oberdiek (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: ifvtex 2010/03/01 v1.5 Switches for detecting VTeX and its modes (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
Package: etexcmds 2011/02/16 v1.5 Prefix for e-TeX command names (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 2011/04/07 v1.13 Key value parser (HO)
Package: kvdefinekeys 2011/04/07 v1.3 Defining keys (HO)
Package: pdftexcmds 2011/04/22 v0.16 Utilities 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/04/04 v1.12 Provides string conversions (HO)
Package: bigintcalc 2011/01/30 v1.2 Expandable big integer calculations (HO)
Package: bitset 2011/01/30 v1.1 Data type bit set (HO)
Package: uniquecounter 2011/01/30 v1.2 Provides 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/01/30 v1.0 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/04/23 v1.7 Hooks at very end of document (HO)
Package atveryend Info: \enddocument detected (standard).
Package: atbegshi 2011/01/30 v1.15 At begin shipout hook (HO)
Package: refcount 2010/12/01 v3.2 Data extraction from references (HO)
Package: hycolor 2011/01/30 v1.7 Color options of hyperref/bookmark (HO)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2010/12/23 v3.10 Keyval support for LaTeX options (HO)
)
\@linkdim=\dimen119
\Hy@linkcounter=\count110
\Hy@pagecounter=\count111
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2011/04/17 v6.82g Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count112
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Hyper figures OFF on input line 4026.
Package hyperref Info: Link nesting OFF on input line 4031.
Package hyperref Info: Hyper index ON on input line 4034.
Package hyperref Info: Plain pages OFF on input line 4041.
Package hyperref Info: Backreferencing OFF on input line 4046.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4264.
\c@Hy@tempcnt=\count113
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\ltxmisc\url.sty"
\Urlmuskip=\muskip11
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4617.
\Fld@menulength=\count114
\Field@Width=\dimen120
\Fld@charsize=\dimen121
Package hyperref Info: Hyper figures OFF on input line 5701.
Package hyperref Info: Link nesting OFF on input line 5706.
Package hyperref Info: Hyper index ON on input line 5709.
Package hyperref Info: backreferencing OFF on input line 5716.
Package hyperref Info: Link coloring OFF on input line 5721.
Package hyperref Info: Link coloring with OCG OFF on input line 5726.
Package hyperref Info: PDF/A mode OFF on input line 5731.
LaTeX Info: Redefining \ref on input line 5771.
LaTeX Info: Redefining \pageref on input line 5775.
\Hy@abspage=\count115
\c@Item=\count116
\c@Hfootnote=\count117
)
Package hyperref Message: Driver (autodetected): hpdftex.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2011/04/17 v6.82g Hyperref driver for pdfTeX
\Fld@listcount=\count118
\c@bookmark@seq@number=\count119
("C:\Program Files (x86)\MiKTeX 2.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=\skip48
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\verbatim.sty"
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks23
\verbatim@line=\toks24
\verbatim@in@stream=\read1
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\soul\soul.sty"
Package: soul 2003/11/17 v2.4 letterspacing/underlining (mf)
\SOUL@word=\toks25
\SOUL@lasttoken=\toks26
\SOUL@cmds=\toks27
\SOUL@buffer=\toks28
\SOUL@token=\toks29
\SOUL@spaceskip=\skip49
\SOUL@ttwidth=\dimen122
\SOUL@uldp=\dimen123
\SOUL@ulht=\dimen124
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\color.sty"
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\00miktex\color.cfg"
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\fancyvrb\fancyvrb.sty"
Package: fancyvrb 2008/02/07
Style option: `fancyvrb' v2.7a, with DG/SPQR fixes, and firstline=lastline fix
<2008/02/07> (tvz)
\FV@CodeLineNo=\count120
\FV@InFile=\read2
\FV@TabBox=\box31
\c@FancyVerbLine=\count121
\FV@StepNumber=\count122
\FV@OutFile=\write3
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\makeidx.sty"
Package: makeidx 2000/03/29 v1.0m Standard LaTeX package
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\bm.sty"
Package: bm 2004/02/26 v1.1c Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup6
\symboldletters=\mathgroup7
\symboldsymbols=\mathgroup8
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 138.
LaTeX Info: Redefining \bm on input line 204.
)
\@indexfile=\write4
Writing index file previewbook.idx
\@float@every@algorithm=\toks30
\c@algorithm=\count123
\@float@every@panel=\toks31
\c@panel=\count124
("F:\Book- Spatial Capture Recapture\scrbook\previewbook.aux"
LaTeX Warning: Label `modeling.eq.like' multiply defined.
LaTeX Warning: Label `modeling.eq.like' multiply defined.
LaTeX Warning: Label `covariates.tab.SCR0exp' multiply defined.
LaTeX Warning: Label `scr0.eq.norm' multiply defined.
)
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 41.
LaTeX Font Info: ... okay on input line 41.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 41.
LaTeX Font Info: ... okay on input line 41.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 41.
LaTeX Font Info: ... okay on input line 41.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 41.
LaTeX Font Info: ... okay on input line 41.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 41.
LaTeX Font Info: ... okay on input line 41.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 41.
LaTeX Font Info: ... okay on input line 41.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 41.
LaTeX Font Info: ... okay on input line 41.
("C:\Program Files (x86)\MiKTeX 2.9\tex\context\base\supp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count125
\scratchdimen=\dimen125
\scratchbox=\box32
\nofMPsegments=\count126
\nofMParguments=\count127
\everyMPshowfont=\toks32
\MPscratchCnt=\count128
\MPscratchDim=\dimen126
\MPnumerator=\count129
\makeMPintoPDFobject=\count130
\everyMPtoPDFconversion=\toks33
)
\AtBeginShipoutBox=\box33
Package hyperref Info: Link coloring OFF on input line 41.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\nameref.sty"
Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\gettitlestring.sty"
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count131
)
LaTeX Info: Redefining \ref on input line 41.
LaTeX Info: Redefining \pageref on input line 41.
LaTeX Info: Redefining \nameref on input line 41.
("F:\Book- Spatial Capture Recapture\scrbook\previewbook.out")
("F:\Book- Spatial Capture Recapture\scrbook\previewbook.out")
\@outlinefile=\write5
LaTeX Font Warning: Font shape `OT1/cmss/m/n' in size <28> not available
(Font) size <24.88> substituted on input line 61.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <28> not available
(Font) size <24.88> substituted on input line 61.
LaTeX Font Warning: Font shape `OT1/cmss/m/n' in size <20> not available
(Font) size <20.74> substituted on input line 61.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <20> not available
(Font) size <20.74> substituted on input line 61.
[1
{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map}] [2
]
("F:\Book- Spatial Capture Recapture\scrbook\previewbook.toc"
LaTeX Font Info: Try loading font information for U+msa on input line 3.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsfonts\umsa.fd"
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 3.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsfonts\umsb.fd"
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
) [3] [4]
[5]
Overfull \hbox (4.69814pt too wide) in paragraph at lines 286--286
[] [][]\OT1/cmr/bx/n/10 SCR for Stratafied Pop-u-la-tions: Multi-sesssion and
Multi-site Data[] []
[]
[6] [7])
\tf@toc=\write6
[8] [9
] ("F:\Book- Spatial Capture Recapture\scrbook\Ch1/Ch1.tex"
[10
]
Chapter 1.
LaTeX Font Warning: Font shape `OT1/cmss/bx/n' in size <40> not available
(Font) size <24.88> substituted on input line 3.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <40> not available
(Font) size <24.88> substituted on input line 3.
[11] [12] [13]
LaTeX Font Info: Try loading font information for OMS+cmr on input line 189.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\omscmr.fd"
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 189.
Overfull \hbox (5.08405pt too wide) in paragraph at lines 199--207
[]\OT1/cmr/m/n/10 Formal in-fer-ence us-ing both clas-si-cal (fre-quen-tist, li
kelihood-based) and Bayesian
[]
[14]
Overfull \hbox (2.19507pt too wide) in paragraph at lines 262--296
\OT1/cmr/m/n/10 Considerable re-cent work has gone into the de-vel-op-ment of c
amera-trapping method-
[]
<Ch1/figs/wolverinetiger.png, id=1072, 514.92375pt x 186.6975pt>
File: Ch1/figs/wolverinetiger.png Graphic file (type png)
<use Ch1/figs/wolverinetiger.png>
Package pdftex.def Info: Ch1/figs/wolverinetiger.png used on input line 300.
(pdftex.def) Requested size: 361.34999pt x 131.0178pt.
Overfull \hbox (1.34999pt too wide) in paragraph at lines 300--301
[]
[]
Overfull \hbox (28.43921pt too wide) has occurred while \output is active
[] \OT1/cmss/m/n/9 LIONS AND TIGERS AND BEARS, OH MY: GENESIS OF SPATIAL CAPTUR
E-RECAPTURE DATA []
[]
[15 <F:/Book- Spatial Capture Recapture/scrbook/Ch1/figs/wolverinetiger.png (PN
G copy)>] <Ch1/figs/bearcat.png, id=1121, 645.41125pt x 263.98625pt>
File: Ch1/figs/bearcat.png Graphic file (type png)
<use Ch1/figs/bearcat.png>
Package pdftex.def Info: Ch1/figs/bearcat.png used on input line 334.
(pdftex.def) Requested size: 361.34999pt x 147.79906pt.
Overfull \hbox (1.34999pt too wide) in paragraph at lines 334--335
[]
[]
<Ch1/figs/beardog.png, id=1122, 646.415pt x 310.15875pt>
File: Ch1/figs/beardog.png Graphic file (type png)
<use Ch1/figs/beardog.png>
Package pdftex.def Info: Ch1/figs/beardog.png used on input line 349.
(pdftex.def) Requested size: 361.34999pt x 173.38008pt.
Overfull \hbox (1.34999pt too wide) in paragraph at lines 349--350
[]
[]
[16 <F:/Book- Spatial Capture Recapture/scrbook/Ch1/figs/bearcat.png (PNG copy)
>]
Underfull \vbox (badness 10000) has occurred while \output is active []
Overfull \hbox (28.43921pt too wide) has occurred while \output is active
[] \OT1/cmss/m/n/9 LIONS AND TIGERS AND BEARS, OH MY: GENESIS OF SPATIAL CAPTUR
E-RECAPTURE DATA []
[]
[17 <F:/Book- Spatial Capture Recapture/scrbook/Ch1/figs/beardog.png (PNG copy)
>] [18] [19] <Ch1/figs/hairsnares.png, id=1275, 393.47pt x 443.6575pt>
File: Ch1/figs/hairsnares.png Graphic file (type png)
<use Ch1/figs/hairsnares.png>
Package pdftex.def Info: Ch1/figs/hairsnares.png used on input line 659.
(pdftex.def) Requested size: 192.27963pt x 216.81pt.
[20] [21 <F:/Book- Spatial Capture Recapture/scrbook/Ch1/figs/hairsnares.png (
PNG copy)>] [22] [23] [24] [25] [26] [27] [28]
[29]) ("F:\Book- Spatial Capture Recapture\scrbook\Ch1b/Ch1b.tex" [30]
Chapter 2.
[31
] [32] [33] <Ch1b/figs/bin.png, id=1472, 505.89pt x 505.89pt>
File: Ch1b/figs/bin.png Graphic file (type png)
<use Ch1b/figs/bin.png>
Package pdftex.def Info: Ch1b/figs/bin.png used on input line 190.
(pdftex.def) Requested size: 289.08589pt x 289.08589pt.
Overfull \hbox (8.50954pt too wide) in paragraph at lines 209--237
[][]
[]
[34 <F:/Book- Spatial Capture Recapture/scrbook/Ch1b/figs/bin.png (PNG copy)>]
LaTeX Warning: Reference `stat.tab.pdfs' on page 35 undefined on input line 282
.
[35] [36] [37]
LaTeX Warning: Reference `stat.tab.pdfs' on page 38 undefined on input line 443
.
[38] [39]
LaTeX Warning: Characters dropped after `\end{verbatim}' on input line 600.
[40]
Underfull \vbox (badness 3492) has occurred while \output is active []
[41]
Overfull \hbox (6.27837pt too wide) in paragraph at lines 795--807
[]\OT1/cmr/m/n/10 Many of the pa-ram-e-ters of in-ter-est in capture-recapture
mod-els are probabilities---
[]
[42] [43] [44] [45] [46]
Overfull \hbox (28.49661pt too wide) in paragraph at lines 1080--1080
[] \OT1/cmtt/m/n/10 X=0 X=1 X=2 X=3 X=4 X=5 X=6 X=7 X=8 X=9 X=10 X=11
X=12 X=13 X=14[]
[]
Overfull \hbox (28.49661pt too wide) in paragraph at lines 1081--1081
[]\OT1/cmtt/m/n/10 0.18 0.14 0.09 0.05 0.05 0.07 0.09 0.10 0.09 0.06 0.04 0.02
0.01 0.00 0.00[]
[]
Overfull \hbox (7.4968pt too wide) in paragraph at lines 1102--1102
[]\OT1/cmtt/m/n/10 > XgivenY <- joint/matrix(margY, nrow(joint), ncol(joint), b
yrow=TRUE)[]
[]
[47] [48] [49]
Underfull \hbox (badness 10000) in paragraph at lines 1253--1256
[]
[50]
Overfull \hbox (3.82077pt too wide) in paragraph at lines 1341--1341
[]\OT1/cmtt/m/n/9 Home range center movement model observation model [dat
a summarization][]
[]
[51]
Overfull \hbox (22.72055pt too wide) in paragraph at lines 1382--1382
[] \OT1/cmtt/m/n/9 points(cbind(rnorm(N, s[,1], 0.05), rnorm(N, s[,2], 0.05)),
col="green",pch=20)[]
[]
<Ch1/figs/northingeasting.png, id=1622, 452.69125pt x 471.7625pt>
File: Ch1/figs/northingeasting.png Graphic file (type png)
<use Ch1/figs/northingeasting.png>
Package pdftex.def Info: Ch1/figs/northingeasting.png used on input line 1406.
(pdftex.def) Requested size: 208.04709pt x 216.81pt.
[52] [53 <F:/Book- Spatial Capture Recapture/scrbook/Ch1/figs/northingeasting.
png (PNG copy)>]
Overfull \hbox (14.33424pt too wide) in paragraph at lines 1491--1496
\OT1/cmr/m/n/10 with the search-encounter mod-els the full hi-er-ar-chi-cal mod
el is iden-ti-fied: $[\OML/cmm/m/it/10 y\OMS/cmsy/m/n/10 j\OT1/cmr/bx/n/10 u\OT
1/cmr/m/n/10 ][\OT1/cmr/bx/n/10 u\OMS/cmsy/m/n/10 j\OT1/cmr/bx/n/10 s\OT1/cmr/m
/n/10 ][\OT1/cmr/bx/n/10 s\OT1/cmr/m/n/10 ]$
[]
[54]) ("F:\Book- Spatial Capture Recapture\scrbook\Ch2-Bayes/Chapt-Bayes.tex"
[55] [56
]
Chapter 3.
[57] [58]
Overfull \hbox (7.4968pt too wide) in paragraph at lines 228--228
[]\OT1/cmtt/m/n/10 y<-rpois(n, exp(linpred)) # generate observations, y, from a
bove model[]
[]
[59] [60] [61] [62] [63] [64]
<Ch2-Bayes/figs/densityvsdetection.png, id=1778, 674.52pt x 673.51625pt>
File: Ch2-Bayes/figs/densityvsdetection.png Graphic file (type png)
<use Ch2-Bayes/figs/densityvsdetection.png>
Package pdftex.def Info: Ch2-Bayes/figs/densityvsdetection.png used on input li
ne 600.
(pdftex.def) Requested size: 180.93921pt x 180.67499pt.
[65 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/densityvsdetect
ion.png (PNG copy)>]
Overfull \hbox (0.38947pt too wide) in paragraph at lines 660--687
[]\OT1/cmr/m/n/10 There seems to be a pre-vail-ing view in sta-tis-ti-cal ecol-
ogy that clas-si-cal likelihood-
[]
Underfull \vbox (badness 2608) has occurred while \output is active []
[66]
[67]
Overfull \hbox (88.62pt too wide) in paragraph at lines 865--866
[]$[]$
[]
[68]
Overfull \hbox (1.30626pt too wide) in paragraph at lines 900--904
\OT1/cmr/m/n/10 The ba-sic strat-egy for con-struct-ing full-conditional dis-tr
i-bu-tions for de-vis-ing MCMC
[]
[69] [70] <Ch2-Bayes/figs/implied_prior.png, id=1861, 238.491pt x 238.491pt>
File: Ch2-Bayes/figs/implied_prior.png Graphic file (type png)
<use Ch2-Bayes/figs/implied_prior.png>
Package pdftex.def Info: Ch2-Bayes/figs/implied_prior.png used on input line 10
17.
(pdftex.def) Requested size: 238.49403pt x 238.49121pt.
[71 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/implied_prior.p
ng (PNG copy)>] [72] [73] [74]
LaTeX Font Info: Try loading font information for OMS+cmtt on input line 127
9.
LaTeX Font Info: No file OMScmtt.fd. on input line 1279.
LaTeX Font Warning: Font shape `OMS/cmtt/m/n' undefined
(Font) using `OMS/cmsy/m/n' instead
(Font) for symbol `textbraceleft' on input line 1279.
[75]
LaTeX Warning: Reference `chapt.app1' on page 76 undefined on input line 1361.
[76]
LaTeX Warning: Reference `' on page 77 undefined on input line 1374.
[77] [78] [79] [80] [81] [82]
Overfull \hbox (46.34528pt too wide) in paragraph at lines 1759--1759
[]\OT1/cmtt/m/n/9 plot(locs,pch=" ",xlim=range(locs[,1])+c(-.3,+.3),ylim=c(rang
e(locs[,2]) + c(-.6,.6)),[]
[]
<Ch2-Bayes/figs/pacounts.png, id=2027, 397.485pt x 289.08pt>
File: Ch2-Bayes/figs/pacounts.png Graphic file (type png)
<use Ch2-Bayes/figs/pacounts.png>
Package pdftex.def Info: Ch2-Bayes/figs/pacounts.png used on input line 1772.
(pdftex.def) Requested size: 273.27026pt x 198.7425pt.
[83 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/pacounts.png (P
NG copy)>]
Overfull \hbox (183.36868pt too wide) in paragraph at lines 1794--1794
[]\OT1/cmtt/m/n/9 plot(locs,pch=" ",xlim=range(locs[,1])+c(-.3,+.3),ylim=c(rang
e(locs[,2]) + c(-.6,.6)),axes=FALSE,xlab=" ",ylab=" ")[]
[]
<Ch2-Bayes/figs/paforest.png, id=2034, 397.485pt x 289.08pt>
File: Ch2-Bayes/figs/paforest.png Graphic file (type png)
<use Ch2-Bayes/figs/paforest.png>
Package pdftex.def Info: Ch2-Bayes/figs/paforest.png used on input line 1808.
(pdftex.def) Requested size: 273.27026pt x 198.7425pt.
[84 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/paforest.png (P
NG copy)>]
Overfull \hbox (17.9956pt too wide) in paragraph at lines 1897--1897
[] \OT1/cmtt/m/n/9 mean sd 2.5% 25% 50% 75%
97.5% Rhat n.eff[]
[]
Overfull \hbox (17.9956pt too wide) in paragraph at lines 1898--1898
[]\OT1/cmtt/m/n/9 beta0 3.152 0.025 3.103 3.135 3.152 3.168
3.199 1.001 4000[]
[]
Overfull \hbox (17.9956pt too wide) in paragraph at lines 1899--1899
[]\OT1/cmtt/m/n/9 beta1 -0.497 0.021 -0.537 -0.511 -0.497 -0.484
-0.456 1.001 4000[]
[]
Overfull \hbox (17.9956pt too wide) in paragraph at lines 1900--1900
[]\OT1/cmtt/m/n/9 deviance 1116.576 1.997 1115.000 1115.000 1116.000 1117.000 1
122.000 1.002 4000[]
[]
[85]
Overfull \hbox (22.96101pt too wide) in paragraph at lines 1944--1958
[]\OT1/cmr/m/n/9 We will as-sume that the two pa-ram-e-ters have dif-fuse nor-m
al pri-ors, say $[\OML/cmm/m/it/9 []\OT1/cmr/m/n/9 ] = [](0\OML/cmm/m/it/9 ; \
OT1/cmr/m/n/9 100)$
[]
Package hyperref Info: bookmark level for unknown panel defaults to 0 on input
line 2059.
[86] [87] <Ch2-Bayes/figs/poissonmcmc2.png, id=2063, 845.1575pt x 499.8675pt>
File: Ch2-Bayes/figs/poissonmcmc2.png Graphic file (type png)
<use Ch2-Bayes/figs/poissonmcmc2.png>
Package pdftex.def Info: Ch2-Bayes/figs/poissonmcmc2.png used on input line 208
1.
(pdftex.def) Requested size: 289.07782pt x 216.80753pt.
<Ch2-Bayes/figs/poissonmcmc3.png, id=2064, 674.52pt x 673.51625pt>
File: Ch2-Bayes/figs/poissonmcmc3.png Graphic file (type png)
<use Ch2-Bayes/figs/poissonmcmc3.png>
Package pdftex.def Info: Ch2-Bayes/figs/poissonmcmc3.png used on input line 209
3.
(pdftex.def) Requested size: 361.35352pt x 289.08221pt.
Overfull \hbox (1.35352pt too wide) in paragraph at lines 2093--2094
[]
[]
[88 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/poissonmcmc2.png
(PNG copy)>] [89 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/po
issonmcmc3.png (PNG copy)>] [90] [91] [92] [93]
<Ch2-Bayes/figs/mallard_gradient.png, id=2145, 505.89pt x 252.945pt>
File: Ch2-Bayes/figs/mallard_gradient.png Graphic file (type png)
<use Ch2-Bayes/figs/mallard_gradient.png>
Package pdftex.def Info: Ch2-Bayes/figs/mallard_gradient.png used on input line
2489.
(pdftex.def) Requested size: 361.35352pt x 180.67499pt.
Overfull \hbox (1.35352pt too wide) in paragraph at lines 2489--2490
[]
[]
LaTeX Warning: Reference `chapt.app1' on page 94 undefined on input line 2522.
[94]) ("F:\Book- Spatial Capture Recapture\scrbook\Ch3-Closed/Chapt-Closed.tex"
[95 <F:/Book- Spatial Capture Recapture/scrbook/Ch2-Bayes/figs/mallard_gradient
.png (PNG copy)>] [96
]
Chapter 4.
[97]
Package natbib Warning: Citation `royle_dorazio:2011' on page 98 undefined on i
nput line 85.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 93.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `subscript' on input line 93.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `math shift' on input line 93.
[98]
LaTeX Warning: Reference `glms' on page 99 undefined on input line 200.
[99] [100] [101] [102]
Underfull \vbox (badness 10000) has occurred while \output is active []
[103]
Package natbib Warning: Citation `royle_dorazio:2011' on page 104 undefined on
input line 639.
Overfull \hbox (37.8472pt too wide) in paragraph at lines 686--694
\OT1/cmr/m/n/9 counter fre-quen-cies, the aug-mented data are given by the vec-
tor of fre-quen-cies $(\OML/cmm/m/it/9 y[]; [] ; y[]; \OT1/cmr/m/n/9 0\OML/cmm/
m/it/9 ; \OT1/cmr/m/n/9 0\OML/cmm/m/it/9 ; [] ; \OT1/cmr/m/n/9 0)$
[]
[104] [105]
LaTeX Warning: Reference `chapt.js' on page 106 undefined on input line 763.
[106]
LaTeX Warning: Reference `closed.sec.secrguts' on page 107 undefined on input l
ine 834.
[107]
Package natbib Warning: Citation `converse_royle:2010' on page 108 undefined on
input line 878.
Package natbib Warning: Citation `royle_etal:2011ms' on page 108 undefined on i
nput line 878.
[108] <Ch3-Closed/figs/hairsnares.png, id=2369, 393.47pt x 443.6575pt>
File: Ch3-Closed/figs/hairsnares.png Graphic file (type png)
<use Ch3-Closed/figs/hairsnares.png>
Package pdftex.def Info: Ch3-Closed/figs/hairsnares.png used on input line 904.
(pdftex.def) Requested size: 164.76994pt x 216.8051pt.
[109 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/hairsnares.pn
g (PNG copy)>]
Overfull \hbox (22.72055pt too wide) in paragraph at lines 968--968
[] \OT1/cmtt/m/n/9 n.iter=2000, n.burnin=1000, n.thin=1,debug=TRUE,workin
g.directory=getwd())[]
[]
[110] <Ch3-Closed/figs/bufferedCH.png, id=2391, 252.945pt x 252.945pt>
File: Ch3-Closed/figs/bufferedCH.png Graphic file (type png)
<use Ch3-Closed/figs/bufferedCH.png>
Package pdftex.def Info: Ch3-Closed/figs/bufferedCH.png used on input line 1039
.
(pdftex.def) Requested size: 216.81442pt x 216.81442pt.
[111] [112 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/buffere
dCH.png (PNG copy)>] [113] [114]
<Ch3-Closed/figs/quadrat.png, id=2461, 493.845pt x 491.8375pt>
File: Ch3-Closed/figs/quadrat.png Graphic file (type png)
<use Ch3-Closed/figs/quadrat.png>
Package pdftex.def Info: Ch3-Closed/figs/quadrat.png used on input line 1230.
(pdftex.def) Requested size: 217.69183pt x 216.81pt.
[115 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/quadrat.png (
PNG copy)>] [116] [117]
<Ch3-Closed/figs/bear-modelMh-post.png, id=2504, 252.945pt x 252.945pt>
File: Ch3-Closed/figs/bear-modelMh-post.png Graphic file (type png)
<use Ch3-Closed/figs/bear-modelMh-post.png>
Package pdftex.def Info: Ch3-Closed/figs/bear-modelMh-post.png used on input li
ne 1453.
(pdftex.def) Requested size: 252.94823pt x 252.94823pt.
Underfull \vbox (badness 10000) has occurred while \output is active []
[118 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/bear-modelMh-
post.png (PNG copy)>] [119] [120] [121]
<Ch3-Closed/figs/bear_spiderplot.png, id=2573, 252.945pt x 252.945pt>
File: Ch3-Closed/figs/bear_spiderplot.png Graphic file (type png)
<use Ch3-Closed/figs/bear_spiderplot.png>
Package pdftex.def Info: Ch3-Closed/figs/bear_spiderplot.png used on input line
1959.
(pdftex.def) Requested size: 252.94823pt x 252.94823pt.
[122] [123 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/bear_sp
iderplot.png (PNG copy)>]
Overfull \hbox (65.24506pt too wide) in paragraph at lines 2006--2006
[]\OT1/cmtt/m/n/9 fit2 = bugs(data2, inits, params2, model.file="modelMcov.tx
t",working.directory=getwd(),[]
[]
[124] [125] [126]
LaTeX Warning: Reference `intro.tab.fdtests' on page 127 undefined on input lin
e 2200.
Underfull \vbox (badness 10000) has occurred while \output is active []
[127]
[128]
Overfull \hbox (1.34999pt too wide) in paragraph at lines 2342--2365
[]$
[]
LaTeX Warning: `h' float specifier changed to `ht'.
[129] <Ch3-Closed/figs/Erin_Zylstra_2.jpg, id=2662, 1040.688pt x 780.516pt>
File: Ch3-Closed/figs/Erin_Zylstra_2.jpg Graphic file (type jpg)
<use Ch3-Closed/figs/Erin_Zylstra_2.jpg>
Package pdftex.def Info: Ch3-Closed/figs/Erin_Zylstra_2.jpg used on input line
2447.
(pdftex.def) Requested size: 289.07224pt x 216.80417pt.
<Ch3-Closed/figs/tortoise.png, id=2663, 505.89pt x 505.89pt>
File: Ch3-Closed/figs/tortoise.png Graphic file (type png)
<use Ch3-Closed/figs/tortoise.png>
Package pdftex.def Info: Ch3-Closed/figs/tortoise.png used on input line 2455.
(pdftex.def) Requested size: 216.81056pt x 216.81056pt.
LaTeX Warning: `h' float specifier changed to `ht'.
[130] [131 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/Erin_Zyl
stra_2.jpg>]
Overfull \hbox (22.72055pt too wide) in paragraph at lines 2517--2517
[]\OT1/cmtt/m/n/9 fit = bugs(data, inits, params, model.file="dsamp.txt",workin
g.directory=getwd(),[]
[]
[132 <F:/Book- Spatial Capture Recapture/scrbook/Ch3-Closed/figs/tortoise.png (
PNG copy)>] [133]) [134] [135
]
("F:\Book- Spatial Capture Recapture\scrbook\Ch4-SCR0/Chapt-SCR0.tex" [136
]
Chapter 5.
[137] [138] [139]
<Ch4-SCR0/figs/det_functions.png, id=2743, 505.89pt x 325.215pt>
File: Ch4-SCR0/figs/det_functions.png Graphic file (type png)
<use Ch4-SCR0/figs/det_functions.png>
Package pdftex.def Info: Ch4-SCR0/figs/det_functions.png used on input line 260
.
(pdftex.def) Requested size: 309.16367pt x 198.7425pt.
[140 <F:/Book- Spatial Capture Recapture/scrbook/Ch4-SCR0/figs/det_functions.p
ng (PNG copy)>]
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <9> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 404.
[141] [142]
Overfull \hbox (30.44395pt too wide) in paragraph at lines 518--528
\OT1/cmr/m/n/9 In prac-tice it might make sense to think about the first com-po
-nent, i.e., $[]([]\OMS/cmsy/m/n/9 j[]\OT1/cmr/bx/n/9 x\OML/cmm/m/it/9 ; \OT1/c
mr/bx/n/9 s\OT1/cmr/m/n/9 )$
[]
[143] [144] [145]
<Ch4-SCR0/figs/binomialpoint.png, id=2793, 674.52pt x 673.51625pt>
File: Ch4-SCR0/figs/binomialpoint.png Graphic file (type png)
<use Ch4-SCR0/figs/binomialpoint.png>
Package pdftex.def Info: Ch4-SCR0/figs/binomialpoint.png used on input line 863
.
(pdftex.def) Requested size: 180.93921pt x 180.67499pt.
[146]
Underfull \vbox (badness 10000) has occurred while \output is active []
[147 <F:/Book- Spatial Capture Recapture/scrbook/Ch4-SCR0/figs/binomialpoint.p
ng (PNG copy)>] [148] [149] <Ch4-SCR0/figs/Mh_buffer.png, id=2832, 505.89pt x 1
80.675pt>
File: Ch4-SCR0/figs/Mh_buffer.png Graphic file (type png)
<use Ch4-SCR0/figs/Mh_buffer.png>
Package pdftex.def Info: Ch4-SCR0/figs/Mh_buffer.png used on input line 1118.
(pdftex.def) Requested size: 325.2197pt x 115.63159pt.
[150 <F:/Book- Spatial Capture Recapture/scrbook/Ch4-SCR0/figs/Mh_buffer.png (
PNG copy)>] [151] [152] [153] [154]
Overfull \hbox (3.82077pt too wide) in paragraph at lines 1417--1417
[]\OT1/cmtt/m/n/9 out <- bugs (data, inits, parameters, "SCR0a.txt", n.thin=nth
in, n.chains=nc,[]
[]
[155] [156] [157] [158] [159]
<Ch4-SCR0/figs/Wolverines_cameratrap.jpg, id=2929, 614.295pt x 794.97pt>
File: Ch4-SCR0/figs/Wolverines_cameratrap.jpg Graphic file (type jpg)
<use Ch4-SCR0/figs/Wolverines_cameratrap.jpg>
Package pdftex.def Info: Ch4-SCR0/figs/Wolverines_cameratrap.jpg used on input
line 1860.
(pdftex.def) Requested size: 231.25989pt x 304.99088pt.
[160] [161 <F:/Book- Spatial Capture Recapture/scrbook/Ch4-SCR0/figs/Wolverine