Modifying toc in KOMA-Script











up vote
3
down vote

favorite












I have found out that, in KOMA-Script, I can modify the TOC (see the KOMA-manual, page 72). It can be done by using the option toc.



However, how do I use this option? To which command do I have to add it?
And (teaching a man to fish) - how can I find this out from the manual?










share|improve this question




























    up vote
    3
    down vote

    favorite












    I have found out that, in KOMA-Script, I can modify the TOC (see the KOMA-manual, page 72). It can be done by using the option toc.



    However, how do I use this option? To which command do I have to add it?
    And (teaching a man to fish) - how can I find this out from the manual?










    share|improve this question


























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      I have found out that, in KOMA-Script, I can modify the TOC (see the KOMA-manual, page 72). It can be done by using the option toc.



      However, how do I use this option? To which command do I have to add it?
      And (teaching a man to fish) - how can I find this out from the manual?










      share|improve this question















      I have found out that, in KOMA-Script, I can modify the TOC (see the KOMA-manual, page 72). It can be done by using the option toc.



      However, how do I use this option? To which command do I have to add it?
      And (teaching a man to fish) - how can I find this out from the manual?







      table-of-contents koma-script






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago









      Kurt

      34k846156




      34k846156










      asked 2 days ago









      Lukas

      705




      705






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          5
          down vote



          accepted










          You can add option toc=<value> as class option



          documentclass[toc=<value>]{<KOMA-Script class>}


          or later using



          KOMAoptions{toc=<value>}


          or you can use



          KOMAoption{toc}{<value list>}




          Examples:



          documentclass[toc=flat,toc=listof]{scrartcl}
          usepackage{blindtext}
          begin{document}
          tableofcontents
          listoffigures
          Blinddocument
          end{document}


          or



          documentclass{scrartcl}
          KOMAoptions{toc=flat,toc=listof}
          usepackage{blindtext}
          begin{document}
          tableofcontents
          listoffigures
          Blinddocument
          end{document}


          or



          documentclass{scrartcl}
          KOMAoption{toc}{flat,listof}
          usepackage{blindtext}
          begin{document}
          tableofcontents
          listoffigures
          Blinddocument
          end{document}


          results all in



          enter image description here





          There is a table with all possible values of option toc in the documentation (»Table 3.5.: Available values of the toc option to set the format and contents of the table of contents«).



          More information regarding the setting of KOMA-Script options can be found eg in section »3.1. Early or Late Selection of Options«.





          Additional remark:



          Note that the KOMA-Script classes load and use package tocbasic for the TOC, LOF, LOT and maybe other lists. So you could also use the macros and settings of tocbasic to modify TOC entries. See »Chapter 15: Managing Content Lists with tocbasic« in »Part II. KOMA -Script for Advanced Users and Experts«.






          share|improve this answer






























            up vote
            2
            down vote













            Well, in chapter 3.9 you can read:




            3.9. Table of Contents The title and optional abstract are normally followed by a table of contents. Often you also find additional lists
            of the floating environments, such as tables and figures, after the
            table of contents (see section 3.20). In addition to the options
            documented in this section,




            The last sentence tells it to you: chapter 3 discussed the main classes and toc is a class option for them ...



            So try the follwing MWE



            documentclass[%
            fontsize=12pt,
            div=12,
            toc=left % <==========================================================
            ]{scrreprt}

            usepackage[ngerman]{babel}
            usepackage[utf8]{inputenc}
            usepackage[T1]{fontenc}
            usepackage{blindtext} % dummy text

            usepackage{lmodern}

            setcounter{secnumdepth}{3}
            setcounter{tocdepth}{2}


            begin{document}

            tableofcontents
            Blinddocument

            end{document}


            you get the toc:



            enter image description here



            Change the option for toc=bibliographynumbered you get the following resulting toc:



            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',
              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%2f461390%2fmodifying-toc-in-koma-script%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








              up vote
              5
              down vote



              accepted










              You can add option toc=<value> as class option



              documentclass[toc=<value>]{<KOMA-Script class>}


              or later using



              KOMAoptions{toc=<value>}


              or you can use



              KOMAoption{toc}{<value list>}




              Examples:



              documentclass[toc=flat,toc=listof]{scrartcl}
              usepackage{blindtext}
              begin{document}
              tableofcontents
              listoffigures
              Blinddocument
              end{document}


              or



              documentclass{scrartcl}
              KOMAoptions{toc=flat,toc=listof}
              usepackage{blindtext}
              begin{document}
              tableofcontents
              listoffigures
              Blinddocument
              end{document}


              or



              documentclass{scrartcl}
              KOMAoption{toc}{flat,listof}
              usepackage{blindtext}
              begin{document}
              tableofcontents
              listoffigures
              Blinddocument
              end{document}


              results all in



              enter image description here





              There is a table with all possible values of option toc in the documentation (»Table 3.5.: Available values of the toc option to set the format and contents of the table of contents«).



              More information regarding the setting of KOMA-Script options can be found eg in section »3.1. Early or Late Selection of Options«.





              Additional remark:



              Note that the KOMA-Script classes load and use package tocbasic for the TOC, LOF, LOT and maybe other lists. So you could also use the macros and settings of tocbasic to modify TOC entries. See »Chapter 15: Managing Content Lists with tocbasic« in »Part II. KOMA -Script for Advanced Users and Experts«.






              share|improve this answer



























                up vote
                5
                down vote



                accepted










                You can add option toc=<value> as class option



                documentclass[toc=<value>]{<KOMA-Script class>}


                or later using



                KOMAoptions{toc=<value>}


                or you can use



                KOMAoption{toc}{<value list>}




                Examples:



                documentclass[toc=flat,toc=listof]{scrartcl}
                usepackage{blindtext}
                begin{document}
                tableofcontents
                listoffigures
                Blinddocument
                end{document}


                or



                documentclass{scrartcl}
                KOMAoptions{toc=flat,toc=listof}
                usepackage{blindtext}
                begin{document}
                tableofcontents
                listoffigures
                Blinddocument
                end{document}


                or



                documentclass{scrartcl}
                KOMAoption{toc}{flat,listof}
                usepackage{blindtext}
                begin{document}
                tableofcontents
                listoffigures
                Blinddocument
                end{document}


                results all in



                enter image description here





                There is a table with all possible values of option toc in the documentation (»Table 3.5.: Available values of the toc option to set the format and contents of the table of contents«).



                More information regarding the setting of KOMA-Script options can be found eg in section »3.1. Early or Late Selection of Options«.





                Additional remark:



                Note that the KOMA-Script classes load and use package tocbasic for the TOC, LOF, LOT and maybe other lists. So you could also use the macros and settings of tocbasic to modify TOC entries. See »Chapter 15: Managing Content Lists with tocbasic« in »Part II. KOMA -Script for Advanced Users and Experts«.






                share|improve this answer

























                  up vote
                  5
                  down vote



                  accepted







                  up vote
                  5
                  down vote



                  accepted






                  You can add option toc=<value> as class option



                  documentclass[toc=<value>]{<KOMA-Script class>}


                  or later using



                  KOMAoptions{toc=<value>}


                  or you can use



                  KOMAoption{toc}{<value list>}




                  Examples:



                  documentclass[toc=flat,toc=listof]{scrartcl}
                  usepackage{blindtext}
                  begin{document}
                  tableofcontents
                  listoffigures
                  Blinddocument
                  end{document}


                  or



                  documentclass{scrartcl}
                  KOMAoptions{toc=flat,toc=listof}
                  usepackage{blindtext}
                  begin{document}
                  tableofcontents
                  listoffigures
                  Blinddocument
                  end{document}


                  or



                  documentclass{scrartcl}
                  KOMAoption{toc}{flat,listof}
                  usepackage{blindtext}
                  begin{document}
                  tableofcontents
                  listoffigures
                  Blinddocument
                  end{document}


                  results all in



                  enter image description here





                  There is a table with all possible values of option toc in the documentation (»Table 3.5.: Available values of the toc option to set the format and contents of the table of contents«).



                  More information regarding the setting of KOMA-Script options can be found eg in section »3.1. Early or Late Selection of Options«.





                  Additional remark:



                  Note that the KOMA-Script classes load and use package tocbasic for the TOC, LOF, LOT and maybe other lists. So you could also use the macros and settings of tocbasic to modify TOC entries. See »Chapter 15: Managing Content Lists with tocbasic« in »Part II. KOMA -Script for Advanced Users and Experts«.






                  share|improve this answer














                  You can add option toc=<value> as class option



                  documentclass[toc=<value>]{<KOMA-Script class>}


                  or later using



                  KOMAoptions{toc=<value>}


                  or you can use



                  KOMAoption{toc}{<value list>}




                  Examples:



                  documentclass[toc=flat,toc=listof]{scrartcl}
                  usepackage{blindtext}
                  begin{document}
                  tableofcontents
                  listoffigures
                  Blinddocument
                  end{document}


                  or



                  documentclass{scrartcl}
                  KOMAoptions{toc=flat,toc=listof}
                  usepackage{blindtext}
                  begin{document}
                  tableofcontents
                  listoffigures
                  Blinddocument
                  end{document}


                  or



                  documentclass{scrartcl}
                  KOMAoption{toc}{flat,listof}
                  usepackage{blindtext}
                  begin{document}
                  tableofcontents
                  listoffigures
                  Blinddocument
                  end{document}


                  results all in



                  enter image description here





                  There is a table with all possible values of option toc in the documentation (»Table 3.5.: Available values of the toc option to set the format and contents of the table of contents«).



                  More information regarding the setting of KOMA-Script options can be found eg in section »3.1. Early or Late Selection of Options«.





                  Additional remark:



                  Note that the KOMA-Script classes load and use package tocbasic for the TOC, LOF, LOT and maybe other lists. So you could also use the macros and settings of tocbasic to modify TOC entries. See »Chapter 15: Managing Content Lists with tocbasic« in »Part II. KOMA -Script for Advanced Users and Experts«.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 2 days ago

























                  answered 2 days ago









                  esdd

                  57.8k34485




                  57.8k34485






















                      up vote
                      2
                      down vote













                      Well, in chapter 3.9 you can read:




                      3.9. Table of Contents The title and optional abstract are normally followed by a table of contents. Often you also find additional lists
                      of the floating environments, such as tables and figures, after the
                      table of contents (see section 3.20). In addition to the options
                      documented in this section,




                      The last sentence tells it to you: chapter 3 discussed the main classes and toc is a class option for them ...



                      So try the follwing MWE



                      documentclass[%
                      fontsize=12pt,
                      div=12,
                      toc=left % <==========================================================
                      ]{scrreprt}

                      usepackage[ngerman]{babel}
                      usepackage[utf8]{inputenc}
                      usepackage[T1]{fontenc}
                      usepackage{blindtext} % dummy text

                      usepackage{lmodern}

                      setcounter{secnumdepth}{3}
                      setcounter{tocdepth}{2}


                      begin{document}

                      tableofcontents
                      Blinddocument

                      end{document}


                      you get the toc:



                      enter image description here



                      Change the option for toc=bibliographynumbered you get the following resulting toc:



                      enter image description here






                      share|improve this answer

























                        up vote
                        2
                        down vote













                        Well, in chapter 3.9 you can read:




                        3.9. Table of Contents The title and optional abstract are normally followed by a table of contents. Often you also find additional lists
                        of the floating environments, such as tables and figures, after the
                        table of contents (see section 3.20). In addition to the options
                        documented in this section,




                        The last sentence tells it to you: chapter 3 discussed the main classes and toc is a class option for them ...



                        So try the follwing MWE



                        documentclass[%
                        fontsize=12pt,
                        div=12,
                        toc=left % <==========================================================
                        ]{scrreprt}

                        usepackage[ngerman]{babel}
                        usepackage[utf8]{inputenc}
                        usepackage[T1]{fontenc}
                        usepackage{blindtext} % dummy text

                        usepackage{lmodern}

                        setcounter{secnumdepth}{3}
                        setcounter{tocdepth}{2}


                        begin{document}

                        tableofcontents
                        Blinddocument

                        end{document}


                        you get the toc:



                        enter image description here



                        Change the option for toc=bibliographynumbered you get the following resulting toc:



                        enter image description here






                        share|improve this answer























                          up vote
                          2
                          down vote










                          up vote
                          2
                          down vote









                          Well, in chapter 3.9 you can read:




                          3.9. Table of Contents The title and optional abstract are normally followed by a table of contents. Often you also find additional lists
                          of the floating environments, such as tables and figures, after the
                          table of contents (see section 3.20). In addition to the options
                          documented in this section,




                          The last sentence tells it to you: chapter 3 discussed the main classes and toc is a class option for them ...



                          So try the follwing MWE



                          documentclass[%
                          fontsize=12pt,
                          div=12,
                          toc=left % <==========================================================
                          ]{scrreprt}

                          usepackage[ngerman]{babel}
                          usepackage[utf8]{inputenc}
                          usepackage[T1]{fontenc}
                          usepackage{blindtext} % dummy text

                          usepackage{lmodern}

                          setcounter{secnumdepth}{3}
                          setcounter{tocdepth}{2}


                          begin{document}

                          tableofcontents
                          Blinddocument

                          end{document}


                          you get the toc:



                          enter image description here



                          Change the option for toc=bibliographynumbered you get the following resulting toc:



                          enter image description here






                          share|improve this answer












                          Well, in chapter 3.9 you can read:




                          3.9. Table of Contents The title and optional abstract are normally followed by a table of contents. Often you also find additional lists
                          of the floating environments, such as tables and figures, after the
                          table of contents (see section 3.20). In addition to the options
                          documented in this section,




                          The last sentence tells it to you: chapter 3 discussed the main classes and toc is a class option for them ...



                          So try the follwing MWE



                          documentclass[%
                          fontsize=12pt,
                          div=12,
                          toc=left % <==========================================================
                          ]{scrreprt}

                          usepackage[ngerman]{babel}
                          usepackage[utf8]{inputenc}
                          usepackage[T1]{fontenc}
                          usepackage{blindtext} % dummy text

                          usepackage{lmodern}

                          setcounter{secnumdepth}{3}
                          setcounter{tocdepth}{2}


                          begin{document}

                          tableofcontents
                          Blinddocument

                          end{document}


                          you get the toc:



                          enter image description here



                          Change the option for toc=bibliographynumbered you get the following resulting toc:



                          enter image description here







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 2 days ago









                          Kurt

                          34k846156




                          34k846156






























                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461390%2fmodifying-toc-in-koma-script%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

                              Quarter-circle Tiles

                              build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                              Mont Emei