How to left align the cases in Latex?












1















I am using WinEdt. And trying to run the following code. However, the second item is coming in the middle. Can we align it to appear on the extreme left like the point (i)? Kindly help. Thanks a lot for the help.



begin{enumerate}[(i)]
item Statement 1.
item begin{equation}
X_r = begin{cases}
2r-2, & text{for $k = 1$,}\
2r-3, & text{otherwise}.
end{cases}
end{equation}
end{enumerate}


I got the following ouptut after running the above tex code.



enter image description here










share|improve this question

























  • Does this equation have to be numbered?

    – Bernard
    1 hour ago











  • @Bernard My code gave numbered equation of which I could not screenshot properly. No, it is not necessary to be a numbered equation.

    – monalisa
    1 hour ago






  • 2





    In this case, just do as advised by @JouleV.

    – Bernard
    1 hour ago






  • 1





    @JouleV thanks a lot. It worked. Million thanks :)

    – monalisa
    1 hour ago











  • @Bernard Thank you. Yeah it is working.

    – monalisa
    1 hour ago
















1















I am using WinEdt. And trying to run the following code. However, the second item is coming in the middle. Can we align it to appear on the extreme left like the point (i)? Kindly help. Thanks a lot for the help.



begin{enumerate}[(i)]
item Statement 1.
item begin{equation}
X_r = begin{cases}
2r-2, & text{for $k = 1$,}\
2r-3, & text{otherwise}.
end{cases}
end{equation}
end{enumerate}


I got the following ouptut after running the above tex code.



enter image description here










share|improve this question

























  • Does this equation have to be numbered?

    – Bernard
    1 hour ago











  • @Bernard My code gave numbered equation of which I could not screenshot properly. No, it is not necessary to be a numbered equation.

    – monalisa
    1 hour ago






  • 2





    In this case, just do as advised by @JouleV.

    – Bernard
    1 hour ago






  • 1





    @JouleV thanks a lot. It worked. Million thanks :)

    – monalisa
    1 hour ago











  • @Bernard Thank you. Yeah it is working.

    – monalisa
    1 hour ago














1












1








1








I am using WinEdt. And trying to run the following code. However, the second item is coming in the middle. Can we align it to appear on the extreme left like the point (i)? Kindly help. Thanks a lot for the help.



begin{enumerate}[(i)]
item Statement 1.
item begin{equation}
X_r = begin{cases}
2r-2, & text{for $k = 1$,}\
2r-3, & text{otherwise}.
end{cases}
end{equation}
end{enumerate}


I got the following ouptut after running the above tex code.



enter image description here










share|improve this question
















I am using WinEdt. And trying to run the following code. However, the second item is coming in the middle. Can we align it to appear on the extreme left like the point (i)? Kindly help. Thanks a lot for the help.



begin{enumerate}[(i)]
item Statement 1.
item begin{equation}
X_r = begin{cases}
2r-2, & text{for $k = 1$,}\
2r-3, & text{otherwise}.
end{cases}
end{equation}
end{enumerate}


I got the following ouptut after running the above tex code.



enter image description here







equations align cases






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 1 hour ago









Phelype Oleinik

24.3k54688




24.3k54688










asked 1 hour ago









monalisamonalisa

305214




305214













  • Does this equation have to be numbered?

    – Bernard
    1 hour ago











  • @Bernard My code gave numbered equation of which I could not screenshot properly. No, it is not necessary to be a numbered equation.

    – monalisa
    1 hour ago






  • 2





    In this case, just do as advised by @JouleV.

    – Bernard
    1 hour ago






  • 1





    @JouleV thanks a lot. It worked. Million thanks :)

    – monalisa
    1 hour ago











  • @Bernard Thank you. Yeah it is working.

    – monalisa
    1 hour ago



















  • Does this equation have to be numbered?

    – Bernard
    1 hour ago











  • @Bernard My code gave numbered equation of which I could not screenshot properly. No, it is not necessary to be a numbered equation.

    – monalisa
    1 hour ago






  • 2





    In this case, just do as advised by @JouleV.

    – Bernard
    1 hour ago






  • 1





    @JouleV thanks a lot. It worked. Million thanks :)

    – monalisa
    1 hour ago











  • @Bernard Thank you. Yeah it is working.

    – monalisa
    1 hour ago

















Does this equation have to be numbered?

– Bernard
1 hour ago





Does this equation have to be numbered?

– Bernard
1 hour ago













@Bernard My code gave numbered equation of which I could not screenshot properly. No, it is not necessary to be a numbered equation.

– monalisa
1 hour ago





@Bernard My code gave numbered equation of which I could not screenshot properly. No, it is not necessary to be a numbered equation.

– monalisa
1 hour ago




2




2





In this case, just do as advised by @JouleV.

– Bernard
1 hour ago





In this case, just do as advised by @JouleV.

– Bernard
1 hour ago




1




1





@JouleV thanks a lot. It worked. Million thanks :)

– monalisa
1 hour ago





@JouleV thanks a lot. It worked. Million thanks :)

– monalisa
1 hour ago













@Bernard Thank you. Yeah it is working.

– monalisa
1 hour ago





@Bernard Thank you. Yeah it is working.

– monalisa
1 hour ago










2 Answers
2






active

oldest

votes


















5














Try in-line math instead. Note: this will not number your cases.



documentclass{article}
usepackage{enumerate}
usepackage{amsmath}
begin{document}
begin{enumerate}[(i)]
item Statement 1.
item $X_r = begin{cases}
2r-2, & text{for $k = 1$,}\
2r-3, & text{otherwise}.
end{cases}$
end{enumerate}
end{document}


enter image description here






share|improve this answer































    1














    Another alternative for JouleV solution would be to use flalign from amsmath as in



    documentclass{article}
    usepackage{enumerate}
    usepackage{amsmath}
    begin{document}
    begin{enumerate}[(i)]
    item Statement 1.
    item begin{flalign}X_r& = begin{cases}
    2r-2, & text{for $k = 1$,}\
    2r-3, & text{otherwise}.
    end{cases}&end{flalign}
    end{enumerate}
    end{document}


    to get:



    enter image description here






    share|improve this answer



















    • 2





      This leaves some very ugly vertical spacing, though.

      – Peiffap
      29 mins ago











    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%2f480243%2fhow-to-left-align-the-cases-in-latex%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









    5














    Try in-line math instead. Note: this will not number your cases.



    documentclass{article}
    usepackage{enumerate}
    usepackage{amsmath}
    begin{document}
    begin{enumerate}[(i)]
    item Statement 1.
    item $X_r = begin{cases}
    2r-2, & text{for $k = 1$,}\
    2r-3, & text{otherwise}.
    end{cases}$
    end{enumerate}
    end{document}


    enter image description here






    share|improve this answer




























      5














      Try in-line math instead. Note: this will not number your cases.



      documentclass{article}
      usepackage{enumerate}
      usepackage{amsmath}
      begin{document}
      begin{enumerate}[(i)]
      item Statement 1.
      item $X_r = begin{cases}
      2r-2, & text{for $k = 1$,}\
      2r-3, & text{otherwise}.
      end{cases}$
      end{enumerate}
      end{document}


      enter image description here






      share|improve this answer


























        5












        5








        5







        Try in-line math instead. Note: this will not number your cases.



        documentclass{article}
        usepackage{enumerate}
        usepackage{amsmath}
        begin{document}
        begin{enumerate}[(i)]
        item Statement 1.
        item $X_r = begin{cases}
        2r-2, & text{for $k = 1$,}\
        2r-3, & text{otherwise}.
        end{cases}$
        end{enumerate}
        end{document}


        enter image description here






        share|improve this answer













        Try in-line math instead. Note: this will not number your cases.



        documentclass{article}
        usepackage{enumerate}
        usepackage{amsmath}
        begin{document}
        begin{enumerate}[(i)]
        item Statement 1.
        item $X_r = begin{cases}
        2r-2, & text{for $k = 1$,}\
        2r-3, & text{otherwise}.
        end{cases}$
        end{enumerate}
        end{document}


        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 1 hour ago









        JouleVJouleV

        6,55621750




        6,55621750























            1














            Another alternative for JouleV solution would be to use flalign from amsmath as in



            documentclass{article}
            usepackage{enumerate}
            usepackage{amsmath}
            begin{document}
            begin{enumerate}[(i)]
            item Statement 1.
            item begin{flalign}X_r& = begin{cases}
            2r-2, & text{for $k = 1$,}\
            2r-3, & text{otherwise}.
            end{cases}&end{flalign}
            end{enumerate}
            end{document}


            to get:



            enter image description here






            share|improve this answer



















            • 2





              This leaves some very ugly vertical spacing, though.

              – Peiffap
              29 mins ago
















            1














            Another alternative for JouleV solution would be to use flalign from amsmath as in



            documentclass{article}
            usepackage{enumerate}
            usepackage{amsmath}
            begin{document}
            begin{enumerate}[(i)]
            item Statement 1.
            item begin{flalign}X_r& = begin{cases}
            2r-2, & text{for $k = 1$,}\
            2r-3, & text{otherwise}.
            end{cases}&end{flalign}
            end{enumerate}
            end{document}


            to get:



            enter image description here






            share|improve this answer



















            • 2





              This leaves some very ugly vertical spacing, though.

              – Peiffap
              29 mins ago














            1












            1








            1







            Another alternative for JouleV solution would be to use flalign from amsmath as in



            documentclass{article}
            usepackage{enumerate}
            usepackage{amsmath}
            begin{document}
            begin{enumerate}[(i)]
            item Statement 1.
            item begin{flalign}X_r& = begin{cases}
            2r-2, & text{for $k = 1$,}\
            2r-3, & text{otherwise}.
            end{cases}&end{flalign}
            end{enumerate}
            end{document}


            to get:



            enter image description here






            share|improve this answer













            Another alternative for JouleV solution would be to use flalign from amsmath as in



            documentclass{article}
            usepackage{enumerate}
            usepackage{amsmath}
            begin{document}
            begin{enumerate}[(i)]
            item Statement 1.
            item begin{flalign}X_r& = begin{cases}
            2r-2, & text{for $k = 1$,}\
            2r-3, & text{otherwise}.
            end{cases}&end{flalign}
            end{enumerate}
            end{document}


            to get:



            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 34 mins ago









            RaajaRaaja

            5,11421542




            5,11421542








            • 2





              This leaves some very ugly vertical spacing, though.

              – Peiffap
              29 mins ago














            • 2





              This leaves some very ugly vertical spacing, though.

              – Peiffap
              29 mins ago








            2




            2





            This leaves some very ugly vertical spacing, though.

            – Peiffap
            29 mins ago





            This leaves some very ugly vertical spacing, though.

            – Peiffap
            29 mins ago


















            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%2f480243%2fhow-to-left-align-the-cases-in-latex%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

            Keirin

            how to set this table in IEEE paper

            Santa Maria sopra Minerva (Rom)