IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Bibliographies - Index - Glossaires Discussion :

Biblio à l'envers?


Sujet :

Bibliographies - Index - Glossaires

  1. #1
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut Biblio à l'envers?
    Bonjour

    j'ai un probleme avec la commande \nocite{*}.

    Lorsque je l'ajoute juste avant \end{document}, les références non citées sont les premières dans la bibliographie est-ce normal? si oui comment les mettre après les références citées dans le document?

    je vous joins un exemple
    ECM
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
    \documentclass[12pt,twoside]{book}
     
    \usepackage{amsmath,amssymb}        
    \usepackage[english,francais]{babel}
    \usepackage{lmodern}
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    %\usepackage{url}
    \usepackage[french]{minitoc}
    \setcounter{minitocdepth}{3}
    \mtcindent=15pt
     
    \setcounter{secnumdepth}{3}
    \setcounter{tocdepth}{3}
     
     
    \begin{document}
     
    \pagenumbering{roman}
     
    \addstarredchapter{Table des matières}
    \tableofcontents
    \mainmatter
     
    \chapter*{INTRODUCTION GÉNÉRALE}
    Lorem  ipsum  dolor  sit  amet,  consectetur  adipiscing  elit.  Etiam
    hendrerit suscipit massa, ac  laoreet dolor tempus vitae. Class aptent
    taciti sociosqu  ad litora torquent  per conubia nostra,  per inceptos
    himenaeos\cite{Destaillats2007}. Etiam venenatis scelerisque leo
    sed tincidunt. Nullam dolor tellus, pulvinar et euismod nec, malesuada
    ac quam. Aenean vel mauris  ligula, ut posuere turpis. Maecenas auctor
    dui vitae ipsum rhoncus tempor.  Donec eget nisi nibh, eu sollicitudin
    quam.  Class aptent  taciti sociosqu  ad litora  torquent  per conubia
    nostra, per inceptos himenaeos.
     
     
     
    \chapter{ÉTAT DE L'ART }
     
    Lorem  ipsum  dolor  sit  amet,  consectetur  adipiscing  elit\cite{Schleibinger2008}.  Etiam
    hendrerit suscipit massa, ac  laoreet dolor tempus vitae. Class aptent
    taciti sociosqu  ad litora torquent  per conubia nostra,  per inceptos
    himenaeos.   Pellentesque    ultricies   nisi   vel    urna   faucibus
    adipiscing.  Aliquam adipiscing  tellus  nec magna  aliquet eu  cursus
    mauris interdum. Suspendisse  potenti. Etiam venenatis scelerisque leo
    sed tincidunt. Nullam dolor tellus, pulvinar et euismod nec, malesuada
    ac quam. Aenean vel mauris  ligula, ut posuere turpis. Maecenas auctor
    dui vitae ipsum rhoncus tempor.  Donec eget nisi nibh, eu sollicitudin
    quam.  Class aptent  taciti sociosqu  ad litora  torquent  per conubia
    nostra, per inceptos himenaeos. Phasellus vitae ullamcorper velit. Cum
    sociis  natoque penatibus  et magnis  dis parturient  montes, nascetur
    ridiculus mus. Ut metus arcu, facilisis at semper quis, condimentum in
    magna.
     
     
    \chapter*{CONCLUSION ET PERSPECTIVES}
    Lorem  ipsum  dolor  sit  amet,  consectetur  adipiscing  elit.  Etiam
    hendrerit suscipit massa, ac  laoreet dolor tempus vitae. Class aptent
    taciti sociosqu  ad litora torquent  per conubia nostra,  per inceptos
    himenaeos.   Pellentesque    ultricies   nisi   vel    urna   faucibus
    adipiscing. Donec eget nisi nibh, eu sollicitudin
    quam.  Class aptent  taciti sociosqu  ad litora  torquent  per conubia
    nostra, per inceptos himenaeos\cite{Destaillats2007}. Phasellus vitae ullamcorper velit. Cum
    sociis  natoque penatibus  et magnis  dis parturient  montes, nascetur
    ridiculus mus. Ut metus arcu, facilisis at semper quis, condimentum in
    magna.
     
     
    \bibliographystyle{plain}
     
    \bibliography{Biblio}
     
    \nocite{*}
     
     
    \end{document}
    Classe utilisée
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    %%
    %% This is file `book.cls',
    %% generated with the docstrip utility.
    %%
    %% The original source files were:
    %%
    %% classes.dtx  (with options: `book')
    %% 
    %% This is a generated file.
    %% 
    %% Copyright 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
    %% The LaTeX3 Project and any individual authors listed elsewhere
    %% in this file.
    %% 
    %% This file was generated from file(s) of the LaTeX base system.
    %% --------------------------------------------------------------
    %% 
    %% It may be distributed and/or modified under the
    %% conditions of the LaTeX Project Public License, either version 1.3
    %% of this license or (at your option) any later version.
    %% The latest version of this license is in
    %%    http://www.latex-project.org/lppl.txt
    %% and version 1.3 or later is part of all distributions of LaTeX
    %% version 2003/12/01 or later.
    %% 
    %% This file has the LPPL maintenance status "maintained".
    %% 
    %% This file may only be distributed together with a copy of the LaTeX
    %% base system. You may however distribute the LaTeX base system without
    %% such generated files.
    %% 
    %% The list of all files belonging to the LaTeX base distribution is
    %% given in the file `manifest.txt'. See also `legal.txt' for additional
    %% information.
    %% 
    %% The list of derived (unpacked) files belonging to the distribution
    %% and covered by LPPL is defined by the unpacking scripts (with
    %% extension .ins) which are part of the distribution.
    %% \CharacterTable
    %%  {Upper-case    \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
    %%   Lower-case    \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
    %%   Digits        \0\1\2\3\4\5\6\7\8\9
    %%   Exclamation   \!     Double quote  \"     Hash (number) \#
    %%   Dollar        \$     Percent       \%     Ampersand     \&
    %%   Acute accent  \'     Left paren    \(     Right paren   \)
    %%   Asterisk      \*     Plus          \+     Comma         \,
    %%   Minus         \-     Point         \.     Solidus       \/
    %%   Colon         \:     Semicolon     \;     Less than     \<
    %%   Equals        \=     Greater than  \>     Question mark \?
    %%   Commercial at \@     Left bracket  \[     Backslash     \\
    %%   Right bracket \]     Circumflex    \^     Underscore    \_
    %%   Grave accent  \`     Left brace    \{     Vertical bar  \|
    %%   Right brace   \}     Tilde         \~}
    \NeedsTeXFormat{LaTeX2e}[1995/12/01]
    \ProvidesClass{ClasseThese}
                  [2010/10/10 v0.1
     Standard LaTeX document class]
    \newcommand\@ptsize{}
    \newif\if@restonecol
    \newif\if@titlepage
    \@titlepagetrue
    \newif\if@openright
    \newif\if@mainmatter \@mainmattertrue
    \if@compatibility\else
    \DeclareOption{a4paper}
       {\setlength\paperheight {297mm}%
        \setlength\paperwidth  {210mm}}
    \DeclareOption{a5paper}
       {\setlength\paperheight {210mm}%
        \setlength\paperwidth  {148mm}}
    \DeclareOption{b5paper}
       {\setlength\paperheight {250mm}%
        \setlength\paperwidth  {176mm}}
    \DeclareOption{letterpaper}
       {\setlength\paperheight {11in}%
        \setlength\paperwidth  {8.5in}}
    \DeclareOption{legalpaper}
       {\setlength\paperheight {14in}%
        \setlength\paperwidth  {8.5in}}
    \DeclareOption{executivepaper}
       {\setlength\paperheight {10.5in}%
        \setlength\paperwidth  {7.25in}}
    \DeclareOption{landscape}
       {\setlength\@tempdima   {\paperheight}%
        \setlength\paperheight {\paperwidth}%
        \setlength\paperwidth  {\@tempdima}}
    \fi
    \if@compatibility
      \renewcommand\@ptsize{0}
    \else
    \DeclareOption{10pt}{\renewcommand\@ptsize{0}}
    \fi
    \DeclareOption{11pt}{\renewcommand\@ptsize{1}}
    \DeclareOption{12pt}{\renewcommand\@ptsize{2}}
    \if@compatibility\else
    \DeclareOption{oneside}{\@twosidefalse \@mparswitchfalse}
    \fi
    \DeclareOption{twoside}{\@twosidetrue  \@mparswitchtrue}
    \DeclareOption{draft}{\setlength\overfullrule{5pt}}
    \if@compatibility\else
    \DeclareOption{final}{\setlength\overfullrule{0pt}}
    \fi
    \DeclareOption{titlepage}{\@titlepagetrue}
    \if@compatibility\else
    \DeclareOption{notitlepage}{\@titlepagefalse}
    \fi
    \if@compatibility
    \@openrighttrue
    \else
    \DeclareOption{openright}{\@openrighttrue}
    \DeclareOption{openany}{\@openrightfalse}
    \fi
    \if@compatibility\else
    \DeclareOption{onecolumn}{\@twocolumnfalse}
    \fi
    \DeclareOption{twocolumn}{\@twocolumntrue}
    \DeclareOption{leqno}{\input{leqno.clo}}
    \DeclareOption{fleqn}{\input{fleqn.clo}}
    \DeclareOption{openbib}{%
      \AtEndOfPackage{%
       \renewcommand\@openbib@code{%
          \advance\leftmargin\bibindent
          \itemindent -\bibindent
          \listparindent \itemindent
          \parsep \z@
          }%
       \renewcommand\newblock{\par}}%
    }
    \ExecuteOptions{letterpaper,10pt,twoside,onecolumn,final,openright}
    \ProcessOptions
    \input{bk1\@ptsize.clo}
    \setlength\lineskip{1\p@}
    \setlength\normallineskip{1\p@}
    \renewcommand\baselinestretch{}
    \setlength\parskip{0\p@ \@plus \p@}
    \@lowpenalty   51
    \@medpenalty  151
    \@highpenalty 301
    \setcounter{topnumber}{2}
    \renewcommand\topfraction{.7}
    \setcounter{bottomnumber}{1}
    \renewcommand\bottomfraction{.3}
    \setcounter{totalnumber}{3}
    \renewcommand\textfraction{.2}
    \renewcommand\floatpagefraction{.5}
    \setcounter{dbltopnumber}{2}
    \renewcommand\dbltopfraction{.7}
    \renewcommand\dblfloatpagefraction{.5}
    \if@twoside
      \def\ps@headings{%
          \let\@oddfoot\@empty\let\@evenfoot\@empty
          \def\@evenhead{\thepage\hfil\slshape\leftmark}%
          \def\@oddhead{{\slshape\rightmark}\hfil\thepage}%
          \let\@mkboth\markboth
        \def\chaptermark##1{%
          \markboth {\MakeUppercase{%
            \ifnum \c@secnumdepth >\m@ne
              \if@mainmatter
                \@chapapp\ \thechapter. \ %
              \fi
            \fi
            ##1}}{}}%
        \def\sectionmark##1{%
          \markright {\MakeUppercase{%
            \ifnum \c@secnumdepth >\z@
              \thesection. \ %
            \fi
            ##1}}}}
    \else
      \def\ps@headings{%
        \let\@oddfoot\@empty
        \def\@oddhead{{\slshape\rightmark}\hfil\thepage}%
        \let\@mkboth\markboth
        \def\chaptermark##1{%
          \markright {\MakeUppercase{%
            \ifnum \c@secnumdepth >\m@ne
              \if@mainmatter
                \@chapapp\ \thechapter. \ %
              \fi
            \fi
            ##1}}}}
    \fi
    \def\ps@myheadings{%
        \let\@oddfoot\@empty\let\@evenfoot\@empty
        \def\@evenhead{\thepage\hfil\slshape\leftmark}%
        \def\@oddhead{{\slshape\rightmark}\hfil\thepage}%
        \let\@mkboth\@gobbletwo
        \let\chaptermark\@gobble
        \let\sectionmark\@gobble
        }
      \if@titlepage
      \newcommand\maketitle{\begin{titlepage}%
      \let\footnotesize\small
      \let\footnoterule\relax
      \let \footnote \thanks
      \null\vfil
      \vskip 60\p@
      \begin{center}%
        {\LARGE \@title \par}%
        \vskip 3em%
        {\large
         \lineskip .75em%
          \begin{tabular}[t]{c}%
            \@author
          \end{tabular}\par}%
          \vskip 1.5em%
        {\large \@date \par}%       % Set date in \large size.
      \end{center}\par
      \@thanks
      \vfil\null
      \end{titlepage}%
      \setcounter{footnote}{0}%
      \global\let\thanks\relax
      \global\let\maketitle\relax
      \global\let\@thanks\@empty
      \global\let\@author\@empty
      \global\let\@date\@empty
      \global\let\@title\@empty
      \global\let\title\relax
      \global\let\author\relax
      \global\let\date\relax
      \global\let\and\relax
    }
    \else
    \newcommand\maketitle{\par
      \begingroup
        \renewcommand\thefootnote{\@fnsymbol\c@footnote}%
        \def\@makefnmark{\rlap{\@textsuperscript{\normalfont\@thefnmark}}}%
        \long\def\@makefntext##1{\parindent 1em\noindent
                \hb@xt@1.8em{%
                    \hss\@textsuperscript{\normalfont\@thefnmark}}##1}%
        \if@twocolumn
          \ifnum \col@number=\@ne
            \@maketitle
          \else
            \twocolumn[\@maketitle]%
          \fi
        \else
          \newpage
          \global\@topnum\z@   % Prevents figures from going at top of page.
          \@maketitle
        \fi
        \thispagestyle{plain}\@thanks
      \endgroup
      \setcounter{footnote}{0}%
      \global\let\thanks\relax
      \global\let\maketitle\relax
      \global\let\@maketitle\relax
      \global\let\@thanks\@empty
      \global\let\@author\@empty
      \global\let\@date\@empty
      \global\let\@title\@empty
      \global\let\title\relax
      \global\let\author\relax
      \global\let\date\relax
      \global\let\and\relax
    }
    \def\@maketitle{%
      \newpage
      \null
      \vskip 2em%
      \begin{center}%
      \let \footnote \thanks
        {\LARGE \@title \par}%
        \vskip 1.5em%
        {\large
          \lineskip .5em%
          \begin{tabular}[t]{c}%
            \@author
          \end{tabular}\par}%
        \vskip 1em%
        {\large \@date}%
      \end{center}%
      \par
      \vskip 1.5em}
    \fi
    \newcommand*\chaptermark[1]{}
    \setcounter{secnumdepth}{2}
    \newcounter {part}
    \newcounter {chapter}
    \newcounter {section}[chapter]
    \newcounter {subsection}[section]
    \newcounter {subsubsection}[subsection]
    \newcounter {paragraph}[subsubsection]
    \newcounter {subparagraph}[paragraph]
    \renewcommand \thepart {\@Alph\c@part}
    \renewcommand \thechapter {\@Roman\c@chapter}
    \renewcommand \thesection {\thechapter.\@arabic\c@section}
    \renewcommand\thesubsection   {\thesection.\@arabic\c@subsection}
    \renewcommand\thesubsubsection{\thesubsection .\@arabic\c@subsubsection}
    \renewcommand\theparagraph    {\thesubsubsection.\@arabic\c@paragraph}
    \renewcommand\thesubparagraph {\theparagraph.\@arabic\c@subparagraph}
    \newcommand\@chapapp{\chaptername}
    \newcommand\frontmatter{%
        \cleardoublepage
      \@mainmatterfalse
      \pagenumbering{roman}}
    \newcommand\mainmatter{%
        \cleardoublepage
      \@mainmattertrue
      \pagenumbering{arabic}}
    \newcommand\backmatter{%
      \if@openright
        \cleardoublepage
      \else
        \clearpage
      \fi
      \@mainmatterfalse}
    \newcommand\part{%
      \if@openright
        \cleardoublepage
      \else
        \clearpage
      \fi
      \thispagestyle{plain}%
      \if@twocolumn
        \onecolumn
        \@tempswatrue
      \else
        \@tempswafalse
      \fi
      \null\vfil
      \secdef\@part\@spart}
     
    \def\@part[#1]#2{%
        \ifnum \c@secnumdepth >-2\relax
          \refstepcounter{part}%
          \addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
        \else
          \addcontentsline{toc}{part}{#1}%
        \fi
        \markboth{}{}%
        {\centering
         \interlinepenalty \@M
         \normalfont
         \ifnum \c@secnumdepth >-2\relax
           \huge\bfseries \partname\nobreakspace\thepart
           \par
           \vskip 20\p@
         \fi
         \Huge \bfseries #2\par}%
        \@endpart}
    \def\@spart#1{%
        {\centering
         \interlinepenalty \@M
         \normalfont
         \Huge \bfseries #1\par}%
        \@endpart}
    \def\@endpart{\vfil\newpage
                  \if@twoside
                   \if@openright
                    \null
                    \thispagestyle{empty}%
                    \newpage
                   \fi
                  \fi
                  \if@tempswa
                    \twocolumn
                  \fi}
    \newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi
                        \thispagestyle{plain}%
                        \global\@topnum\z@
                        \@afterindentfalse
                        \secdef\@chapter\@schapter}
    \def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
                           \if@mainmatter
                             \refstepcounter{chapter}%
                             \typeout{\@chapapp\space\thechapter.}%
                             \addcontentsline{toc}{chapter}%
                                       {\protect\numberline{\thechapter}#1}%
                           \else
                             \addcontentsline{toc}{chapter}{#1}%
                           \fi
                        \else
                          \addcontentsline{toc}{chapter}{#1}%
                        \fi
                        \chaptermark{#1}%
                        \addtocontents{lof}{\protect\addvspace{10\p@}}%
                        \addtocontents{lot}{\protect\addvspace{10\p@}}%
                        \if@twocolumn
                          \@topnewpage[\@makechapterhead{#2}]%
                        \else
                          \@makechapterhead{#2}%
                          \@afterheading
                        \fi}
     
    \def\@makechapterhead#1{%
    %  \vspace*{10\p@}%
      {\parindent \z@ \raggedright \normalfont
        \begin{flushright}
          \ifnum \c@secnumdepth >\m@ne
            \if@mainmatter
    %          \huge\bfseries 
              {\Large \scshape \@chapapp\space \thechapter}
              \par\nobreak
    %        \vskip 0\p@
            \fi
          \fi
          \interlinepenalty\@M
          \Huge \bfseries #1\par\nobreak
          \hrulefill
        \end{flushright}
        \vskip 20\p@
      }}
    \def\@schapter#1{\if@twocolumn
                       \@topnewpage[\@makeschapterhead{#1}]%
                     \else
                       \@makeschapterhead{#1}%
                       \@afterheading
                     \fi}
    \def\@makeschapterhead#1{%
    %  \vspace*{10\p@}%
      {\parindent \z@ \raggedright
        \normalfont
        \interlinepenalty\@M
        \begin{flushright}
    	\Huge \bfseries  #1\par\nobreak
        \end{flushright}
        \vskip 20\p@
      }}
    \newcommand\section{\@startsection {section}{1}{\z@}%
                                       {-3.5ex \@plus -1ex \@minus -.2ex}%
                                       {2.3ex \@plus.2ex}%
                                       {\normalfont\Large\bfseries}}
    \newcommand\subsection{\@startsection{subsection}{2}{\z@}%
                                         {-3.25ex\@plus -1ex \@minus -.2ex}%
                                         {1.5ex \@plus .2ex}%
                                         {\normalfont\large\bfseries}}
    \newcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
                                         {-3.25ex\@plus -1ex \@minus -.2ex}%
                                         {1.5ex \@plus .2ex}%
                                         {\normalfont\normalsize\bfseries}}
    \newcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
                                        {3.25ex \@plus1ex \@minus.2ex}%
                                        {-1em}%
                                        {\normalfont\normalsize\bfseries}}
    \newcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
                                           {3.25ex \@plus1ex \@minus .2ex}%
                                           {-1em}%
                                          {\normalfont\normalsize\bfseries}}
    \if@twocolumn
      \setlength\leftmargini  {2em}
    \else
      \setlength\leftmargini  {2.5em}
    \fi
    \leftmargin  \leftmargini
    \setlength\leftmarginii  {2.2em}
    \setlength\leftmarginiii {1.87em}
    \setlength\leftmarginiv  {1.7em}
    \if@twocolumn
      \setlength\leftmarginv  {.5em}
      \setlength\leftmarginvi {.5em}
    \else
      \setlength\leftmarginv  {1em}
      \setlength\leftmarginvi {1em}
    \fi
    \setlength  \labelsep  {.5em}
    \setlength  \labelwidth{\leftmargini}
    \addtolength\labelwidth{-\labelsep}
    \@beginparpenalty -\@lowpenalty
    \@endparpenalty   -\@lowpenalty
    \@itempenalty     -\@lowpenalty
    \renewcommand\theenumi{\@arabic\c@enumi}
    \renewcommand\theenumii{\@alph\c@enumii}
    \renewcommand\theenumiii{\@roman\c@enumiii}
    \renewcommand\theenumiv{\@Alph\c@enumiv}
    \newcommand\labelenumi{\theenumi.}
    \newcommand\labelenumii{(\theenumii)}
    \newcommand\labelenumiii{\theenumiii.}
    \newcommand\labelenumiv{\theenumiv.}
    \renewcommand\p@enumii{\theenumi}
    \renewcommand\p@enumiii{\theenumi(\theenumii)}
    \renewcommand\p@enumiv{\p@enumiii\theenumiii}
    \newcommand\labelitemi{\textbullet}
    \newcommand\labelitemii{\normalfont\bfseries \textendash}
    \newcommand\labelitemiii{\textasteriskcentered}
    \newcommand\labelitemiv{\textperiodcentered}
    \newenvironment{description}
                   {\list{}{\labelwidth\z@ \itemindent-\leftmargin
                            \let\makelabel\descriptionlabel}}
                   {\endlist}
    \newcommand*\descriptionlabel[1]{\hspace\labelsep
                                    \normalfont\bfseries #1}
    \newenvironment{verse}
                   {\let\\\@centercr
                    \list{}{\itemsep      \z@
                            \itemindent   -1.5em%
                            \listparindent\itemindent
                            \rightmargin  \leftmargin
                            \advance\leftmargin 1.5em}%
                    \item\relax}
                   {\endlist}
    \newenvironment{quotation}
                   {\list{}{\listparindent 1.5em%
                            \itemindent    \listparindent
                            \rightmargin   \leftmargin
                            \parsep        \z@ \@plus\p@}%
                    \item\relax}
                   {\endlist}
    \newenvironment{quote}
                   {\list{}{\rightmargin\leftmargin}%
                    \item\relax}
                   {\endlist}
    \if@compatibility
    \newenvironment{titlepage}
        {%
          \cleardoublepage
          \if@twocolumn
            \@restonecoltrue\onecolumn
          \else
            \@restonecolfalse\newpage
          \fi
          \thispagestyle{empty}%
          \setcounter{page}\z@
        }%
        {\if@restonecol\twocolumn \else \newpage \fi
        }
    \else
    \newenvironment{titlepage}
        {%
          \cleardoublepage
          \if@twocolumn
            \@restonecoltrue\onecolumn
          \else
            \@restonecolfalse\newpage
          \fi
          \thispagestyle{empty}%
          \setcounter{page}\@ne
        }%
        {\if@restonecol\twocolumn \else \newpage \fi
         \if@twoside\else
            \setcounter{page}\@ne
         \fi
        }
    \fi
    \newcommand\appendix{\par
      \setcounter{chapter}{0}%
      \setcounter{section}{0}%
      \gdef\@chapapp{\appendixname}%
      \gdef\thechapter{\@Alph\c@chapter}}
    \setlength\arraycolsep{5\p@}
    \setlength\tabcolsep{6\p@}
    \setlength\arrayrulewidth{.4\p@}
    \setlength\doublerulesep{2\p@}
    \setlength\tabbingsep{\labelsep}
    \skip\@mpfootins = \skip\footins
    \setlength\fboxsep{3\p@}
    \setlength\fboxrule{.4\p@}
    \@addtoreset {equation}{chapter}
    \renewcommand\theequation
      {\ifnum \c@chapter>\z@ \thechapter.\fi \@arabic\c@equation}
    \newcounter{figure}[chapter]
    \renewcommand \thefigure
         {\ifnum \c@chapter>\z@ \thechapter.\fi \@arabic\c@figure}
    \def\fps@figure{tbp}
    \def\ftype@figure{1}
    \def\ext@figure{lof}
    \def\fnum@figure{\figurename\nobreakspace\thefigure}
    \newenvironment{figure}
                   {\@float{figure}}
                   {\end@float}
    \newenvironment{figure*}
                   {\@dblfloat{figure}}
                   {\end@dblfloat}
    \newcounter{table}[chapter]
    \renewcommand \thetable
         {\ifnum \c@chapter>\z@ \thechapter.\fi \@arabic\c@table}
    \def\fps@table{tbp}
    \def\ftype@table{2}
    \def\ext@table{lot}
    \def\fnum@table{\tablename\nobreakspace\thetable}
    \newenvironment{table}
                   {\@float{table}}
                   {\end@float}
    \newenvironment{table*}
                   {\@dblfloat{table}}
                   {\end@dblfloat}
    \newlength\abovecaptionskip
    \newlength\belowcaptionskip
    \setlength\abovecaptionskip{10\p@}
    \setlength\belowcaptionskip{0\p@}
    \long\def\@makecaption#1#2{%
      \vskip\abovecaptionskip
      \sbox\@tempboxa{#1: #2}%
      \ifdim \wd\@tempboxa >\hsize
        #1: #2\par
      \else
        \global \@minipagefalse
        \hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
      \fi
      \vskip\belowcaptionskip}
    \DeclareOldFontCommand{\rm}{\normalfont\rmfamily}{\mathrm}
    \DeclareOldFontCommand{\sf}{\normalfont\sffamily}{\mathsf}
    \DeclareOldFontCommand{\tt}{\normalfont\ttfamily}{\mathtt}
    \DeclareOldFontCommand{\bf}{\normalfont\bfseries}{\mathbf}
    \DeclareOldFontCommand{\it}{\normalfont\itshape}{\mathit}
    \DeclareOldFontCommand{\sl}{\normalfont\slshape}{\@nomath\sl}
    \DeclareOldFontCommand{\sc}{\normalfont\scshape}{\@nomath\sc}
    \DeclareRobustCommand*\cal{\@fontswitch\relax\mathcal}
    \DeclareRobustCommand*\mit{\@fontswitch\relax\mathnormal}
    \newcommand\@pnumwidth{1.55em}
    \newcommand\@tocrmarg{2.55em}
    \newcommand\@dotsep{4.5}
    \setcounter{tocdepth}{2}
    \newcommand\tableofcontents{%
        \if@twocolumn
          \@restonecoltrue\onecolumn
        \else
          \@restonecolfalse
        \fi
        \chapter*{\contentsname
            \@mkboth{%
               \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
    	\@starttoc{toc}%
        \if@restonecol\twocolumn\fi
        }
    \newcommand*\l@part[2]{%
      \ifnum \c@tocdepth >-2\relax
        \addpenalty{-\@highpenalty}%
        \addvspace{2.25em \@plus\p@}%
        \setlength\@tempdima{3em}%
        \begingroup
          \parindent \z@ \rightskip \@pnumwidth
          \parfillskip -\@pnumwidth
          {\leavevmode
           \large \bfseries #1\hfil \hb@xt@\@pnumwidth{\hss #2}}\par
           \nobreak
             \global\@nobreaktrue
             \everypar{\global\@nobreakfalse\everypar{}}%
        \endgroup
      \fi}
    \newcommand*\l@chapter[2]{%
      \ifnum \c@tocdepth >\m@ne
        \addpenalty{-\@highpenalty}%
        \vskip 1.0em \@plus\p@
        \setlength\@tempdima{1.5em}%
        \begingroup
          \parindent \z@ \rightskip \@pnumwidth
          \parfillskip -\@pnumwidth
          \leavevmode \bfseries
          \advance\leftskip\@tempdima
          \hskip -\leftskip
          #1\nobreak\hfil \nobreak\hb@xt@\@pnumwidth{\hss #2}\par
          \penalty\@highpenalty
        \endgroup
      \fi}
    \newcommand*\l@section{\@dottedtocline{1}{1.5em}{2.3em}}
    \newcommand*\l@subsection{\@dottedtocline{2}{3.8em}{3.2em}}
    \newcommand*\l@subsubsection{\@dottedtocline{3}{7.0em}{4.1em}}
    \newcommand*\l@paragraph{\@dottedtocline{4}{10em}{5em}}
    \newcommand*\l@subparagraph{\@dottedtocline{5}{12em}{6em}}
    \newcommand\listoffigures{%
        \if@twocolumn
          \@restonecoltrue\onecolumn
        \else
          \@restonecolfalse
        \fi
        \chapter*{\listfigurename}%
          \@mkboth{\MakeUppercase\listfigurename}%
                  {\MakeUppercase\listfigurename}%
        \@starttoc{lof}%
        \if@restonecol\twocolumn\fi
        }
    \newcommand*\l@figure{\@dottedtocline{1}{1.5em}{2.3em}}
    \newcommand\listoftables{%
        \if@twocolumn
          \@restonecoltrue\onecolumn
        \else
          \@restonecolfalse
        \fi
        \chapter*{\listtablename}%
          \@mkboth{%
              \MakeUppercase\listtablename}%
             {\MakeUppercase\listtablename}%
        \@starttoc{lot}%
        \if@restonecol\twocolumn\fi
        }
    \let\l@table\l@figure
    \newdimen\bibindent
    \setlength\bibindent{1.5em}
    \newenvironment{thebibliography}[1]
         {\chapter*{\bibname}%
          \@mkboth{\MakeUppercase\bibname}{\MakeUppercase\bibname}%
          \list{\@biblabel{\@arabic\c@enumiv}}%
               {\settowidth\labelwidth{\@biblabel{#1}}%
                \leftmargin\labelwidth
                \advance\leftmargin\labelsep
                \@openbib@code
                \usecounter{enumiv}%
                \let\p@enumiv\@empty
                \renewcommand\theenumiv{\@arabic\c@enumiv}}%
          \sloppy
          \clubpenalty4000
          \@clubpenalty \clubpenalty
          \widowpenalty4000%
          \sfcode`\.\@m}
         {\def\@noitemerr
           {\@latex@warning{Empty `thebibliography' environment}}%
          \endlist}
    \newcommand\newblock{\hskip .11em\@plus.33em\@minus.07em}
    \let\@openbib@code\@empty
    \newenvironment{theindex}
                   {\if@twocolumn
                      \@restonecolfalse
                    \else
                      \@restonecoltrue
                    \fi
                    \twocolumn[\@makeschapterhead{\indexname}]%
                    \@mkboth{\MakeUppercase\indexname}%
                            {\MakeUppercase\indexname}%
                    \thispagestyle{plain}\parindent\z@
                    \parskip\z@ \@plus .3\p@\relax
                    \columnseprule \z@
                    \columnsep 35\p@
                    \let\item\@idxitem}
                   {\if@restonecol\onecolumn\else\clearpage\fi}
    \newcommand\@idxitem{\par\hangindent 40\p@}
    \newcommand\subitem{\@idxitem \hspace*{20\p@}}
    \newcommand\subsubitem{\@idxitem \hspace*{30\p@}}
    \newcommand\indexspace{\par \vskip 10\p@ \@plus5\p@ \@minus3\p@\relax}
    \renewcommand\footnoterule{%
      \kern-3\p@
      \hrule\@width.4\columnwidth
      \kern2.6\p@}
    \@addtoreset{footnote}{chapter}
    \newcommand\@makefntext[1]{%
        \parindent 1em%
        \noindent
        \hb@xt@1.8em{\hss\@makefnmark}#1}
    \newcommand\contentsname{Contents}
    \newcommand\listfigurename{List of Figures}
    \newcommand\listtablename{List of Tables}
    \newcommand\bibname{Bibliography}
    \newcommand\indexname{Index}
    \newcommand\figurename{Figure}
    \newcommand\tablename{Table}
    \newcommand\partname{Part}
    \newcommand\chaptername{Chapter}
    \newcommand\appendixname{Appendix}
    \def\today{\ifcase\month\or
      January\or February\or March\or April\or May\or June\or
      July\or August\or September\or October\or November\or December\fi
      \space\number\day, \number\year}
    \setlength\columnsep{10\p@}
    \setlength\columnseprule{0\p@}
    \pagestyle{headings}
    \pagenumbering{arabic}
    \if@twoside
    \else
      \raggedbottom
    \fi
    \if@twocolumn
      \twocolumn
      \sloppy
      \flushbottom
    \else
      \onecolumn
    \fi
    \endinput
    %%
    %% End of file `book.cls'.
    Biblio
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    @ARTICLE{Schleibinger2008,
      author = {Schleibinger, H and Laussmann, D and Bornehag, C-G and Eis, D and
    	Rueden, H},
      title = {{Microbial volatile organic compounds in the air of moldy and mold-free
    	indoor environments.}},
      journal = {Indoor air},
      year = {2008},
      volume = {18},
      pages = {113--24},
      number = {2},
      month = apr,
      doi = {10.1111/j.1600-0668.2007.00513.x},
      file = {:C$\backslash$:/Users/Ouya/Documents/Mendeley Desktop/j.1600-0668.2007.00513.x.pdf:pdf},
      issn = {1600-0668},
      keywords = {Air Microbiology,Air Pollution, Indoor,Air Pollution, Indoor: analysis,Analysis
    	of Variance,Chromatography, Gas,Environmental Monitoring,Environmental
    	Monitoring: methods,Fungi,Fungi: chemistry,Fungi: growth \& development,Fungi:
    	metabolism,Housing,Humans,Odors,Odors: analysis,Organic Chemicals,Organic
    	Chemicals: analysis,Regression Analysis,Single-Blind Method,Volatilization},
      owner = {Ouya},
      pmid = {18333991},
      timestamp = {2013.08.25},
      url = {http://www.ncbi.nlm.nih.gov/pubmed/18333991}
    }
     
    @ARTICLE{Agarwal2007,
      author = {Agarwal, Avinash Kumar},
      title = {{Biofuels (alcohols and biodiesel) applications as fuels for internal
    	combustion engines}},
      journal = {Progress in Energy and Combustion Science},
      year = {2007},
      volume = {33},
      pages = {233--271},
      number = {3},
      month = jun,
      doi = {10.1016/j.pecs.2006.08.003},
      file = {:C$\backslash$:/Users/Ouya/Documents/Mendeley Desktop//Agarwal - 2007 - Biofuels (alcohols and biodiesel) applications as fuels for internal combustion engines.pdf:pdf},
      issn = {03601285},
      keywords = {Alcohol,Biodiesel,Biofuels,Combustion analysis,Performance and emissions,Tribology,Wear
    	analysis},
      owner = {Ouya},
      timestamp = {2013.08.25},
      url = {http://www.sciencedirect.com/science/article/pii/S0360128506000384 http://linkinghub.elsevier.com/retrieve/pii/S0360128506000384}
    }
     
    @ARTICLE{Destaillats2007,
      author = {Destaillats, Hugo and Jakober, CA and Robert, MA},
      title = {{Carbonyl Emissions from Gasoline and Diesel Motor Vehicles}},
      journal = {Science and Technology},
      year = {2007},
      volume = {42},
      pages = {4697--4703},
      number = {13},
      month = jul,
      doi = {10.1021/es7029174},
      file = {:C$\backslash$:/Users/Ouya/Documents/Mendeley Desktop//Destaillats, Jakober, Robert - 2007 - Carbonyl Emissions from Gasoline and Diesel Motor Vehicles.pdf:pdf},
      issn = {0013-936X},
      owner = {Ouya},
      timestamp = {2013.08.25},
      url = {http://pubs.acs.org/doi/abs/10.1021/es7029174 http://www.osti.gov/energycitations/product.biblio.jsp?osti\_id=935716}
    }
    Merci

    PS:J'utilise MikTeX comme distribution,Texmaker comme éditeur et JabRef pour la biblio.

  2. #2
    Expert éminent sénior

    Avatar de -Nikopol-
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2013
    Messages
    2 174
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : France, Haute Marne (Champagne Ardenne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mai 2013
    Messages : 2 174
    Points : 11 289
    Points
    11 289
    Billets dans le blog
    5
    Par défaut
    Bonsoir,
    le style "plain" que tu utilises classe les entrées alphabétiquement. En revanche le style "usrt" classe les entrées par ordre de citation.
    Ainsi en changeant plain par usrt comme option dans bibliographystyle les références non citées apparaitront après celles citées.

  3. #3
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    Citation Envoyé par lataixseb Voir le message
    Bonsoir,
    le style "plain" que tu utilises classe les entrées alphabétiquement. En revanche le style "usrt" classe les entrées par ordre de citation.
    Ainsi en changeant plain par usrt comme option dans bibliographystyle les références non citées apparaitront après celles citées.
    Bonsoir lataixseb,
    Lorsque je remplace "\bibliographystyle{plain}" par "\bibliographystyle{usrt}" dans mon ECM, la compilation BibTeX me renvoie ce message:
    Process started

    This is BibTeX, Version 0.99d (MiKTeX 2.9 64-bit) The top-level auxiliary file: ecm.aux I couldn't open style file usrt.bst ---line 21 of file ecm.aux : \bibstyle{usrt : } I'm skipping whatever remains of this command I found no style file---while reading file ecm.aux (There were 2 error messages)

    Process exited normally
    Et les référence dans pdf sont remplacés par "?"
    Y-a-til d'autres changement à opérer?

  4. #4
    Membre expérimenté Avatar de lecteur1001
    Inscrit en
    Mai 2009
    Messages
    1 526
    Détails du profil
    Informations forums :
    Inscription : Mai 2009
    Messages : 1 526
    Points : 1 554
    Points
    1 554
    Par défaut
    Citation Envoyé par Ca-Nul-Art Voir le message
    Et les référence dans pdf sont remplacés par "?"
    C'est parce que tu n'as pas suivi l'ordre de compilation que bibtex impose :
    Citation Envoyé par [URL]http://fr.wikipedia.org/wiki/BibTeX#Compilation[/URL]
    Après une compilation avec LaTeX, ces références seront mentionnées dans un fichier auxiliaire .aux. Il faudra alors compiler avec BibTeX le fichier .aux pour obtenir un fichier .bbl et un fichier .blg (fichier de log, rendant compte de la façon dont s'est passée la compilation).

    Lors de la compilation suivante avec LaTeX, le fichier .bbl sera inclus à l'endroit où il a été appelé, grâce à la commande \bibliography{nom_bibliographie}.
    Autrement dit, lancer l'exécution de latex, puis bibtex, puis de nouveau latex :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    latex mon_fichier.tex
    bibtex mon_fichier
    latex mon_fichier.tex
    À lire avant de poster : qu'est ce qu'un ECM (Exemple Complet Minimal) ?
    Règles des forums LaTeX. Quand votre problème est réglé, mettez votre discussion en
    Pour débuter en LaTeX je conseille fortement Tout ce que vous avez toujours voulu savoir sur LaTeX sans jamais oser le demander (merci Woody Allen ), livre téléchargeable gratuitement ou en vente dans le commerce pour 15 €

  5. #5
    Membre averti
    Avatar de Namrod
    Homme Profil pro
    Étudiant
    Inscrit en
    Septembre 2012
    Messages
    215
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Septembre 2012
    Messages : 215
    Points : 349
    Points
    349
    Par défaut
    À nom avis c'est plutôt qu'il s'agit du style "unsrt" et non "usrt", non ?

  6. #6
    Expert éminent sénior

    Avatar de -Nikopol-
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2013
    Messages
    2 174
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : France, Haute Marne (Champagne Ardenne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mai 2013
    Messages : 2 174
    Points : 11 289
    Points
    11 289
    Billets dans le blog
    5
    Par défaut
    Effectivement le fichier log nous dit
    The top-level auxiliary file: ecm.aux I couldn't open style file usrt.bst
    et
    I found no style file
    Donc en mettant unsrt comme style ça devrait mieux fonctionner

  7. #7
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    Citation Envoyé par lecteur1001 Voir le message
    C'est parce que tu n'as pas suivi l'ordre de compilation que bibtex impose :

    Autrement dit, lancer l'exécution de latex, puis bibtex, puis de nouveau latex :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    latex mon_fichier.tex
    bibtex mon_fichier
    latex mon_fichier.tex
    Bonjour lecteur1001
    J'ai pense avoir bien suivi l'ordre (avec les raccourcis F6 puis F11 et enfin F6).
    mais le pdf ne s'affiche pas il faut passer par "compilation rapide" pour l'afficher.

  8. #8
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    Bonjour à tous,
    avec "unsrt" ça marche mieux

    Grand Merci à vous tous

  9. #9
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    en utilisant le même ECM mais avec plus de pages, je viens de faire un constat:

    il y a un débordement d'entête des chapitres numérotés (non "starredchapter") sur les pages des chapitres non numérotés ("starredchapter"). voir page 2 et 6 de cet exemple.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    \documentclass[12pt,twoside]{book}
     
    \usepackage{amsmath,amssymb}        
    \usepackage[english,francais]{babel}
    \usepackage{lmodern}
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    %\usepackage{url}
    \usepackage[french]{minitoc}
    \setcounter{minitocdepth}{3}
    \mtcindent=15pt
     
    \setcounter{secnumdepth}{3}
    \setcounter{tocdepth}{3}
     
     
    \begin{document}
     
    \pagenumbering{roman}
     
    \addstarredchapter{Table des matières}
    \tableofcontents
    \mainmatter
     
    \chapter*{INTRODUCTION GÉNÉRALE}
    Lorem  ipsum  dolor  sit  amet,  consectetur  adipiscing  elit.  Etiam
    hendrerit suscipit massa, ac  laoreet dolor tempus vitae. Class aptent
    taciti sociosqu  ad litora torquent  per conubia nostra,  per inceptos
    himenaeos\cite{Destaillats2007}. Etiam venenatis scelerisque leo
    sed tincidunt. Nullam dolor tellus, pulvinar et euismod nec, malesuada
    ac quam. Aenean vel mauris  ligula, ut posuere turpis. Maecenas auctor
    dui vitae ipsum rhoncus tempor.  Donec eget nisi nibh, eu sollicitudin
    quam.  Class aptent  taciti sociosqu  ad litora  torquent  per conubia
    nostra, per inceptos himenaeos.
     
     
     
    \chapter{ÉTAT DE L'ART }
     
    Lorem  ipsum  dolor  sit  amet,  consectetur  adipiscing  elit\cite{Schleibinger2008}.  Etiam
    hendrerit suscipit massa, ac  laoreet dolor tempus vitae. Class aptent
    taciti sociosqu  ad litora torquent  per conubia nostra,  per inceptos
    himenaeos.   Pellentesque    ultricies   nisi   vel    urna   faucibus
    adipiscing.  Aliquam adipiscing  tellus  nec magna  aliquet eu  cursus
    mauris interdum. Suspendisse  potenti.
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
     Etiam venenatis scelerisque leo
    sed tincidunt. Nullam dolor tellus, pulvinar et euismod nec, malesuada
    ac quam. Aenean vel mauris  ligula, ut posuere turpis. Maecenas auctor
    dui vitae ipsum rhoncus tempor.  Donec eget nisi nibh, eu sollicitudin
    quam.  Class aptent  taciti sociosqu  ad litora  torquent  per conubia
    nostra, per inceptos himenaeos. \\
    \\
    \\
    \\\\
    \\\\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
    \\
     
    Phasellus vitae ullamcorper velit. Cum
    sociis  natoque penatibus  et magnis  dis parturient  montes, nascetur
    ridiculus mus. Ut metus arcu, facilisis at semper quis, condimentum in
    magna.
     
     
    \chapter*{CONCLUSION ET PERSPECTIVES}
    Lorem  ipsum  dolor  sit  amet,  consectetur  adipiscing  elit.  Etiam
    hendrerit suscipit massa, ac  laoreet dolor tempus vitae. Class aptent
    taciti sociosqu  ad litora torquent  per conubia nostra,  per inceptos
    himenaeos.   Pellentesque    ultricies   nisi   vel    urna   faucibus
    adipiscing. Donec eget nisi nibh, eu sollicitudin
    quam.  Class aptent  taciti sociosqu  ad litora  torquent  per conubia
    nostra, per inceptos himenaeos\cite{Destaillats2007}. Phasellus vitae ullamcorper velit. Cum
    sociis  natoque penatibus  et magnis  dis parturient  montes, nascetur
    ridiculus mus. Ut metus arcu, facilisis at semper quis, condimentum in
    magna.
     
     
    \bibliographystyle{unsrt}
     
    \bibliography{Biblio}
     
    \nocite{*}
     
     
    \end{document}

  10. #10
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    Il me semble que le style de bibliographie n'y est pour rien.

  11. #11
    Expert éminent sénior

    Avatar de -Nikopol-
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2013
    Messages
    2 174
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : France, Haute Marne (Champagne Ardenne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mai 2013
    Messages : 2 174
    Points : 11 289
    Points
    11 289
    Billets dans le blog
    5
    Par défaut
    Je ne vois pas l’intérêt ici du \addstarredchapter{table des matières}.
    Pour les entêtes et pieds de pages ton problème vient des \chapter*.
    Pour régler facilement les entêtes et pieds de page il y a le package fancyhdr.

  12. #12
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    Bonjour

    Quelle commande faut-il utiliser? J'ai déclaré le package fancyhdr mais il n'y a aucun changement.

  13. #13
    Expert éminent sénior

    Avatar de -Nikopol-
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2013
    Messages
    2 174
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : France, Haute Marne (Champagne Ardenne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : Enseignement

    Informations forums :
    Inscription : Mai 2013
    Messages : 2 174
    Points : 11 289
    Points
    11 289
    Billets dans le blog
    5
    Par défaut
    Regarde la doc tout y est indiqué.

  14. #14
    Membre à l'essai
    Homme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 32
    Points : 13
    Points
    13
    Par défaut
    Bonjour lataixseb

    Lorsque je remplace chapter*{...} par \chapter*{... \markboth{...}{} }
    Je n'ai plus de débordement. Il me semble que c'est la même solution que tu as recommandé à mayssa.

    Merci

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [FLASH MX] Lecture à l'envers
    Par Mouf dans le forum ActionScript 1 & ActionScript 2
    Réponses: 9
    Dernier message: 30/04/2006, 00h04
  2. jouer une animation a l'envers
    Par sylvain_bos dans le forum DirectX
    Réponses: 2
    Dernier message: 18/05/2004, 21h32
  3. unicité de champ les uns envers les autres
    Par Jovial dans le forum SQL Procédural
    Réponses: 6
    Dernier message: 16/04/2004, 08h34

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo