format labels of enumerateEnumerate and itemize undefined + captions not workingcustom labels for enumerate...

Mains transformer blew up amplifier, incorrect description in wiring instructions?

If I cast Expeditious Retreat, can I Dash as a bonus action on the same turn?

Is the language {<p,n> | p and n are natural numbers and there's no prime number in [p,p+n]} belongs to NP class?

How does strength of boric acid solution increase in presence of salicylic acid?

Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.

same font throughout bibliography

Approximately how much travel time was saved by the opening of the Suez Canal in 1869?

Mathematical cryptic clues

What do you call a Matrix-like slowdown and camera movement effect?

Prevent a directory in /tmp from being deleted

Why Is Death Allowed In the Matrix?

Dragon forelimb placement

Is it possible to rebuild the bike frame (to make it lighter) by welding aluminum tubes

What are these boxed doors outside store fronts in New York?

Is there really no realistic way for a skeleton monster to move around without magic?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

Theorems that impeded progress

Why was the small council so happy for Tyrion to become the Master of Coin?

TGV timetables / schedules?

How to test if a transaction is standard without spending real money?

DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

How to write a macro that is braces sensitive?

How much RAM could one put in a typical 80386 setup?



format labels of enumerate


Enumerate and itemize undefined + captions not workingcustom labels for enumerate beyond level 4Customized bold labels for enumerateCustom items in enumerate, labels, and referencesNo new line for theorem in enumerateCustom labels in enumerateHow to reformat labels in sublist for 'enumerate'?Superscript in enumerate/paralist labelsCleveref format for enumerateManually create `enumerate`-labels













0















Consider this script:



documentclass{report}
usepackage{enumerate}
begin{document}
begin{enumerate}[label=arabic*)]
item item 1
end{enumerate}
end{document}


I would like the labels to be "1)" instead of "1." as per default. Therefore I use [label=arabic*)] following p. 3 at http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/enumitem/enumitem.pdf



However, when I compile there is an error:



! Missing number, treated as zero.
<to be read again>
c@*
l.4 begin{enumerate}[label=arabic*)]


What is wrong?










share|improve this question


















  • 1





    You have to use enumitem package, not enumerate.

    – JouleV
    7 hours ago











  • @JouleV, is the same possible for enumerate?

    – Viesturs
    7 hours ago
















0















Consider this script:



documentclass{report}
usepackage{enumerate}
begin{document}
begin{enumerate}[label=arabic*)]
item item 1
end{enumerate}
end{document}


I would like the labels to be "1)" instead of "1." as per default. Therefore I use [label=arabic*)] following p. 3 at http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/enumitem/enumitem.pdf



However, when I compile there is an error:



! Missing number, treated as zero.
<to be read again>
c@*
l.4 begin{enumerate}[label=arabic*)]


What is wrong?










share|improve this question


















  • 1





    You have to use enumitem package, not enumerate.

    – JouleV
    7 hours ago











  • @JouleV, is the same possible for enumerate?

    – Viesturs
    7 hours ago














0












0








0








Consider this script:



documentclass{report}
usepackage{enumerate}
begin{document}
begin{enumerate}[label=arabic*)]
item item 1
end{enumerate}
end{document}


I would like the labels to be "1)" instead of "1." as per default. Therefore I use [label=arabic*)] following p. 3 at http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/enumitem/enumitem.pdf



However, when I compile there is an error:



! Missing number, treated as zero.
<to be read again>
c@*
l.4 begin{enumerate}[label=arabic*)]


What is wrong?










share|improve this question














Consider this script:



documentclass{report}
usepackage{enumerate}
begin{document}
begin{enumerate}[label=arabic*)]
item item 1
end{enumerate}
end{document}


I would like the labels to be "1)" instead of "1." as per default. Therefore I use [label=arabic*)] following p. 3 at http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/enumitem/enumitem.pdf



However, when I compile there is an error:



! Missing number, treated as zero.
<to be read again>
c@*
l.4 begin{enumerate}[label=arabic*)]


What is wrong?







enumerate labels






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 7 hours ago









ViestursViesturs

1,96141227




1,96141227








  • 1





    You have to use enumitem package, not enumerate.

    – JouleV
    7 hours ago











  • @JouleV, is the same possible for enumerate?

    – Viesturs
    7 hours ago














  • 1





    You have to use enumitem package, not enumerate.

    – JouleV
    7 hours ago











  • @JouleV, is the same possible for enumerate?

    – Viesturs
    7 hours ago








1




1





You have to use enumitem package, not enumerate.

– JouleV
7 hours ago





You have to use enumitem package, not enumerate.

– JouleV
7 hours ago













@JouleV, is the same possible for enumerate?

– Viesturs
7 hours ago





@JouleV, is the same possible for enumerate?

– Viesturs
7 hours ago










1 Answer
1






active

oldest

votes


















2














enumerate and enumitem are different packages. Don't use them at the same time, and don't confuse them!



If you want to use enumerate package, the only way is



documentclass{report}
usepackage{enumerate}
begin{document}
begin{enumerate}[1)]
item item 1
item item 2
end{enumerate}
end{document}


enter image description here



Using enumitem is a little more complicated. However, you are using it correctly:



documentclass{report}
usepackage{enumitem} % NOT enumerate!
begin{document}
begin{enumerate}[label=arabic*)]
item item 1
item item 2
end{enumerate}
end{document}


(same output as above)



or if you want to have the simple syntax of enumerate, you may need shortlabels option:



documentclass{report}
usepackage[shortlabels]{enumitem}
begin{document}
begin{enumerate}[1)]
item item 1
item item 2
end{enumerate}
end{document}


(same output as above)



I often use the last way listed here. You have three options, choose whatever you want.






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%2f483624%2fformat-labels-of-enumerate%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









    2














    enumerate and enumitem are different packages. Don't use them at the same time, and don't confuse them!



    If you want to use enumerate package, the only way is



    documentclass{report}
    usepackage{enumerate}
    begin{document}
    begin{enumerate}[1)]
    item item 1
    item item 2
    end{enumerate}
    end{document}


    enter image description here



    Using enumitem is a little more complicated. However, you are using it correctly:



    documentclass{report}
    usepackage{enumitem} % NOT enumerate!
    begin{document}
    begin{enumerate}[label=arabic*)]
    item item 1
    item item 2
    end{enumerate}
    end{document}


    (same output as above)



    or if you want to have the simple syntax of enumerate, you may need shortlabels option:



    documentclass{report}
    usepackage[shortlabels]{enumitem}
    begin{document}
    begin{enumerate}[1)]
    item item 1
    item item 2
    end{enumerate}
    end{document}


    (same output as above)



    I often use the last way listed here. You have three options, choose whatever you want.






    share|improve this answer




























      2














      enumerate and enumitem are different packages. Don't use them at the same time, and don't confuse them!



      If you want to use enumerate package, the only way is



      documentclass{report}
      usepackage{enumerate}
      begin{document}
      begin{enumerate}[1)]
      item item 1
      item item 2
      end{enumerate}
      end{document}


      enter image description here



      Using enumitem is a little more complicated. However, you are using it correctly:



      documentclass{report}
      usepackage{enumitem} % NOT enumerate!
      begin{document}
      begin{enumerate}[label=arabic*)]
      item item 1
      item item 2
      end{enumerate}
      end{document}


      (same output as above)



      or if you want to have the simple syntax of enumerate, you may need shortlabels option:



      documentclass{report}
      usepackage[shortlabels]{enumitem}
      begin{document}
      begin{enumerate}[1)]
      item item 1
      item item 2
      end{enumerate}
      end{document}


      (same output as above)



      I often use the last way listed here. You have three options, choose whatever you want.






      share|improve this answer


























        2












        2








        2







        enumerate and enumitem are different packages. Don't use them at the same time, and don't confuse them!



        If you want to use enumerate package, the only way is



        documentclass{report}
        usepackage{enumerate}
        begin{document}
        begin{enumerate}[1)]
        item item 1
        item item 2
        end{enumerate}
        end{document}


        enter image description here



        Using enumitem is a little more complicated. However, you are using it correctly:



        documentclass{report}
        usepackage{enumitem} % NOT enumerate!
        begin{document}
        begin{enumerate}[label=arabic*)]
        item item 1
        item item 2
        end{enumerate}
        end{document}


        (same output as above)



        or if you want to have the simple syntax of enumerate, you may need shortlabels option:



        documentclass{report}
        usepackage[shortlabels]{enumitem}
        begin{document}
        begin{enumerate}[1)]
        item item 1
        item item 2
        end{enumerate}
        end{document}


        (same output as above)



        I often use the last way listed here. You have three options, choose whatever you want.






        share|improve this answer













        enumerate and enumitem are different packages. Don't use them at the same time, and don't confuse them!



        If you want to use enumerate package, the only way is



        documentclass{report}
        usepackage{enumerate}
        begin{document}
        begin{enumerate}[1)]
        item item 1
        item item 2
        end{enumerate}
        end{document}


        enter image description here



        Using enumitem is a little more complicated. However, you are using it correctly:



        documentclass{report}
        usepackage{enumitem} % NOT enumerate!
        begin{document}
        begin{enumerate}[label=arabic*)]
        item item 1
        item item 2
        end{enumerate}
        end{document}


        (same output as above)



        or if you want to have the simple syntax of enumerate, you may need shortlabels option:



        documentclass{report}
        usepackage[shortlabels]{enumitem}
        begin{document}
        begin{enumerate}[1)]
        item item 1
        item item 2
        end{enumerate}
        end{document}


        (same output as above)



        I often use the last way listed here. You have three options, choose whatever you want.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 7 hours ago









        JouleVJouleV

        11.3k22560




        11.3k22560






























            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%2f483624%2fformat-labels-of-enumerate%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...