forked from ounihani/report
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.log
More file actions
972 lines (781 loc) · 33.7 KB
/
Copy pathMain.log
File metadata and controls
972 lines (781 loc) · 33.7 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
This is pdfTeX, Version 3.14159265-2.6-1.40.17 (MiKTeX 2.9.6210) (preloaded format=pdflatex 2017.2.12) 23 FEB 2017 00:41
entering extended mode
**./Main.tex
(Main.tex
LaTeX2e <2016/03/31> patch level 3
Babel <3.9r> and hyphenation patterns for 75 language(s) loaded.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\report.cls"
Document Class: report 2014/09/29 v1.4h Standard LaTeX document class
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\size10.clo"
File: size10.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
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\babel\babel.sty"
Package: babel 2016/04/23 3.9r The Babel package
*************************************
* Local config file bblopts.cfg used
*
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\arabi\bblopts.cfg"
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
babel
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\babel-english\english.ldf"
Language: english 2012/08/20 v3.3p English support from the babel system
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\babel\babel.def"
File: babel.def 2016/04/23 3.9r Babel common definitions
\babel@savecnt=\count88
\U@D=\dimen103
)
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\inputenc.sty"
Package: inputenc 2015/03/17 v1.2c Input encoding file
\inpenc@prehook=\toks14
\inpenc@posthook=\toks15
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\latin1.def"
File: latin1.def 2015/03/17 v1.2c Input encoding file
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2016/06/24 v6.83q Hypertext links for LaTeX
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\hobsub-hyperref.sty"
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
("C:\Program Files (x86)\MiKTeX 2.9\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 2016/05/14 v3.1 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 2016/05/21 v0.22 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)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
("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\auxhook.sty"
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
)
\@linkdim=\dimen104
\Hy@linkcounter=\count89
\Hy@pagecounter=\count90
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2016/06/24 v6.83q Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count91
("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 4486.
Package hyperref Info: Link nesting OFF on input line 4491.
Package hyperref Info: Hyper index ON on input line 4494.
Package hyperref Info: Plain pages OFF on input line 4501.
Package hyperref Info: Backreferencing OFF on input line 4506.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4735.
\c@Hy@tempcnt=\count92
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\url\url.sty"
\Urlmuskip=\muskip10
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5088.
\XeTeXLinkMargin=\dimen105
\Fld@menulength=\count93
\Field@Width=\dimen106
\Fld@charsize=\dimen107
Package hyperref Info: Hyper figures OFF on input line 6342.
Package hyperref Info: Link nesting OFF on input line 6347.
Package hyperref Info: Hyper index ON on input line 6350.
Package hyperref Info: backreferencing OFF on input line 6357.
Package hyperref Info: Link coloring OFF on input line 6362.
Package hyperref Info: Link coloring with OCG OFF on input line 6367.
Package hyperref Info: PDF/A mode OFF on input line 6372.
LaTeX Info: Redefining \ref on input line 6412.
LaTeX Info: Redefining \pageref on input line 6416.
\Hy@abspage=\count94
\c@Item=\count95
\c@Hfootnote=\count96
)
Package hyperref Message: Driver (autodetected): hpdftex.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2016/06/24 v6.83q Hyperref driver for pdfTeX
\Fld@listcount=\count97
\c@bookmark@seq@number=\count98
("C:\Program Files (x86)\MiKTeX 2.9\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=\skip43
)
Package hyperref Info: Option `colorlinks' set `true' on input line 20.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\fontenc.sty"
Package: fontenc 2016/06/19 v1.99m Standard LaTeX package
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\t1enc.def"
File: t1enc.def 2016/06/19 v1.99m Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 48.
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2016/07/10 v1.0t Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\trig.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Program Files (x86)\MiKTeX 2.9\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.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics-def\pdftex.def"
File: pdftex.def 2016/07/10 v0.06j Graphics/color for pdfTeX
\Gread@gobject=\count99
))
\Gin@req@height=\dimen108
\Gin@req@width=\dimen109
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\setspace\setspace.sty"
Package: setspace 2011/12/19 v6.7a set line spacing
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\varioref.sty"
Package: varioref 2016/02/16 v1.5c package for extended references (FMi)
\c@vrcnt=\count100
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\fancyhdr\fancyhdr.sty"
Package: fancyhdr 2016/09/06 3.8 Extensive control of page headers and footers
\fancy@headwidth=\skip44
\f@ncyO@elh=\skip45
\f@ncyO@erh=\skip46
\f@ncyO@olh=\skip47
\f@ncyO@orh=\skip48
\f@ncyO@elf=\skip49
\f@ncyO@erf=\skip50
\f@ncyO@olf=\skip51
\f@ncyO@orf=\skip52
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics\color.sty"
Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\graphics-cfg\color.cfg"
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\colortbl\colortbl.sty"
Package: colortbl 2012/02/13 v1.0a Color table columns (DPC)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\tools\array.sty"
Package: array 2014/10/28 v2.4c Tabular extension package (FMi)
\col@sep=\dimen110
\extrarowheight=\dimen111
\NC@list=\toks17
\extratabsurround=\skip53
\backup@length=\skip54
)
\everycr=\toks18
\minrowclearance=\skip55
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsmath\amsmath.sty"
Package: amsmath 2016/06/28 v2.15d AMS math features
\@mathmargin=\skip56
For additional information on amsmath, use the `?' option.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01 AMS text
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks19
\ex@=\dimen112
))
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen113
)
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\amsmath\amsopn.sty"
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count101
LaTeX Info: Redefining \frac on input line 199.
\uproot@=\count102
\leftroot@=\count103
LaTeX Info: Redefining \overline on input line 297.
\classnum@=\count104
\DOTSCASE@=\count105
LaTeX Info: Redefining \ldots on input line 394.
LaTeX Info: Redefining \dots on input line 397.
LaTeX Info: Redefining \cdots on input line 518.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen114
LaTeX Font Info: Redeclaring font encoding OML on input line 634.
LaTeX Font Info: Redeclaring font encoding OMS on input line 635.
\macc@depth=\count106
\c@MaxMatrixCols=\count107
\dotsspace@=\muskip11
\c@parentequation=\count108
\dspbrk@lvl=\count109
\tag@help=\toks20
\row@=\count110
\column@=\count111
\maxfields@=\count112
\andhelp@=\toks21
\eqnshift@=\dimen115
\alignsep@=\dimen116
\tagshift@=\dimen117
\tagwidth@=\dimen118
\totwidth@=\dimen119
\lineht@=\dimen120
\@envbody=\toks22
\multlinegap=\skip57
\multlinetaggap=\skip58
\mathdisplay@stack=\toks23
LaTeX Info: Redefining \[ on input line 2739.
LaTeX Info: Redefining \] on input line 2740.
)
("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=\count113
\float@exts=\toks24
\float@box=\box28
\@float@everytoks=\toks25
\@floatcapt=\box29
) (Main.aux
(Garde.aux) (Dedicaces.aux) (Remerciements.aux) (Introduction.aux)
(Chapitre1.aux
LaTeX Warning: Label `istic website' multiply defined.
LaTeX Warning: Label `istic website' multiply defined.
) (Chapitre2.aux
LaTeX Warning: Label `imag3' multiply defined.
LaTeX Warning: Label `imag3' multiply defined.
LaTeX Warning: Label `imag3' multiply defined.
LaTeX Warning: Label `Data extraction sequence diagram' multiply defined.
) (Chapitre3.aux) (chapitre4.aux
LaTeX Warning: Label `screenshot' multiply defined.
LaTeX Warning: Label `screenshot' multiply defined.
LaTeX Warning: Label `screenshot' multiply defined.
LaTeX Warning: Label `screenshot' multiply defined.
LaTeX Warning: Label `screenshot' multiply defined.
) (Conclusion.aux))
\openout1 = `Main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 50.
LaTeX Font Info: ... okay on input line 50.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 50.
LaTeX Font Info: ... okay on input line 50.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 50.
LaTeX Font Info: ... okay on input line 50.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 50.
LaTeX Font Info: ... okay on input line 50.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 50.
LaTeX Font Info: ... okay on input line 50.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 50.
LaTeX Font Info: ... okay on input line 50.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 50.
LaTeX Font Info: ... okay on input line 50.
\AtBeginShipoutBox=\box30
Package hyperref Info: Link coloring ON on input line 50.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\hyperref\nameref.sty"
Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section
("C:\Program Files (x86)\MiKTeX 2.9\tex\generic\oberdiek\gettitlestring.sty"
Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO)
)
\c@section@level=\count114
LaTeX Info: Redefining \Ref on input line 515.
)
LaTeX Info: Redefining \ref on input line 50.
LaTeX Info: Redefining \pageref on input line 50.
LaTeX Info: Redefining \nameref on input line 50.
(Main.out) (Main.out)
\@outlinefile=\write3
\openout3 = `Main.out'.
LaTeX Info: Redefining \Ref on input line 50.
("C:\Program Files (x86)\MiKTeX 2.9\tex\context\base\supp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count115
\scratchdimen=\dimen121
\scratchbox=\box31
\nofMPsegments=\count116
\nofMParguments=\count117
\everyMPshowfont=\toks26
\MPscratchCnt=\count118
\MPscratchDim=\dimen122
\MPnumerator=\count119
\makeMPintoPDFobject=\count120
\everyMPtoPDFconversion=\toks27
) ("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\oberdiek\epstopdf-base.sty"
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
("C:\Program Files (x86)\MiKTeX 2.9\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) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 456.
)
\openout2 = `Garde.aux'.
(Garde.tex <ucar.png, id=99, 150.5625pt x 93.34875pt>
File: ucar.png Graphic file (type png)
<use ucar.png>
Package pdftex.def Info: ucar.png used on input line 12.
(pdftex.def) Requested size: 85.35826pt x 52.92445pt.
<ISTIC.png, id=100, 117.43875pt x 57.21375pt>
File: ISTIC.png Graphic file (type png)
<use ISTIC.png>
Package pdftex.def Info: ISTIC.png used on input line 20.
(pdftex.def) Requested size: 85.35826pt x 41.58496pt.
<easytek2.jpg, id=102, 2007.5pt x 2007.5pt>
File: easytek2.jpg Graphic file (type jpg)
<use easytek2.jpg>
Package pdftex.def Info: easytek2.jpg used on input line 40.
(pdftex.def) Requested size: 142.25475pt x 56.88351pt.
[1
{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map} <./ucar.png> <./ISTIC.png>
<./easytek2.jpg>])
\openout2 = `Dedicaces.aux'.
(Dedicaces.tex) [1
]
\openout2 = `Remerciements.aux'.
(Remerciements.tex) [2
] (Main.toc)
\tf@toc=\write4
\openout4 = `Main.toc'.
[3
] (Main.lof)
\tf@lof=\write5
\openout5 = `Main.lof'.
[4
]
\openout2 = `Introduction.aux'.
(Introduction.tex)pdfTeX warning (ext4): destination with the same identifier
(name{page.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.61 \include{Introduction}
[1
]
\openout2 = `Chapitre1.aux'.
(Chapitre1.tex
Chapter 1.
LaTeX Font Info: Try loading font information for OMS+cmr on input line 11.
("C:\Program Files (x86)\MiKTeX 2.9\tex\latex\base\omscmr.fd"
File: omscmr.fd 2014/09/29 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 11.
<istic.jpg, id=218, 727.71875pt x 526.96875pt>
File: istic.jpg Graphic file (type jpg)
<use istic.jpg>
Package pdftex.def Info: istic.jpg used on input line 13.
(pdftex.def) Requested size: 284.52756pt x 206.03964pt.
[2
]
<sogefec.jpg, id=227, 727.71875pt x 526.96875pt>
File: sogefec.jpg Graphic file (type jpg)
<use sogefec.jpg>
Package pdftex.def Info: sogefec.jpg used on input line 22.
(pdftex.def) Requested size: 284.52756pt x 206.03964pt.
<jadal.jpg, id=229, 174.6525pt x 126.4725pt>
File: jadal.jpg Graphic file (type jpg)
<use jadal.jpg>
Package pdftex.def Info: jadal.jpg used on input line 29.
(pdftex.def) Requested size: 284.52756pt x 206.06729pt.
[3pdfTeX warning (ext4): destination with the same identifier (name{figure.1.1
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.33
pdfTeX warning (ext4): destination with the same identifier (name{figure.1
.2}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.33
<./istic.jpg> <./sogefec.jpg>] [4pdfTeX warning (ext4): destination with
the same identifier (name{figure.1.3}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.38 \newpage
<./jadal.jpg>]
Underfull \hbox (badness 10000) in paragraph at lines 47--52
[]
Underfull \hbox (badness 10000) in paragraph at lines 47--52
[]
) [5]
\openout2 = `Chapitre2.aux'.
(Chapitre2.tex
Chapter 2.
<image3.png, id=243, 453.19313pt x 217.5628pt>
File: image3.png Graphic file (type png)
<use image3.png>
Package pdftex.def Info: image3.png used on input line 9.
(pdftex.def) Requested size: 369.88582pt x 177.5694pt.
Overfull \hbox (24.88582pt too wide) in paragraph at lines 9--10
[][]
[]
[6
pdfTeX warning (ext4): destination with the same identifier (name{figure.2.1})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.20 \item \underline
{Last updated:} july , 18 , 2016 <./image3.png>]
<cnn_design.png, id=251, 288.3272pt x 511.15968pt>
File: cnn_design.png Graphic file (type png)
<use cnn_design.png>
Package pdftex.def Info: cnn_design.png used on input line 36.
(pdftex.def) Requested size: 284.52756pt x 504.4429pt.
[7] <cnn_push.png, id=258, 254.45062pt x 60.225pt>
File: cnn_push.png Graphic file (type png)
<use cnn_push.png>
Package pdftex.def Info: cnn_push.png used on input line 49.
(pdftex.def) Requested size: 284.52756pt x 67.34676pt.
[8pdfTeX warning (ext4): destination with the same identifier (name{figure.2.2
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.54
<./cnn_design.png>] [9pdfTeX warning (ext4): destination with the same id
entifier (name{figure.2.3}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.83 \newpage
<./cnn_push.png>]
<france24.png, id=271, 315.42844pt x 315.42844pt>
File: france24.png Graphic file (type png)
<use france24.png>
Package pdftex.def Info: france24.png used on input line 86.
(pdftex.def) Requested size: 199.16928pt x 199.16856pt.
<france24_popup.png, id=272, 227.34938pt x 404.26031pt>
File: france24_popup.png Graphic file (type png)
<use france24_popup.png>
Package pdftex.def Info: france24_popup.png used on input line 115.
(pdftex.def) Requested size: 284.52756pt x 505.941pt.
[10pdfTeX warning (ext4): destination with the same identifier (name{figure.2.
4}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.119
<./france24.png>] <france24_push.png, id=281, 244.66406pt x 42.1575pt>
File: france24_push.png Graphic file (type png)
<use france24_push.png>
Package pdftex.def Info: france24_push.png used on input line 125.
(pdftex.def) Requested size: 284.52756pt x 49.0275pt.
Underfull \hbox (badness 10000) in paragraph at lines 121--128
[]
[11pdfTeX warning (ext4): destination with the same identifier (name{figure.2.5
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.129
<./france24_popup.png>]
<france24_ui.png, id=287, 335.00156pt x 594.72188pt>
File: france24_ui.png Graphic file (type png)
<use france24_ui.png>
Package pdftex.def Info: france24_ui.png used on input line 135.
(pdftex.def) Requested size: 284.52756pt x 505.1167pt.
[12pdfTeX warning (ext4): destination with the same identifier (name{figure.2.6
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.140
<./france24_push.png>] [13pdfTeX warning (ext4): destination with the sa
me identifier (name{figure.2.7}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.154 \end{enumerate}
<./france24_ui.png>] [14]
<assbah.jpg, id=304, 250.9375pt x 157.58875pt>
File: assbah.jpg Graphic file (type jpg)
<use assbah.jpg>
Package pdftex.def Info: assbah.jpg used on input line 161.
(pdftex.def) Requested size: 199.16928pt x 125.08527pt.
Underfull \hbox (badness 10000) in paragraph at lines 181--183
[]
<assabah_news.png, id=305, 380.92313pt x 677.53125pt>
File: assabah_news.png Graphic file (type png)
<use assabah_news.png>
Package pdftex.def Info: assabah_news.png used on input line 192.
(pdftex.def) Requested size: 199.16928pt x 354.25153pt.
[15pdfTeX warning (ext4): destination with the same identifier (name{figure.2.8
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.197
<./assbah.jpg>] [16pdfTeX warning (ext4): destination with the same iden
tifier (name{figure.2.9}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.222 \item T
he application must communicate with the website database by u...
<./assabah_news.png>] <usecase1.png, id=319, 512.66531pt x 250.68657pt>
File: usecase1.png Graphic file (type png)
<use usecase1.png>
Package pdftex.def Info: usecase1.png used on input line 249.
(pdftex.def) Requested size: 369.88582pt x 180.86905pt.
Overfull \hbox (24.88582pt too wide) in paragraph at lines 249--250
[][]
[]
<usecase3.png, id=320, 453.19313pt x 216.81pt>
File: usecase3.png Graphic file (type png)
<use usecase3.png>
Package pdftex.def Info: usecase3.png used on input line 255.
(pdftex.def) Requested size: 369.88582pt x 176.95497pt.
Overfull \hbox (24.88582pt too wide) in paragraph at lines 255--256
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[17pdfTeX warning (ext4): destination with the same identifier (name{figure.2.1
0}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.264
<./usecase1.png>] <sequence2.jpg, id=326, 516.42938pt x 237.88875pt>
File: sequence2.jpg Graphic file (type jpg)
<use sequence2.jpg>
Package pdftex.def Info: sequence2.jpg used on input line 277.
(pdftex.def) Requested size: 284.52756pt x 131.06789pt.
[18pdfTeX warning (ext4): destination with the same identifier (name{figure.2.
11}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.282
<./usecase3.png>] <sequence1.png, id=332, 343.2825pt x 252.19218pt>
File: sequence1.png Graphic file (type png)
<use sequence1.png>
Package pdftex.def Info: sequence1.png used on input line 285.
(pdftex.def) Requested size: 284.52756pt x 209.027pt.
File: sequence1.png Graphic file (type png)
<use sequence1.png>
Package pdftex.def Info: sequence1.png used on input line 295.
(pdftex.def) Requested size: 369.88582pt x 271.73624pt.
Overfull \hbox (24.88582pt too wide) in paragraph at lines 295--296
[][]
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
Underfull \hbox (badness 10000) in paragraph at lines 298--311
[]
Underfull \hbox (badness 10000) in paragraph at lines 298--311
[]
Underfull \hbox (badness 10000) in paragraph at lines 298--311
[]
Underfull \hbox (badness 10000) in paragraph at lines 298--311
[]
Underfull \hbox (badness 10000) in paragraph at lines 298--311
[]
Underfull \hbox (badness 10000) in paragraph at lines 298--311
[]
[19pdfTeX warning (ext4): destination with the same identifier (name{figure.2.1
2}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.311 \end{itemize}
pdfTeX warning (ext4): destination with the same identifier
(name{figure.2.13}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.311 \end{itemize}
<./sequence2.jpg> <./sequence1.png>]
<home_screen.jpg, id=337, 1003.75pt x 1801.73125pt>
File: home_screen.jpg Graphic file (type jpg)
<use home_screen.jpg>
Package pdftex.def Info: home_screen.jpg used on input line 323.
(pdftex.def) Requested size: 170.71652pt x 306.42772pt.
[20pdfTeX warning (ext4): destination with the same identifier (name{figure.2.1
4}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.329 \item S
lide out menu :]
<slide_out.jpg, id=344, 903.375pt x 1801.73125pt>
File: slide_out.jpg Graphic file (type jpg)
<use slide_out.jpg>
Package pdftex.def Info: slide_out.jpg used on input line 332.
(pdftex.def) Requested size: 170.71652pt x 340.46303pt.
[21pdfTeX warning (ext4): destination with the same identifier (name{figure.2.
15}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.338 \end{itemize}
<./home_screen.jpg>]) [22pdfTeX warning (ext4): destinatio
n with the same identifier (name{figure.2.16}) has been already used, duplicate
ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.63 \include{Chapitre2}
<./slide_out.jpg>]
\openout2 = `Chapitre3.aux'.
(Chapitre3.tex
Chapter 3.
[23
]) [24]
\openout2 = `chapitre4.aux'.
(chapitre4.tex
Chapter 4.
<play.png, id=361, 553.31718pt x 240.14719pt>
File: play.png Graphic file (type png)
<use play.png>
Package pdftex.def Info: play.png used on input line 10.
(pdftex.def) Requested size: 369.88582pt x 160.53499pt.
Overfull \hbox (24.88582pt too wide) in paragraph at lines 10--11
[][]
[]
Underfull \hbox (badness 10000) in paragraph at lines 3--14
[]
<screenshot1.png, id=363, 307.90031pt x 548.0475pt>
File: screenshot1.png Graphic file (type png)
<use screenshot1.png>
Package pdftex.def Info: screenshot1.png used on input line 21.
(pdftex.def) Requested size: 227.62204pt x 405.16412pt.
[25
pdfTeX warning (ext4): destination with the same identifier (name{figure.4.1})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.26
<./play.png>] <screenshot2.png, id=368, 359.09157pt x 639.13782pt>
File: screenshot2.png Graphic file (type png)
<use screenshot2.png>
Package pdftex.def Info: screenshot2.png used on input line 29.
(pdftex.def) Requested size: 227.62204pt x 405.14583pt.
[26pdfTeX warning (ext4): destination with the same identifier (name{figure.4.
2}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.34
<./screenshot1.png>] <screenshot3.png, id=374, 327.47343pt x 421.575pt>
File: screenshot3.png Graphic file (type png)
<use screenshot3.png>
Package pdftex.def Info: screenshot3.png used on input line 37.
(pdftex.def) Requested size: 227.62204pt x 293.02914pt.
[27pdfTeX warning (ext4): destination with the same identifier (name{figure.4.
3}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.42
<./screenshot2.png>]
<screenshot4.png, id=379, 255.95625pt x 454.69875pt>
File: screenshot4.png Graphic file (type png)
<use screenshot4.png>
Package pdftex.def Info: screenshot4.png used on input line 45.
(pdftex.def) Requested size: 227.62204pt x 404.36145pt.
[28pdfTeX warning (ext4): destination with the same identifier (name{figure.4.4
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.50
<./screenshot3.png>]
<screenshot5.png, id=384, 262.73157pt x 466.74374pt>
File: screenshot5.png Graphic file (type png)
<use screenshot5.png>
Package pdftex.def Info: screenshot5.png used on input line 54.
(pdftex.def) Requested size: 227.62204pt x 404.39012pt.
[29pdfTeX warning (ext4): destination with the same identifier (name{figure.4.5
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.59
<./screenshot4.png>] <screenshot6.png, id=389, 342.5297pt x 608.2725pt>
File: screenshot6.png Graphic file (type png)
<use screenshot6.png>
Package pdftex.def Info: screenshot6.png used on input line 62.
(pdftex.def) Requested size: 227.62204pt x 404.22697pt.
[30pdfTeX warning (ext4): destination with the same identifier (name{figure.4.
6}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.67
<./screenshot5.png>]) [31pdfTeX warning (ext4): destination with the same
identifier (name{figure.4.7}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.65 \include{chapitre4}
<./screenshot6.png>]
\openout2 = `Conclusion.aux'.
(Conclusion.tex)
Underfull \hbox (badness 10000) in paragraph at lines 3--66
[]
[32
] (Main.bbl)
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 73.
[33
]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 73.
(Main.aux (Garde.aux) (Dedicaces.aux) (Remerciements.aux)
(Introduction.aux) (Chapitre1.aux) (Chapitre2.aux) (Chapitre3.aux)
(chapitre4.aux) (Conclusion.aux))
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 73.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 73.
Package rerunfilecheck Info: File `Main.out' has not changed.
(rerunfilecheck) Checksum: 1C349657D2574E32B71FB73377027F34;1725.
LaTeX Warning: There were multiply-defined labels.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 73.
)
Here is how much of TeX's memory you used:
7159 strings out of 493333
100874 string characters out of 3136611
197797 words of memory out of 3000000
10379 multiletter control sequences out of 15000+200000
13185 words of font info for 28 fonts, out of 3000000 for 9000
1141 hyphenation exceptions out of 8191
34i,11n,43p,462b,565s stack positions out of 5000i,500n,10000p,200000b,50000s
<C:\Users\Home\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\jknappen\ec\dpi600\e
cti0700.pk> <C:\Users\Home\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\jknappen\ec
\dpi600\ecbx2074.pk> <C:\Users\Home\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\jk
nappen\ec\dpi600\ecbx1200.pk> <C:\Users\Home\AppData\Local\MiKTeX\2.9\fonts\pk\
ljfour\jknappen\ec\dpi600\ecti1000.pk> <C:\Users\Home\AppData\Local\MiKTeX\2.9\
fonts\pk\ljfour\jknappen\ec\dpi600\ecbx1000.pk> <C:\Users\Home\AppData\Local\Mi
KTeX\2.9\fonts\pk\ljfour\jknappen\ec\dpi600\ecbx2488.pk> <C:\Users\Home\AppData
\Local\MiKTeX\2.9\fonts\pk\ljfour\jknappen\ec\dpi600\ecbx1440.pk> <C:\Users\Hom
e\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\jknappen\ec\dpi600\ecrm1000.pk><C:/P
rogram Files (x86)/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy10.pfb>
Output written on Main.pdf (38 pages, 3999682 bytes).
PDF statistics:
790 PDF objects out of 1000 (max. 8388607)
128 named destinations out of 1000 (max. 500000)
333 words of extra memory for PDF output out of 10000 (max. 10000000)