Align equations with text before one of them












4















I want to align 2 similar equations such that the first is directly over the other.



$ a + b = c $ \
text $ d + e = f $ \


How do I do that?



it should look like:



     $ a + b = c $ \
text $ d + e = f $ \









share|improve this question









New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via \. Instead, it is far better to use a display like begin{align*}...end{align*}.

    – Werner
    11 hours ago
















4















I want to align 2 similar equations such that the first is directly over the other.



$ a + b = c $ \
text $ d + e = f $ \


How do I do that?



it should look like:



     $ a + b = c $ \
text $ d + e = f $ \









share|improve this question









New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via \. Instead, it is far better to use a display like begin{align*}...end{align*}.

    – Werner
    11 hours ago














4












4








4








I want to align 2 similar equations such that the first is directly over the other.



$ a + b = c $ \
text $ d + e = f $ \


How do I do that?



it should look like:



     $ a + b = c $ \
text $ d + e = f $ \









share|improve this question









New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I want to align 2 similar equations such that the first is directly over the other.



$ a + b = c $ \
text $ d + e = f $ \


How do I do that?



it should look like:



     $ a + b = c $ \
text $ d + e = f $ \






align






share|improve this question









New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 11 hours ago









Bernard

172k776204




172k776204






New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 12 hours ago









TomaToma

211




211




New contributor




Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Toma is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via \. Instead, it is far better to use a display like begin{align*}...end{align*}.

    – Werner
    11 hours ago



















  • Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via \. Instead, it is far better to use a display like begin{align*}...end{align*}.

    – Werner
    11 hours ago

















Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via \. Instead, it is far better to use a display like begin{align*}...end{align*}.

– Werner
11 hours ago





Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via \. Instead, it is far better to use a display like begin{align*}...end{align*}.

– Werner
11 hours ago










2 Answers
2






active

oldest

votes


















6














enter image description here



documentclass{article}

usepackage{amsmath}

begin{document}


zzzzzzzzzzzz

text $begin{aligned}[b]
a + b &= c \
d + e &= f
end{aligned}$

zzzzzzzzzzzzzzzzzzzzzzzzz

end{document}





share|improve this answer


























  • It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

    – barbara beeton
    11 hours ago








  • 1





    @barbarabeeton ^^

    – David Carlisle
    11 hours ago











  • The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

    – barbara beeton
    10 hours ago











  • @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

    – David Carlisle
    10 hours ago



















5














documentclass{article}
usepackage{tabstackengine}
TABstackMath
begin{document}
text alignLongstack{a + b =& c\ d + e =& f} more text
end{document}


enter image description here



The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}.






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
    });


    }
    });






    Toma is a new contributor. Be nice, and check out our Code of Conduct.










    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478267%2falign-equations-with-text-before-one-of-them%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









    6














    enter image description here



    documentclass{article}

    usepackage{amsmath}

    begin{document}


    zzzzzzzzzzzz

    text $begin{aligned}[b]
    a + b &= c \
    d + e &= f
    end{aligned}$

    zzzzzzzzzzzzzzzzzzzzzzzzz

    end{document}





    share|improve this answer


























    • It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

      – barbara beeton
      11 hours ago








    • 1





      @barbarabeeton ^^

      – David Carlisle
      11 hours ago











    • The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

      – barbara beeton
      10 hours ago











    • @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

      – David Carlisle
      10 hours ago
















    6














    enter image description here



    documentclass{article}

    usepackage{amsmath}

    begin{document}


    zzzzzzzzzzzz

    text $begin{aligned}[b]
    a + b &= c \
    d + e &= f
    end{aligned}$

    zzzzzzzzzzzzzzzzzzzzzzzzz

    end{document}





    share|improve this answer


























    • It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

      – barbara beeton
      11 hours ago








    • 1





      @barbarabeeton ^^

      – David Carlisle
      11 hours ago











    • The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

      – barbara beeton
      10 hours ago











    • @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

      – David Carlisle
      10 hours ago














    6












    6








    6







    enter image description here



    documentclass{article}

    usepackage{amsmath}

    begin{document}


    zzzzzzzzzzzz

    text $begin{aligned}[b]
    a + b &= c \
    d + e &= f
    end{aligned}$

    zzzzzzzzzzzzzzzzzzzzzzzzz

    end{document}





    share|improve this answer















    enter image description here



    documentclass{article}

    usepackage{amsmath}

    begin{document}


    zzzzzzzzzzzz

    text $begin{aligned}[b]
    a + b &= c \
    d + e &= f
    end{aligned}$

    zzzzzzzzzzzzzzzzzzzzzzzzz

    end{document}






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 11 hours ago

























    answered 12 hours ago









    David CarlisleDavid Carlisle

    493k4111371885




    493k4111371885













    • It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

      – barbara beeton
      11 hours ago








    • 1





      @barbarabeeton ^^

      – David Carlisle
      11 hours ago











    • The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

      – barbara beeton
      10 hours ago











    • @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

      – David Carlisle
      10 hours ago



















    • It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

      – barbara beeton
      11 hours ago








    • 1





      @barbarabeeton ^^

      – David Carlisle
      11 hours ago











    • The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

      – barbara beeton
      10 hours ago











    • @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

      – David Carlisle
      10 hours ago

















    It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

    – barbara beeton
    11 hours ago







    It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using phantom{text }$... would avoid all possible baseline problems.)

    – barbara beeton
    11 hours ago






    1




    1





    @barbarabeeton ^^

    – David Carlisle
    11 hours ago





    @barbarabeeton ^^

    – David Carlisle
    11 hours ago













    The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

    – barbara beeton
    10 hours ago





    The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the aligned and align vertical separation is more than the default baselineskip.)

    – barbara beeton
    10 hours ago













    @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

    – David Carlisle
    10 hours ago





    @barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as center so the lineskip difference wouldn't be obtrusive, or you could correct fro it of course.

    – David Carlisle
    10 hours ago











    5














    documentclass{article}
    usepackage{tabstackengine}
    TABstackMath
    begin{document}
    text alignLongstack{a + b =& c\ d + e =& f} more text
    end{document}


    enter image description here



    The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}.






    share|improve this answer






























      5














      documentclass{article}
      usepackage{tabstackengine}
      TABstackMath
      begin{document}
      text alignLongstack{a + b =& c\ d + e =& f} more text
      end{document}


      enter image description here



      The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}.






      share|improve this answer




























        5












        5








        5







        documentclass{article}
        usepackage{tabstackengine}
        TABstackMath
        begin{document}
        text alignLongstack{a + b =& c\ d + e =& f} more text
        end{document}


        enter image description here



        The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}.






        share|improve this answer















        documentclass{article}
        usepackage{tabstackengine}
        TABstackMath
        begin{document}
        text alignLongstack{a + b =& c\ d + e =& f} more text
        end{document}


        enter image description here



        The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 11 hours ago

























        answered 11 hours ago









        Steven B. SegletesSteven B. Segletes

        157k9203411




        157k9203411






















            Toma is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            Toma is a new contributor. Be nice, and check out our Code of Conduct.













            Toma is a new contributor. Be nice, and check out our Code of Conduct.












            Toma is a new contributor. Be nice, and check out our Code of Conduct.
















            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%2f478267%2falign-equations-with-text-before-one-of-them%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

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]