How to make a numbered list which start numbering from number of title?











up vote
1
down vote

favorite












I need to make like this:
enter image description here



As seen in the picture, the number of each new title also increases by one.



I found a similar example, but this is slightly different:
stackoverflow.com/q/2007627










share|improve this question


















  • 1




    Using the enumitem package, I would say begin{enumerate}[label={thesection.alph*,]}, or more convenient, with setlist[enumerate,2]{label*={alph*.}} for the 2nd level
    – Christian Hupfer
    2 days ago












  • Thank you! It helped me.
    – ERAFY
    2 days ago










  • It should have been begin{enumerate}[label={thesection.arabic*,}], of course, using arabic* instead of alph.
    – Christian Hupfer
    2 days ago















up vote
1
down vote

favorite












I need to make like this:
enter image description here



As seen in the picture, the number of each new title also increases by one.



I found a similar example, but this is slightly different:
stackoverflow.com/q/2007627










share|improve this question


















  • 1




    Using the enumitem package, I would say begin{enumerate}[label={thesection.alph*,]}, or more convenient, with setlist[enumerate,2]{label*={alph*.}} for the 2nd level
    – Christian Hupfer
    2 days ago












  • Thank you! It helped me.
    – ERAFY
    2 days ago










  • It should have been begin{enumerate}[label={thesection.arabic*,}], of course, using arabic* instead of alph.
    – Christian Hupfer
    2 days ago













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I need to make like this:
enter image description here



As seen in the picture, the number of each new title also increases by one.



I found a similar example, but this is slightly different:
stackoverflow.com/q/2007627










share|improve this question













I need to make like this:
enter image description here



As seen in the picture, the number of each new title also increases by one.



I found a similar example, but this is slightly different:
stackoverflow.com/q/2007627







lists enumerate






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 2 days ago









ERAFY

586




586








  • 1




    Using the enumitem package, I would say begin{enumerate}[label={thesection.alph*,]}, or more convenient, with setlist[enumerate,2]{label*={alph*.}} for the 2nd level
    – Christian Hupfer
    2 days ago












  • Thank you! It helped me.
    – ERAFY
    2 days ago










  • It should have been begin{enumerate}[label={thesection.arabic*,}], of course, using arabic* instead of alph.
    – Christian Hupfer
    2 days ago














  • 1




    Using the enumitem package, I would say begin{enumerate}[label={thesection.alph*,]}, or more convenient, with setlist[enumerate,2]{label*={alph*.}} for the 2nd level
    – Christian Hupfer
    2 days ago












  • Thank you! It helped me.
    – ERAFY
    2 days ago










  • It should have been begin{enumerate}[label={thesection.arabic*,}], of course, using arabic* instead of alph.
    – Christian Hupfer
    2 days ago








1




1




Using the enumitem package, I would say begin{enumerate}[label={thesection.alph*,]}, or more convenient, with setlist[enumerate,2]{label*={alph*.}} for the 2nd level
– Christian Hupfer
2 days ago






Using the enumitem package, I would say begin{enumerate}[label={thesection.alph*,]}, or more convenient, with setlist[enumerate,2]{label*={alph*.}} for the 2nd level
– Christian Hupfer
2 days ago














Thank you! It helped me.
– ERAFY
2 days ago




Thank you! It helped me.
– ERAFY
2 days ago












It should have been begin{enumerate}[label={thesection.arabic*,}], of course, using arabic* instead of alph.
– Christian Hupfer
2 days ago




It should have been begin{enumerate}[label={thesection.arabic*,}], of course, using arabic* instead of alph.
– Christian Hupfer
2 days ago










1 Answer
1






active

oldest

votes

















up vote
1
down vote













Solution:



renewcommandthesection{arabic{section}} % Optional. Removing the chapter number from the section number.

section{First title}
begin{enumerate}[label={thesection.arabic*.}]
item First topic:
begin{enumerate}[label*=arabic*.]
item First Subtopic;
item Second Subtopic;
item Third Subtopic.
end{enumerate}
item Second topic:
begin{enumerate}[label*=arabic*.]
item First Subtopic;
item Second Subtopic;
item Third Subtopic.
end{enumerate}
end{enumerate}

section{Second title}
begin{enumerate}[label={thesection.arabic*.}]
item First topic:
begin{enumerate}[label*=arabic*.]
item First Subtopic;
item Second Subtopic;
item Third Subtopic.
end{enumerate}
item Second topic:
begin{enumerate}[label*=arabic*.]
item First Subtopic;
item Second Subtopic;
item Third Subtopic.
end{enumerate}
end{enumerate}





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%2f460495%2fhow-to-make-a-numbered-list-which-start-numbering-from-number-of-title%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote













    Solution:



    renewcommandthesection{arabic{section}} % Optional. Removing the chapter number from the section number.

    section{First title}
    begin{enumerate}[label={thesection.arabic*.}]
    item First topic:
    begin{enumerate}[label*=arabic*.]
    item First Subtopic;
    item Second Subtopic;
    item Third Subtopic.
    end{enumerate}
    item Second topic:
    begin{enumerate}[label*=arabic*.]
    item First Subtopic;
    item Second Subtopic;
    item Third Subtopic.
    end{enumerate}
    end{enumerate}

    section{Second title}
    begin{enumerate}[label={thesection.arabic*.}]
    item First topic:
    begin{enumerate}[label*=arabic*.]
    item First Subtopic;
    item Second Subtopic;
    item Third Subtopic.
    end{enumerate}
    item Second topic:
    begin{enumerate}[label*=arabic*.]
    item First Subtopic;
    item Second Subtopic;
    item Third Subtopic.
    end{enumerate}
    end{enumerate}





    share|improve this answer

























      up vote
      1
      down vote













      Solution:



      renewcommandthesection{arabic{section}} % Optional. Removing the chapter number from the section number.

      section{First title}
      begin{enumerate}[label={thesection.arabic*.}]
      item First topic:
      begin{enumerate}[label*=arabic*.]
      item First Subtopic;
      item Second Subtopic;
      item Third Subtopic.
      end{enumerate}
      item Second topic:
      begin{enumerate}[label*=arabic*.]
      item First Subtopic;
      item Second Subtopic;
      item Third Subtopic.
      end{enumerate}
      end{enumerate}

      section{Second title}
      begin{enumerate}[label={thesection.arabic*.}]
      item First topic:
      begin{enumerate}[label*=arabic*.]
      item First Subtopic;
      item Second Subtopic;
      item Third Subtopic.
      end{enumerate}
      item Second topic:
      begin{enumerate}[label*=arabic*.]
      item First Subtopic;
      item Second Subtopic;
      item Third Subtopic.
      end{enumerate}
      end{enumerate}





      share|improve this answer























        up vote
        1
        down vote










        up vote
        1
        down vote









        Solution:



        renewcommandthesection{arabic{section}} % Optional. Removing the chapter number from the section number.

        section{First title}
        begin{enumerate}[label={thesection.arabic*.}]
        item First topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        item Second topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        end{enumerate}

        section{Second title}
        begin{enumerate}[label={thesection.arabic*.}]
        item First topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        item Second topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        end{enumerate}





        share|improve this answer












        Solution:



        renewcommandthesection{arabic{section}} % Optional. Removing the chapter number from the section number.

        section{First title}
        begin{enumerate}[label={thesection.arabic*.}]
        item First topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        item Second topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        end{enumerate}

        section{Second title}
        begin{enumerate}[label={thesection.arabic*.}]
        item First topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        item Second topic:
        begin{enumerate}[label*=arabic*.]
        item First Subtopic;
        item Second Subtopic;
        item Third Subtopic.
        end{enumerate}
        end{enumerate}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 2 days ago









        ERAFY

        586




        586






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f460495%2fhow-to-make-a-numbered-list-which-start-numbering-from-number-of-title%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

            サソリ

            広島県道265号伴広島線

            Setup Asymptote in Texstudio