Alignment of different align environmentaligning a multiline formula with the bullet of itemizeAlign environment: second alignment “left-justified”?Left aligning equations without align characterAlignment within align environmentAlignment in align environmentMultiple alignment in align environmentDifferent alignment of separate align environmentsProblem with horizontal alignment in align environmentSome alignment issues in the align environmentHow do I reduce spacing between 2 segments of a line in a multiple alignment environment?

Alignment of different align environment

Do I need to start off my book by describing the character's "normal world"?

Radix2 Fast Fourier Transform implemented in C++

What should I do if actually I found a serious flaw in someone's PhD thesis and an article derived from that PhD thesis?

Icon is not displayed in lwc

Which manga depicts Doraemon and Nobita on Easter Island?

global variant of csname…endcsname

How to open terminal automatically when ubuntu boots up?

Pocket Clarketech

Heyawacky: Ace of Cups

What are some tips and tricks for finding the cheapest flight when luggage and other fees are not revealed until far into the booking process?

Meaning and structure of headline "Hair it is: A List of ..."

Trying to understand how Digital Certificates and CA are indeed secure

Have there ever been other TV shows or Films that told a similiar story to the new 90210 show?

How to render "have ideas above his station" into German

If it isn't [someone's name]!

Why can't I see 1861 / 1871 census entries on Freecen website when I can see them on Ancestry website?

Unsolved Problems due to Lack of Computational Power

Parse a simple key=value config file in C

Programming a recursive formula into Mathematica and find the nth position in the sequence

Why should P.I be willing to write strong LOR even if that means losing a undergraduate from his/her lab?

What allows us to use imaginary numbers?

Would getting a natural 20 with a penalty still count as a critical hit?

Get file name and directory in .vimrc file



Alignment of different align environment


aligning a multiline formula with the bullet of itemizeAlign environment: second alignment “left-justified”?Left aligning equations without align characterAlignment within align environmentAlignment in align environmentMultiple alignment in align environmentDifferent alignment of separate align environmentsProblem with horizontal alignment in align environmentSome alignment issues in the align environmentHow do I reduce spacing between 2 segments of a line in a multiple alignment environment?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















I have an issue when I try to align different "align" environments.
This is my Latex code :



documentclass[10pt, a4paper]article

usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc

usepackagemathtools
usepackageamsmath
usepackageamssymb

begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
endalign*

subsection*Degree 2
beginalign*
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
endalign*

subsection*Degree 3
beginalign*
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*

subsection*Degree 4
beginalign*
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*

subsection*Degree 5
beginalign*
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument


And this is the output :



enter image description here



As you can see, equations are not well aligned.
I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)










share|improve this question
































    3















    I have an issue when I try to align different "align" environments.
    This is my Latex code :



    documentclass[10pt, a4paper]article

    usepackage[english]babel
    usepackage[english]isodate
    usepackage[T1]fontenc
    usepackage[hidelinks]hyperref
    usepackage[utf8]inputenc

    usepackagemathtools
    usepackageamsmath
    usepackageamssymb

    begindocument
    sectionExample
    subsection*Degree 1
    beginalign*
    C_1' & = C_1 \
    C_0' & = a_k + C_0
    endalign*

    subsection*Degree 2
    beginalign*
    C_2' & = C_2 \
    C_1' & = 2 C_2 a_k + C_1 \
    C_0' & = C_2 a_k^2 + C_1 a_k + C_0
    endalign*

    subsection*Degree 3
    beginalign*
    C_3' & = C_3 \
    C_2' & = 3 C_3 a_k + C_2 \
    C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
    C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
    endalign*

    subsection*Degree 4
    beginalign*
    C_4' & = C_4 \
    C_3' & = 4 C_4 a_k + C_3 \
    C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
    C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
    C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
    endalign*

    subsection*Degree 5
    beginalign*
    C_5' & = C_5 \
    C_4' & = 5 C_5 a_k + C_4 \
    C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
    C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
    C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
    C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
    endalign*
    enddocument


    And this is the output :



    enter image description here



    As you can see, equations are not well aligned.
    I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)










    share|improve this question




























      3












      3








      3








      I have an issue when I try to align different "align" environments.
      This is my Latex code :



      documentclass[10pt, a4paper]article

      usepackage[english]babel
      usepackage[english]isodate
      usepackage[T1]fontenc
      usepackage[hidelinks]hyperref
      usepackage[utf8]inputenc

      usepackagemathtools
      usepackageamsmath
      usepackageamssymb

      begindocument
      sectionExample
      subsection*Degree 1
      beginalign*
      C_1' & = C_1 \
      C_0' & = a_k + C_0
      endalign*

      subsection*Degree 2
      beginalign*
      C_2' & = C_2 \
      C_1' & = 2 C_2 a_k + C_1 \
      C_0' & = C_2 a_k^2 + C_1 a_k + C_0
      endalign*

      subsection*Degree 3
      beginalign*
      C_3' & = C_3 \
      C_2' & = 3 C_3 a_k + C_2 \
      C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
      C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
      endalign*

      subsection*Degree 4
      beginalign*
      C_4' & = C_4 \
      C_3' & = 4 C_4 a_k + C_3 \
      C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
      C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
      C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
      endalign*

      subsection*Degree 5
      beginalign*
      C_5' & = C_5 \
      C_4' & = 5 C_5 a_k + C_4 \
      C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
      C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
      C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
      C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
      endalign*
      enddocument


      And this is the output :



      enter image description here



      As you can see, equations are not well aligned.
      I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)










      share|improve this question
















      I have an issue when I try to align different "align" environments.
      This is my Latex code :



      documentclass[10pt, a4paper]article

      usepackage[english]babel
      usepackage[english]isodate
      usepackage[T1]fontenc
      usepackage[hidelinks]hyperref
      usepackage[utf8]inputenc

      usepackagemathtools
      usepackageamsmath
      usepackageamssymb

      begindocument
      sectionExample
      subsection*Degree 1
      beginalign*
      C_1' & = C_1 \
      C_0' & = a_k + C_0
      endalign*

      subsection*Degree 2
      beginalign*
      C_2' & = C_2 \
      C_1' & = 2 C_2 a_k + C_1 \
      C_0' & = C_2 a_k^2 + C_1 a_k + C_0
      endalign*

      subsection*Degree 3
      beginalign*
      C_3' & = C_3 \
      C_2' & = 3 C_3 a_k + C_2 \
      C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
      C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
      endalign*

      subsection*Degree 4
      beginalign*
      C_4' & = C_4 \
      C_3' & = 4 C_4 a_k + C_3 \
      C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
      C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
      C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
      endalign*

      subsection*Degree 5
      beginalign*
      C_5' & = C_5 \
      C_4' & = 5 C_5 a_k + C_4 \
      C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
      C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
      C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
      C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
      endalign*
      enddocument


      And this is the output :



      enter image description here



      As you can see, equations are not well aligned.
      I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)







      vertical-alignment align






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 57 mins ago









      Andrew Janke

      1033 bronze badges




      1033 bronze badges










      asked 12 hours ago









      graillegraille

      1454 bronze badges




      1454 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          6














          With intertext:



          enter image description here



          documentclass[10pt, a4paper]article

          usepackage[english]babel
          usepackage[english]isodate
          usepackage[T1]fontenc
          usepackage[hidelinks]hyperref
          usepackage[utf8]inputenc

          usepackagemathtools
          usepackageamsmath
          usepackageamssymb

          begindocument
          sectionExample
          subsection*Degree 1
          beginalign*
          C_1' & = C_1 \
          C_0' & = a_k + C_0
          %
          intertextsubsection*Degree 2
          C_2' & = C_2 \
          C_1' & = 2 C_2 a_k + C_1 \
          C_0' & = C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 3
          C_3' & = C_3 \
          C_2' & = 3 C_3 a_k + C_2 \
          C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 4
          C_4' & = C_4 \
          C_3' & = 4 C_4 a_k + C_3 \
          C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 5
          C_5' & = C_5 \
          C_4' & = 5 C_5 a_k + C_4 \
          C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
          C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          endalign*
          enddocument





          share|improve this answer

























          • Precisely what I was looking for, thanks

            – graille
            12 hours ago











          • @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

            – leandriis
            12 hours 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%2f504574%2falignment-of-different-align-environment%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









          6














          With intertext:



          enter image description here



          documentclass[10pt, a4paper]article

          usepackage[english]babel
          usepackage[english]isodate
          usepackage[T1]fontenc
          usepackage[hidelinks]hyperref
          usepackage[utf8]inputenc

          usepackagemathtools
          usepackageamsmath
          usepackageamssymb

          begindocument
          sectionExample
          subsection*Degree 1
          beginalign*
          C_1' & = C_1 \
          C_0' & = a_k + C_0
          %
          intertextsubsection*Degree 2
          C_2' & = C_2 \
          C_1' & = 2 C_2 a_k + C_1 \
          C_0' & = C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 3
          C_3' & = C_3 \
          C_2' & = 3 C_3 a_k + C_2 \
          C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 4
          C_4' & = C_4 \
          C_3' & = 4 C_4 a_k + C_3 \
          C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 5
          C_5' & = C_5 \
          C_4' & = 5 C_5 a_k + C_4 \
          C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
          C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          endalign*
          enddocument





          share|improve this answer

























          • Precisely what I was looking for, thanks

            – graille
            12 hours ago











          • @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

            – leandriis
            12 hours ago















          6














          With intertext:



          enter image description here



          documentclass[10pt, a4paper]article

          usepackage[english]babel
          usepackage[english]isodate
          usepackage[T1]fontenc
          usepackage[hidelinks]hyperref
          usepackage[utf8]inputenc

          usepackagemathtools
          usepackageamsmath
          usepackageamssymb

          begindocument
          sectionExample
          subsection*Degree 1
          beginalign*
          C_1' & = C_1 \
          C_0' & = a_k + C_0
          %
          intertextsubsection*Degree 2
          C_2' & = C_2 \
          C_1' & = 2 C_2 a_k + C_1 \
          C_0' & = C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 3
          C_3' & = C_3 \
          C_2' & = 3 C_3 a_k + C_2 \
          C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 4
          C_4' & = C_4 \
          C_3' & = 4 C_4 a_k + C_3 \
          C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 5
          C_5' & = C_5 \
          C_4' & = 5 C_5 a_k + C_4 \
          C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
          C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          endalign*
          enddocument





          share|improve this answer

























          • Precisely what I was looking for, thanks

            – graille
            12 hours ago











          • @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

            – leandriis
            12 hours ago













          6












          6








          6







          With intertext:



          enter image description here



          documentclass[10pt, a4paper]article

          usepackage[english]babel
          usepackage[english]isodate
          usepackage[T1]fontenc
          usepackage[hidelinks]hyperref
          usepackage[utf8]inputenc

          usepackagemathtools
          usepackageamsmath
          usepackageamssymb

          begindocument
          sectionExample
          subsection*Degree 1
          beginalign*
          C_1' & = C_1 \
          C_0' & = a_k + C_0
          %
          intertextsubsection*Degree 2
          C_2' & = C_2 \
          C_1' & = 2 C_2 a_k + C_1 \
          C_0' & = C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 3
          C_3' & = C_3 \
          C_2' & = 3 C_3 a_k + C_2 \
          C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 4
          C_4' & = C_4 \
          C_3' & = 4 C_4 a_k + C_3 \
          C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 5
          C_5' & = C_5 \
          C_4' & = 5 C_5 a_k + C_4 \
          C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
          C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          endalign*
          enddocument





          share|improve this answer













          With intertext:



          enter image description here



          documentclass[10pt, a4paper]article

          usepackage[english]babel
          usepackage[english]isodate
          usepackage[T1]fontenc
          usepackage[hidelinks]hyperref
          usepackage[utf8]inputenc

          usepackagemathtools
          usepackageamsmath
          usepackageamssymb

          begindocument
          sectionExample
          subsection*Degree 1
          beginalign*
          C_1' & = C_1 \
          C_0' & = a_k + C_0
          %
          intertextsubsection*Degree 2
          C_2' & = C_2 \
          C_1' & = 2 C_2 a_k + C_1 \
          C_0' & = C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 3
          C_3' & = C_3 \
          C_2' & = 3 C_3 a_k + C_2 \
          C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 4
          C_4' & = C_4 \
          C_3' & = 4 C_4 a_k + C_3 \
          C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          %
          intertextsubsection*Degree 5
          C_5' & = C_5 \
          C_4' & = 5 C_5 a_k + C_4 \
          C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
          C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
          C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
          C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
          endalign*
          enddocument






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 12 hours ago









          leandriisleandriis

          18.1k1 gold badge11 silver badges37 bronze badges




          18.1k1 gold badge11 silver badges37 bronze badges















          • Precisely what I was looking for, thanks

            – graille
            12 hours ago











          • @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

            – leandriis
            12 hours ago

















          • Precisely what I was looking for, thanks

            – graille
            12 hours ago











          • @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

            – leandriis
            12 hours ago
















          Precisely what I was looking for, thanks

          – graille
          12 hours ago





          Precisely what I was looking for, thanks

          – graille
          12 hours ago













          @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

          – leandriis
          12 hours ago





          @graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing Degree and to avoid manual numbering.

          – leandriis
          12 hours 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%2f504574%2falignment-of-different-align-environment%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

          ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

          Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

          19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу