Fit an equation in documentHow can I split an equation over two (or more) linesInline equation doesn't fit in pageHow to adjust the following split equation to be left alignedmathpazo package and changing font within beginequation … endequationAdjusting the description about an equation in LatexFit an equation in a single columnCan't generate png with Error: Erroneous nesting of equation structuresWrong space in equationHow continue a equation next lineExtra bracket in the equation in one editor but not in another one. Why?

Do atomic orbitals "pulse" in time?

Why was Thor doubtful about his worthiness to Mjolnir?

Does Lawful Interception of 4G / the proposed 5G provide a back door for hackers as well?

Why did the ICC decide not to probe alleged US atrocities in Afghanistan?

How does Howard Stark know this?

Anatomically Correct Carnivorous Tree

How are Core iX names like Core i5, i7 related to Haswell, Ivy Bridge?

How do I tell my supervisor that he is choosing poor replacements for me while I am on maternity leave?

Are there variations of the regular runtimes of the Big-O-Notation?

Why doesn't Rocket Lab use a solid stage?

Drawing lines to nearest point

What is the significance of 4200 BCE in context of farming replacing foraging in Europe?

Exclude loop* snap devices from lsblk output?

Can a tourist shoot a gun in the USA?

What does i386 mean on macOS Mojave?

Why in a Ethernet LAN, a packet sniffer can obtain all packets sent over the LAN?

Surely they can fit?

What food production methods would allow a metropolis like New York to become self sufficient

Python Pandas Expand a Column of List of Lists to Two New Column

When a land becomes a creature, is it untapped?

How does noise-cancellation work in Mac laptops?

How to define command with 2 optional params such that it calls another command (accepting 1 optional param) to which it passes one of those 2 params?

Why can't RGB or bicolour LEDs produce a decent yellow?

How can a Lich look like a human without magic?



Fit an equation in document


How can I split an equation over two (or more) linesInline equation doesn't fit in pageHow to adjust the following split equation to be left alignedmathpazo package and changing font within beginequation … endequationAdjusting the description about an equation in LatexFit an equation in a single columnCan't generate png with Error: Erroneous nesting of equation structuresWrong space in equationHow continue a equation next lineExtra bracket in the equation in one editor but not in another one. Why?













3















I have a big equation that is not fitting in one column.My code is shown below



 beginequation
left[maxleft(D_i, j^-x T, D_i, j^+x T, 0right)^2+max left(D_i, j^-y T, D_i, j^+y T, 0right)^2right]^1/ 2 \ =frac1F_i, j
endequation


my output is as shown
enter image description here



The equation is highlighted.How can I fit in one column










share|improve this question







New contributor



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














  • 4





    use multline from the amsmath package and add linebreaks (\ ) at suitable points (after the = presumably)

    – David Carlisle
    May 8 at 7:06
















3















I have a big equation that is not fitting in one column.My code is shown below



 beginequation
left[maxleft(D_i, j^-x T, D_i, j^+x T, 0right)^2+max left(D_i, j^-y T, D_i, j^+y T, 0right)^2right]^1/ 2 \ =frac1F_i, j
endequation


my output is as shown
enter image description here



The equation is highlighted.How can I fit in one column










share|improve this question







New contributor



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














  • 4





    use multline from the amsmath package and add linebreaks (\ ) at suitable points (after the = presumably)

    – David Carlisle
    May 8 at 7:06














3












3








3








I have a big equation that is not fitting in one column.My code is shown below



 beginequation
left[maxleft(D_i, j^-x T, D_i, j^+x T, 0right)^2+max left(D_i, j^-y T, D_i, j^+y T, 0right)^2right]^1/ 2 \ =frac1F_i, j
endequation


my output is as shown
enter image description here



The equation is highlighted.How can I fit in one column










share|improve this question







New contributor



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











I have a big equation that is not fitting in one column.My code is shown below



 beginequation
left[maxleft(D_i, j^-x T, D_i, j^+x T, 0right)^2+max left(D_i, j^-y T, D_i, j^+y T, 0right)^2right]^1/ 2 \ =frac1F_i, j
endequation


my output is as shown
enter image description here



The equation is highlighted.How can I fit in one column







math-mode






share|improve this question







New contributor



helen 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



helen 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






New contributor



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








asked May 8 at 6:37









helenhelen

163




163




New contributor



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




New contributor




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









  • 4





    use multline from the amsmath package and add linebreaks (\ ) at suitable points (after the = presumably)

    – David Carlisle
    May 8 at 7:06













  • 4





    use multline from the amsmath package and add linebreaks (\ ) at suitable points (after the = presumably)

    – David Carlisle
    May 8 at 7:06








4




4





use multline from the amsmath package and add linebreaks (\ ) at suitable points (after the = presumably)

– David Carlisle
May 8 at 7:06






use multline from the amsmath package and add linebreaks (\ ) at suitable points (after the = presumably)

– David Carlisle
May 8 at 7:06











4 Answers
4






active

oldest

votes


















6














documentclass[twocolumn]article
usepackageamsmath
usepackagelipsum
begindocument
lipsum[1-2]
beginmultline
left[maxleft(D_i,j^-x T, D_i,j^+x T, 0right)^2 right.\
left. +max left(D_i, j^-y T, D_i,j^+y T, 0right)^2right]^1/2 =frac1F_i,j
endmultline
lipsum[1-2]
enddocument


enter image description here






share|improve this answer























  • It works.Thank you very much for your help

    – helen
    May 8 at 7:36


















3














How about you assign m_1 and m_2 for the two maxes, like this:



Output



documentclass[]IEEEtran 
usepackageamsmath
usepackagelipsum
begindocument
lipsum[1-2]
beginequation*
beginaligned
left[maxleft(m_1right)^2+max left(m_2right)^2right]^1/ 2 = frac1F_i, j text, where\
m_1= D_i, j^-x T, D_i, j^+x T, 0 text and m_2 = D_i, j^-y T, D_i, j^+y T, 0\
endaligned
endequation*\
lipsum[3-9]
enddocument





share|improve this answer






























    3














    EDIT:



    I have adding geometry package, the option twocolumn and the same fonts of your picture with the packages newtxtext and newtxmath.



    Here there is a new version.



    enter image description here



    documentclass[twocolumn]article
    usepackage[margin=2cm]geometry
    usepackagenewtxtext, newtxmath
    usepackageamsmath
    usepackagelipsum

    begindocument
    lipsum[1-2]
    beginequation
    left[maxleft(a, b, 0right)^2 +max left(c, d, 0right)^2right]^1/2=frac1F_i, j
    endequation
    where $a=D_i, j^-x T$, $b=D_i, j^+x T$, $c=D_i, j^-y T$ and
    $d=D_i, j^+y T$.
    lipsum[1-2]
    enddocument





    share|improve this answer




















    • 5





      no, please no not resizebox.

      – David Carlisle
      May 8 at 7:08






    • 1





      Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

      – daleif
      May 8 at 7:24











    • @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

      – Sebastiano
      May 8 at 7:26











    • @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

      – Sebastiano
      2 days ago











    • @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

      – David Carlisle
      2 days ago



















    3














    Judging from the image, you're an unfortunate user of IEEEtran or similar class that mixes Times for text and Computer Modern for math.



    I have three proposals; I'd prefer the last one. In all of them I removed the wrong left and right commands.



    documentclassIEEEtran
    usepackagemathtools

    usepackagelipsum

    begindocument

    lipsum*[1]
    beginequation
    beginmultlined
    bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
    \
    +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
    =frac1F_i, j
    endmultlined
    endequation
    lipsum*[1][1-2]
    beginequation
    beginsplit
    smash[b]frac1F_i, j
    &=bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2\
    &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
    endsplit
    endequation
    lipsum*[1][1-2]
    beginequation
    beginsplit
    smash[b]frac1F_i, j^2
    &=max(D_i, j^-x T, D_i, j^+x T, 0)^2\
    &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2
    endsplit
    endequation
    lipsum*

    enddocument


    enter image description here



    If you're bold and decide to use Times everywhere, then the formula fits.



    documentclassIEEEtran
    usepackagemathtools
    usepackagenewtxtext,newtxmath

    usepackagelipsum

    begindocument

    lipsum*[1]
    beginequation
    bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
    +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
    =frac1F_i, j
    endequation
    lipsum*[1][1-2]
    beginequation
    frac1F_i, j
    =bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
    +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
    endequation
    lipsum*[1][1-2]
    beginequation
    frac1F_i, j^2
    =max(D_i, j^-x T, D_i, j^+x T, 0)^2
    +max (D_i, j^-y T, D_i, j^+y T, 0)^2
    endequation
    lipsum*

    enddocument


    enter image description here






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



      );






      helen 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%2f489730%2ffit-an-equation-in-document%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      6














      documentclass[twocolumn]article
      usepackageamsmath
      usepackagelipsum
      begindocument
      lipsum[1-2]
      beginmultline
      left[maxleft(D_i,j^-x T, D_i,j^+x T, 0right)^2 right.\
      left. +max left(D_i, j^-y T, D_i,j^+y T, 0right)^2right]^1/2 =frac1F_i,j
      endmultline
      lipsum[1-2]
      enddocument


      enter image description here






      share|improve this answer























      • It works.Thank you very much for your help

        – helen
        May 8 at 7:36















      6














      documentclass[twocolumn]article
      usepackageamsmath
      usepackagelipsum
      begindocument
      lipsum[1-2]
      beginmultline
      left[maxleft(D_i,j^-x T, D_i,j^+x T, 0right)^2 right.\
      left. +max left(D_i, j^-y T, D_i,j^+y T, 0right)^2right]^1/2 =frac1F_i,j
      endmultline
      lipsum[1-2]
      enddocument


      enter image description here






      share|improve this answer























      • It works.Thank you very much for your help

        – helen
        May 8 at 7:36













      6












      6








      6







      documentclass[twocolumn]article
      usepackageamsmath
      usepackagelipsum
      begindocument
      lipsum[1-2]
      beginmultline
      left[maxleft(D_i,j^-x T, D_i,j^+x T, 0right)^2 right.\
      left. +max left(D_i, j^-y T, D_i,j^+y T, 0right)^2right]^1/2 =frac1F_i,j
      endmultline
      lipsum[1-2]
      enddocument


      enter image description here






      share|improve this answer













      documentclass[twocolumn]article
      usepackageamsmath
      usepackagelipsum
      begindocument
      lipsum[1-2]
      beginmultline
      left[maxleft(D_i,j^-x T, D_i,j^+x T, 0right)^2 right.\
      left. +max left(D_i, j^-y T, D_i,j^+y T, 0right)^2right]^1/2 =frac1F_i,j
      endmultline
      lipsum[1-2]
      enddocument


      enter image description here







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered May 8 at 7:28









      Red-CloudRed-Cloud

      1,61911




      1,61911












      • It works.Thank you very much for your help

        – helen
        May 8 at 7:36

















      • It works.Thank you very much for your help

        – helen
        May 8 at 7:36
















      It works.Thank you very much for your help

      – helen
      May 8 at 7:36





      It works.Thank you very much for your help

      – helen
      May 8 at 7:36











      3














      How about you assign m_1 and m_2 for the two maxes, like this:



      Output



      documentclass[]IEEEtran 
      usepackageamsmath
      usepackagelipsum
      begindocument
      lipsum[1-2]
      beginequation*
      beginaligned
      left[maxleft(m_1right)^2+max left(m_2right)^2right]^1/ 2 = frac1F_i, j text, where\
      m_1= D_i, j^-x T, D_i, j^+x T, 0 text and m_2 = D_i, j^-y T, D_i, j^+y T, 0\
      endaligned
      endequation*\
      lipsum[3-9]
      enddocument





      share|improve this answer



























        3














        How about you assign m_1 and m_2 for the two maxes, like this:



        Output



        documentclass[]IEEEtran 
        usepackageamsmath
        usepackagelipsum
        begindocument
        lipsum[1-2]
        beginequation*
        beginaligned
        left[maxleft(m_1right)^2+max left(m_2right)^2right]^1/ 2 = frac1F_i, j text, where\
        m_1= D_i, j^-x T, D_i, j^+x T, 0 text and m_2 = D_i, j^-y T, D_i, j^+y T, 0\
        endaligned
        endequation*\
        lipsum[3-9]
        enddocument





        share|improve this answer

























          3












          3








          3







          How about you assign m_1 and m_2 for the two maxes, like this:



          Output



          documentclass[]IEEEtran 
          usepackageamsmath
          usepackagelipsum
          begindocument
          lipsum[1-2]
          beginequation*
          beginaligned
          left[maxleft(m_1right)^2+max left(m_2right)^2right]^1/ 2 = frac1F_i, j text, where\
          m_1= D_i, j^-x T, D_i, j^+x T, 0 text and m_2 = D_i, j^-y T, D_i, j^+y T, 0\
          endaligned
          endequation*\
          lipsum[3-9]
          enddocument





          share|improve this answer













          How about you assign m_1 and m_2 for the two maxes, like this:



          Output



          documentclass[]IEEEtran 
          usepackageamsmath
          usepackagelipsum
          begindocument
          lipsum[1-2]
          beginequation*
          beginaligned
          left[maxleft(m_1right)^2+max left(m_2right)^2right]^1/ 2 = frac1F_i, j text, where\
          m_1= D_i, j^-x T, D_i, j^+x T, 0 text and m_2 = D_i, j^-y T, D_i, j^+y T, 0\
          endaligned
          endequation*\
          lipsum[3-9]
          enddocument






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered May 8 at 7:26









          M. Al JumailyM. Al Jumaily

          871129




          871129





















              3














              EDIT:



              I have adding geometry package, the option twocolumn and the same fonts of your picture with the packages newtxtext and newtxmath.



              Here there is a new version.



              enter image description here



              documentclass[twocolumn]article
              usepackage[margin=2cm]geometry
              usepackagenewtxtext, newtxmath
              usepackageamsmath
              usepackagelipsum

              begindocument
              lipsum[1-2]
              beginequation
              left[maxleft(a, b, 0right)^2 +max left(c, d, 0right)^2right]^1/2=frac1F_i, j
              endequation
              where $a=D_i, j^-x T$, $b=D_i, j^+x T$, $c=D_i, j^-y T$ and
              $d=D_i, j^+y T$.
              lipsum[1-2]
              enddocument





              share|improve this answer




















              • 5





                no, please no not resizebox.

                – David Carlisle
                May 8 at 7:08






              • 1





                Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

                – daleif
                May 8 at 7:24











              • @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

                – Sebastiano
                May 8 at 7:26











              • @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

                – Sebastiano
                2 days ago











              • @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

                – David Carlisle
                2 days ago
















              3














              EDIT:



              I have adding geometry package, the option twocolumn and the same fonts of your picture with the packages newtxtext and newtxmath.



              Here there is a new version.



              enter image description here



              documentclass[twocolumn]article
              usepackage[margin=2cm]geometry
              usepackagenewtxtext, newtxmath
              usepackageamsmath
              usepackagelipsum

              begindocument
              lipsum[1-2]
              beginequation
              left[maxleft(a, b, 0right)^2 +max left(c, d, 0right)^2right]^1/2=frac1F_i, j
              endequation
              where $a=D_i, j^-x T$, $b=D_i, j^+x T$, $c=D_i, j^-y T$ and
              $d=D_i, j^+y T$.
              lipsum[1-2]
              enddocument





              share|improve this answer




















              • 5





                no, please no not resizebox.

                – David Carlisle
                May 8 at 7:08






              • 1





                Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

                – daleif
                May 8 at 7:24











              • @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

                – Sebastiano
                May 8 at 7:26











              • @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

                – Sebastiano
                2 days ago











              • @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

                – David Carlisle
                2 days ago














              3












              3








              3







              EDIT:



              I have adding geometry package, the option twocolumn and the same fonts of your picture with the packages newtxtext and newtxmath.



              Here there is a new version.



              enter image description here



              documentclass[twocolumn]article
              usepackage[margin=2cm]geometry
              usepackagenewtxtext, newtxmath
              usepackageamsmath
              usepackagelipsum

              begindocument
              lipsum[1-2]
              beginequation
              left[maxleft(a, b, 0right)^2 +max left(c, d, 0right)^2right]^1/2=frac1F_i, j
              endequation
              where $a=D_i, j^-x T$, $b=D_i, j^+x T$, $c=D_i, j^-y T$ and
              $d=D_i, j^+y T$.
              lipsum[1-2]
              enddocument





              share|improve this answer















              EDIT:



              I have adding geometry package, the option twocolumn and the same fonts of your picture with the packages newtxtext and newtxmath.



              Here there is a new version.



              enter image description here



              documentclass[twocolumn]article
              usepackage[margin=2cm]geometry
              usepackagenewtxtext, newtxmath
              usepackageamsmath
              usepackagelipsum

              begindocument
              lipsum[1-2]
              beginequation
              left[maxleft(a, b, 0right)^2 +max left(c, d, 0right)^2right]^1/2=frac1F_i, j
              endequation
              where $a=D_i, j^-x T$, $b=D_i, j^+x T$, $c=D_i, j^-y T$ and
              $d=D_i, j^+y T$.
              lipsum[1-2]
              enddocument






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited 2 days ago

























              answered May 8 at 7:06









              SebastianoSebastiano

              12.2k42467




              12.2k42467







              • 5





                no, please no not resizebox.

                – David Carlisle
                May 8 at 7:08






              • 1





                Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

                – daleif
                May 8 at 7:24











              • @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

                – Sebastiano
                May 8 at 7:26











              • @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

                – Sebastiano
                2 days ago











              • @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

                – David Carlisle
                2 days ago













              • 5





                no, please no not resizebox.

                – David Carlisle
                May 8 at 7:08






              • 1





                Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

                – daleif
                May 8 at 7:24











              • @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

                – Sebastiano
                May 8 at 7:26











              • @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

                – Sebastiano
                2 days ago











              • @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

                – David Carlisle
                2 days ago








              5




              5





              no, please no not resizebox.

              – David Carlisle
              May 8 at 7:08





              no, please no not resizebox.

              – David Carlisle
              May 8 at 7:08




              1




              1





              Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

              – daleif
              May 8 at 7:24





              Scale manually, it is just luck that the fences match in size here. Also I'd move the alignment point to [& on the first line

              – daleif
              May 8 at 7:24













              @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

              – Sebastiano
              May 8 at 7:26





              @daleif You are authorized to edit my code :-). My students have just delivered the written examination to my class.

              – Sebastiano
              May 8 at 7:26













              @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

              – Sebastiano
              2 days ago





              @DavidCarlisle There is not into my code resizebox and you have +4 upcomment. It's inexplicable to me.

              – Sebastiano
              2 days ago













              @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

              – David Carlisle
              2 days ago






              @Sebastiano as you know (or could see in the history), you completely changed your answer, your first answer simply took the one line equation and scaled it to fit the column. Given that you changed your answer following that comment why do you say it is imexplicable?

              – David Carlisle
              2 days ago












              3














              Judging from the image, you're an unfortunate user of IEEEtran or similar class that mixes Times for text and Computer Modern for math.



              I have three proposals; I'd prefer the last one. In all of them I removed the wrong left and right commands.



              documentclassIEEEtran
              usepackagemathtools

              usepackagelipsum

              begindocument

              lipsum*[1]
              beginequation
              beginmultlined
              bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
              \
              +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
              =frac1F_i, j
              endmultlined
              endequation
              lipsum*[1][1-2]
              beginequation
              beginsplit
              smash[b]frac1F_i, j
              &=bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2\
              &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
              endsplit
              endequation
              lipsum*[1][1-2]
              beginequation
              beginsplit
              smash[b]frac1F_i, j^2
              &=max(D_i, j^-x T, D_i, j^+x T, 0)^2\
              &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2
              endsplit
              endequation
              lipsum*

              enddocument


              enter image description here



              If you're bold and decide to use Times everywhere, then the formula fits.



              documentclassIEEEtran
              usepackagemathtools
              usepackagenewtxtext,newtxmath

              usepackagelipsum

              begindocument

              lipsum*[1]
              beginequation
              bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
              +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
              =frac1F_i, j
              endequation
              lipsum*[1][1-2]
              beginequation
              frac1F_i, j
              =bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
              +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
              endequation
              lipsum*[1][1-2]
              beginequation
              frac1F_i, j^2
              =max(D_i, j^-x T, D_i, j^+x T, 0)^2
              +max (D_i, j^-y T, D_i, j^+y T, 0)^2
              endequation
              lipsum*

              enddocument


              enter image description here






              share|improve this answer



























                3














                Judging from the image, you're an unfortunate user of IEEEtran or similar class that mixes Times for text and Computer Modern for math.



                I have three proposals; I'd prefer the last one. In all of them I removed the wrong left and right commands.



                documentclassIEEEtran
                usepackagemathtools

                usepackagelipsum

                begindocument

                lipsum*[1]
                beginequation
                beginmultlined
                bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                \
                +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                =frac1F_i, j
                endmultlined
                endequation
                lipsum*[1][1-2]
                beginequation
                beginsplit
                smash[b]frac1F_i, j
                &=bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2\
                &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                endsplit
                endequation
                lipsum*[1][1-2]
                beginequation
                beginsplit
                smash[b]frac1F_i, j^2
                &=max(D_i, j^-x T, D_i, j^+x T, 0)^2\
                &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2
                endsplit
                endequation
                lipsum*

                enddocument


                enter image description here



                If you're bold and decide to use Times everywhere, then the formula fits.



                documentclassIEEEtran
                usepackagemathtools
                usepackagenewtxtext,newtxmath

                usepackagelipsum

                begindocument

                lipsum*[1]
                beginequation
                bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                =frac1F_i, j
                endequation
                lipsum*[1][1-2]
                beginequation
                frac1F_i, j
                =bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                endequation
                lipsum*[1][1-2]
                beginequation
                frac1F_i, j^2
                =max(D_i, j^-x T, D_i, j^+x T, 0)^2
                +max (D_i, j^-y T, D_i, j^+y T, 0)^2
                endequation
                lipsum*

                enddocument


                enter image description here






                share|improve this answer

























                  3












                  3








                  3







                  Judging from the image, you're an unfortunate user of IEEEtran or similar class that mixes Times for text and Computer Modern for math.



                  I have three proposals; I'd prefer the last one. In all of them I removed the wrong left and right commands.



                  documentclassIEEEtran
                  usepackagemathtools

                  usepackagelipsum

                  begindocument

                  lipsum*[1]
                  beginequation
                  beginmultlined
                  bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  \
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  =frac1F_i, j
                  endmultlined
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  beginsplit
                  smash[b]frac1F_i, j
                  &=bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2\
                  &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  endsplit
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  beginsplit
                  smash[b]frac1F_i, j^2
                  &=max(D_i, j^-x T, D_i, j^+x T, 0)^2\
                  &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2
                  endsplit
                  endequation
                  lipsum*

                  enddocument


                  enter image description here



                  If you're bold and decide to use Times everywhere, then the formula fits.



                  documentclassIEEEtran
                  usepackagemathtools
                  usepackagenewtxtext,newtxmath

                  usepackagelipsum

                  begindocument

                  lipsum*[1]
                  beginequation
                  bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  =frac1F_i, j
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  frac1F_i, j
                  =bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  frac1F_i, j^2
                  =max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2
                  endequation
                  lipsum*

                  enddocument


                  enter image description here






                  share|improve this answer













                  Judging from the image, you're an unfortunate user of IEEEtran or similar class that mixes Times for text and Computer Modern for math.



                  I have three proposals; I'd prefer the last one. In all of them I removed the wrong left and right commands.



                  documentclassIEEEtran
                  usepackagemathtools

                  usepackagelipsum

                  begindocument

                  lipsum*[1]
                  beginequation
                  beginmultlined
                  bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  \
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  =frac1F_i, j
                  endmultlined
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  beginsplit
                  smash[b]frac1F_i, j
                  &=bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2\
                  &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  endsplit
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  beginsplit
                  smash[b]frac1F_i, j^2
                  &=max(D_i, j^-x T, D_i, j^+x T, 0)^2\
                  &qquad+max (D_i, j^-y T, D_i, j^+y T, 0)^2
                  endsplit
                  endequation
                  lipsum*

                  enddocument


                  enter image description here



                  If you're bold and decide to use Times everywhere, then the formula fits.



                  documentclassIEEEtran
                  usepackagemathtools
                  usepackagenewtxtext,newtxmath

                  usepackagelipsum

                  begindocument

                  lipsum*[1]
                  beginequation
                  bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  =frac1F_i, j
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  frac1F_i, j
                  =bigl[max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2bigr]^1/2
                  endequation
                  lipsum*[1][1-2]
                  beginequation
                  frac1F_i, j^2
                  =max(D_i, j^-x T, D_i, j^+x T, 0)^2
                  +max (D_i, j^-y T, D_i, j^+y T, 0)^2
                  endequation
                  lipsum*

                  enddocument


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 days ago









                  egregegreg

                  741k8919403273




                  741k8919403273




















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









                      draft saved

                      draft discarded


















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












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











                      helen 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%2f489730%2ffit-an-equation-in-document%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

                      Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                      Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                      Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form