Initial and final chapters appearing in the table of contents without numberingMaking the bibliography appear...

Doing something right before you need it - expression for this?

Watching something be written to a file live with tail

intersection of two sorted vectors in C++

Infinite Abelian subgroup of infinite non Abelian group example

Why does Arabsat 6A need a Falcon Heavy to launch

How do I write bicross product symbols in latex?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

I Accidentally Deleted a Stock Terminal Theme

How badly should I try to prevent a user from XSSing themselves?

What does it mean to describe someone as a butt steak?

UK: Is there precedent for the governments e-petition site changing the direction of a government decision?

Can a rocket refuel on Mars from water?

Did Shadowfax go to Valinor?

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

Reserved de-dupe rules

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

Assassin's bullet with mercury

Twin primes whose sum is a cube

Can I use a neutral wire from another outlet to repair a broken neutral?

Forgetting the musical notes while performing in concert

In Romance of the Three Kingdoms why do people still use bamboo sticks when papers are already invented?

How do conventional missiles fly?

What's the difference between 'rename' and 'mv'?

Arrow those variables!



Initial and final chapters appearing in the table of contents without numbering


Making the bibliography appear in the table of contentstable of contents entries and formattingA part with sections and subsections but without chapters in ToCLast chapter not appearing in table of contentsNo page numbers after chapters in the contentsRemove empty page before chapterTable of contents: Page numbering for questions and solutions side-by-side?Table of contents: Chapters side-by-side in tocTable of contents only for the appendixIncorrect bookmark level for unnumbered section when added to the table of contents













5















I'm editing a document whose preamble starts with



documentclass [12pt, a4paper]{extbook}


I wish the chapter 'Introduction and its sections' appear in table
contents at the beginning of the text before the unnumbered chapter 1.



I also would like a chapter that I call 'Prelude' and its sections' appear in table
contents at the beginning of the text before the unnumbered chapter 1.



How can I do this?




Introduction .................................................
.................



             nontechnical introduction .........................

intrudução technique .................................

structure of the thesis ....................................


Chapter 1 ................................................
..................



             Section 1 ..................................

Section 2 ..................................

Section 3 ..................................


Chapter 9 ................................................
................



             Section 1 ..................................

Section 2 ..................................

Section 3 ..................................


Prelude
..................................................................



             Other open issues .........................

New techniques ............................










share|improve this question





























    5















    I'm editing a document whose preamble starts with



    documentclass [12pt, a4paper]{extbook}


    I wish the chapter 'Introduction and its sections' appear in table
    contents at the beginning of the text before the unnumbered chapter 1.



    I also would like a chapter that I call 'Prelude' and its sections' appear in table
    contents at the beginning of the text before the unnumbered chapter 1.



    How can I do this?




    Introduction .................................................
    .................



                 nontechnical introduction .........................

    intrudução technique .................................

    structure of the thesis ....................................


    Chapter 1 ................................................
    ..................



                 Section 1 ..................................

    Section 2 ..................................

    Section 3 ..................................


    Chapter 9 ................................................
    ................



                 Section 1 ..................................

    Section 2 ..................................

    Section 3 ..................................


    Prelude
    ..................................................................



                 Other open issues .........................

    New techniques ............................










    share|improve this question



























      5












      5








      5








      I'm editing a document whose preamble starts with



      documentclass [12pt, a4paper]{extbook}


      I wish the chapter 'Introduction and its sections' appear in table
      contents at the beginning of the text before the unnumbered chapter 1.



      I also would like a chapter that I call 'Prelude' and its sections' appear in table
      contents at the beginning of the text before the unnumbered chapter 1.



      How can I do this?




      Introduction .................................................
      .................



                   nontechnical introduction .........................

      intrudução technique .................................

      structure of the thesis ....................................


      Chapter 1 ................................................
      ..................



                   Section 1 ..................................

      Section 2 ..................................

      Section 3 ..................................


      Chapter 9 ................................................
      ................



                   Section 1 ..................................

      Section 2 ..................................

      Section 3 ..................................


      Prelude
      ..................................................................



                   Other open issues .........................

      New techniques ............................










      share|improve this question
















      I'm editing a document whose preamble starts with



      documentclass [12pt, a4paper]{extbook}


      I wish the chapter 'Introduction and its sections' appear in table
      contents at the beginning of the text before the unnumbered chapter 1.



      I also would like a chapter that I call 'Prelude' and its sections' appear in table
      contents at the beginning of the text before the unnumbered chapter 1.



      How can I do this?




      Introduction .................................................
      .................



                   nontechnical introduction .........................

      intrudução technique .................................

      structure of the thesis ....................................


      Chapter 1 ................................................
      ..................



                   Section 1 ..................................

      Section 2 ..................................

      Section 3 ..................................


      Chapter 9 ................................................
      ................



                   Section 1 ..................................

      Section 2 ..................................

      Section 3 ..................................


      Prelude
      ..................................................................



                   Other open issues .........................

      New techniques ............................







      sectioning table-of-contents numbering chapters






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 11 '13 at 14:27









      lockstep

      193k53593723




      193k53593723










      asked Mar 11 '13 at 14:05









      MathOverviewMathOverview

      1,04941525




      1,04941525






















          2 Answers
          2






          active

          oldest

          votes


















          4














          I think you are looking for the starred versions of the section, part etc and a addcontentsline{toc}{}{}.



          For example:



          documentclass[12pt,a4paper]{extbook}

          begin{document}
          tableofcontents
          chapter*{Introduction}addcontentsline{toc}{chapter}{Introduction}
          section*{nontechnical introduction}addcontentsline{toc}{section}{nontechnical introduction}
          section*{intrudução technique}addcontentsline{toc}{section}{intrudução technique}
          section*{structure of the thesis}addcontentsline{toc}{section}{structure of the thesis}

          chapter{Chapter 1}
          section{Section 1}
          section{Section 2}

          chapter{Chapter 9}
          section{Section 1}
          section{Section 2}

          chapter*{Prelude}addcontentsline{toc}{chapter}{Prelude}
          section*{Other open issues}addcontentsline{toc}{section}{Other open issues}
          section*{New techniques}addcontentsline{toc}{section}{New techniques}
          end{document}


          enter image description here






          share|improve this answer































            2














            An easier solution is to use KOMA-script and the scrbook-class and utilise the addchapand addsec commands. They are similar to the standard commands chapter and section except that they are unnumbered. They produce both a running
            head and an entry in the table of contents.



            documentclass{scrbook}

            begin{document}
            tableofcontents
            addchap{Introduction}
            addsec{nontechnical introduction}
            addsec{intrudução technique}
            addsec{structure of the thesis}

            chapter{Chapter 1}
            section{Section 1}
            section{Section 2}

            chapter{Chapter 9}
            section{Section 1}
            section{Section 2}

            addchap{Prelude}
            addsec{Other open issues}
            addsec{New techniques}
            end{document}


            enter image description here






            share|improve this answer
























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "85"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f101940%2finitial-and-final-chapters-appearing-in-the-table-of-contents-without-numbering%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              4














              I think you are looking for the starred versions of the section, part etc and a addcontentsline{toc}{}{}.



              For example:



              documentclass[12pt,a4paper]{extbook}

              begin{document}
              tableofcontents
              chapter*{Introduction}addcontentsline{toc}{chapter}{Introduction}
              section*{nontechnical introduction}addcontentsline{toc}{section}{nontechnical introduction}
              section*{intrudução technique}addcontentsline{toc}{section}{intrudução technique}
              section*{structure of the thesis}addcontentsline{toc}{section}{structure of the thesis}

              chapter{Chapter 1}
              section{Section 1}
              section{Section 2}

              chapter{Chapter 9}
              section{Section 1}
              section{Section 2}

              chapter*{Prelude}addcontentsline{toc}{chapter}{Prelude}
              section*{Other open issues}addcontentsline{toc}{section}{Other open issues}
              section*{New techniques}addcontentsline{toc}{section}{New techniques}
              end{document}


              enter image description here






              share|improve this answer




























                4














                I think you are looking for the starred versions of the section, part etc and a addcontentsline{toc}{}{}.



                For example:



                documentclass[12pt,a4paper]{extbook}

                begin{document}
                tableofcontents
                chapter*{Introduction}addcontentsline{toc}{chapter}{Introduction}
                section*{nontechnical introduction}addcontentsline{toc}{section}{nontechnical introduction}
                section*{intrudução technique}addcontentsline{toc}{section}{intrudução technique}
                section*{structure of the thesis}addcontentsline{toc}{section}{structure of the thesis}

                chapter{Chapter 1}
                section{Section 1}
                section{Section 2}

                chapter{Chapter 9}
                section{Section 1}
                section{Section 2}

                chapter*{Prelude}addcontentsline{toc}{chapter}{Prelude}
                section*{Other open issues}addcontentsline{toc}{section}{Other open issues}
                section*{New techniques}addcontentsline{toc}{section}{New techniques}
                end{document}


                enter image description here






                share|improve this answer


























                  4












                  4








                  4







                  I think you are looking for the starred versions of the section, part etc and a addcontentsline{toc}{}{}.



                  For example:



                  documentclass[12pt,a4paper]{extbook}

                  begin{document}
                  tableofcontents
                  chapter*{Introduction}addcontentsline{toc}{chapter}{Introduction}
                  section*{nontechnical introduction}addcontentsline{toc}{section}{nontechnical introduction}
                  section*{intrudução technique}addcontentsline{toc}{section}{intrudução technique}
                  section*{structure of the thesis}addcontentsline{toc}{section}{structure of the thesis}

                  chapter{Chapter 1}
                  section{Section 1}
                  section{Section 2}

                  chapter{Chapter 9}
                  section{Section 1}
                  section{Section 2}

                  chapter*{Prelude}addcontentsline{toc}{chapter}{Prelude}
                  section*{Other open issues}addcontentsline{toc}{section}{Other open issues}
                  section*{New techniques}addcontentsline{toc}{section}{New techniques}
                  end{document}


                  enter image description here






                  share|improve this answer













                  I think you are looking for the starred versions of the section, part etc and a addcontentsline{toc}{}{}.



                  For example:



                  documentclass[12pt,a4paper]{extbook}

                  begin{document}
                  tableofcontents
                  chapter*{Introduction}addcontentsline{toc}{chapter}{Introduction}
                  section*{nontechnical introduction}addcontentsline{toc}{section}{nontechnical introduction}
                  section*{intrudução technique}addcontentsline{toc}{section}{intrudução technique}
                  section*{structure of the thesis}addcontentsline{toc}{section}{structure of the thesis}

                  chapter{Chapter 1}
                  section{Section 1}
                  section{Section 2}

                  chapter{Chapter 9}
                  section{Section 1}
                  section{Section 2}

                  chapter*{Prelude}addcontentsline{toc}{chapter}{Prelude}
                  section*{Other open issues}addcontentsline{toc}{section}{Other open issues}
                  section*{New techniques}addcontentsline{toc}{section}{New techniques}
                  end{document}


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 11 '13 at 14:16









                  m0nhawkm0nhawk

                  7,52453166




                  7,52453166























                      2














                      An easier solution is to use KOMA-script and the scrbook-class and utilise the addchapand addsec commands. They are similar to the standard commands chapter and section except that they are unnumbered. They produce both a running
                      head and an entry in the table of contents.



                      documentclass{scrbook}

                      begin{document}
                      tableofcontents
                      addchap{Introduction}
                      addsec{nontechnical introduction}
                      addsec{intrudução technique}
                      addsec{structure of the thesis}

                      chapter{Chapter 1}
                      section{Section 1}
                      section{Section 2}

                      chapter{Chapter 9}
                      section{Section 1}
                      section{Section 2}

                      addchap{Prelude}
                      addsec{Other open issues}
                      addsec{New techniques}
                      end{document}


                      enter image description here






                      share|improve this answer




























                        2














                        An easier solution is to use KOMA-script and the scrbook-class and utilise the addchapand addsec commands. They are similar to the standard commands chapter and section except that they are unnumbered. They produce both a running
                        head and an entry in the table of contents.



                        documentclass{scrbook}

                        begin{document}
                        tableofcontents
                        addchap{Introduction}
                        addsec{nontechnical introduction}
                        addsec{intrudução technique}
                        addsec{structure of the thesis}

                        chapter{Chapter 1}
                        section{Section 1}
                        section{Section 2}

                        chapter{Chapter 9}
                        section{Section 1}
                        section{Section 2}

                        addchap{Prelude}
                        addsec{Other open issues}
                        addsec{New techniques}
                        end{document}


                        enter image description here






                        share|improve this answer


























                          2












                          2








                          2







                          An easier solution is to use KOMA-script and the scrbook-class and utilise the addchapand addsec commands. They are similar to the standard commands chapter and section except that they are unnumbered. They produce both a running
                          head and an entry in the table of contents.



                          documentclass{scrbook}

                          begin{document}
                          tableofcontents
                          addchap{Introduction}
                          addsec{nontechnical introduction}
                          addsec{intrudução technique}
                          addsec{structure of the thesis}

                          chapter{Chapter 1}
                          section{Section 1}
                          section{Section 2}

                          chapter{Chapter 9}
                          section{Section 1}
                          section{Section 2}

                          addchap{Prelude}
                          addsec{Other open issues}
                          addsec{New techniques}
                          end{document}


                          enter image description here






                          share|improve this answer













                          An easier solution is to use KOMA-script and the scrbook-class and utilise the addchapand addsec commands. They are similar to the standard commands chapter and section except that they are unnumbered. They produce both a running
                          head and an entry in the table of contents.



                          documentclass{scrbook}

                          begin{document}
                          tableofcontents
                          addchap{Introduction}
                          addsec{nontechnical introduction}
                          addsec{intrudução technique}
                          addsec{structure of the thesis}

                          chapter{Chapter 1}
                          section{Section 1}
                          section{Section 2}

                          chapter{Chapter 9}
                          section{Section 1}
                          section{Section 2}

                          addchap{Prelude}
                          addsec{Other open issues}
                          addsec{New techniques}
                          end{document}


                          enter image description here







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 3 hours ago









                          SveinungSveinung

                          11.1k23256




                          11.1k23256






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f101940%2finitial-and-final-chapters-appearing-in-the-table-of-contents-without-numbering%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Installing LyX: “No textclass is found.”LyX installation error- text class not found- 'Reconfigure' or...

                              (1602) Indiana Índice Designación y nombre Características orbitales Véase...

                              Universidad Autónoma de Occidente Índice Historia Campus Facultades Programas Académicos Medios de...