Aligning equation numbers verticallyAligning across 'aligned' equation blocksAligning equation numbers within enumitemAligning an equationAligning Vertically Spaced EquationsEquation spacing and aligningaligning equationAligning the equations and equation numbers correctlyAligning inside equation troubleAligning underset below matrix equationAligning Equations & Removing Equation Label
A Note on N!
Like totally amazing interchangeable sister outfits II: The Revenge
What are the steps to solving this definite integral?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
Is the claim "Employers won't employ people with no 'social media presence'" realistic?
Could the terminal length of components like resistors be reduced?
Is there a way to generate a list of distinct numbers such that no two subsets ever have an equal sum?
How to stop co-workers from teasing me because I know Russian?
Check if a string is entirely made of the same substring
"The cow" OR "a cow" OR "cows" in this context
Function pointer with named arguments?
Extension of 2-adic valuation to the real numbers
Can SQL Server create collisions in system generated constraint names?
How can I practically buy stocks?
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
What is the philosophical significance of speech acts/implicature?
Why does nature favour the Laplacian?
Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?
Implications of cigar-shaped bodies having rings?
How could Tony Stark make this in Endgame?
Aligning equation numbers vertically
Is there really no use for MD5 anymore?
How to not starve gigantic beasts
Dynamic SOQL query relationship with field visibility for Users
Aligning equation numbers vertically
Aligning across 'aligned' equation blocksAligning equation numbers within enumitemAligning an equationAligning Vertically Spaced EquationsEquation spacing and aligningaligning equationAligning the equations and equation numbers correctlyAligning inside equation troubleAligning underset below matrix equationAligning Equations & Removing Equation Label
I am trying to align my equation number to be vertically centre to the equation. How can I go about doing this? I have attached a screenshot of my output.
I am using pdfLaTex+MakeIndex+BibTeX as me Latex processor if that could possibly make a difference.
Here is my code,
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
centerline$F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx$ \
centerline$f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds$
endsplit
endequation
par
This is some more text.
enddocument
And here is my output,
Thank you in advance!
equations amsmath
New contributor
add a comment |
I am trying to align my equation number to be vertically centre to the equation. How can I go about doing this? I have attached a screenshot of my output.
I am using pdfLaTex+MakeIndex+BibTeX as me Latex processor if that could possibly make a difference.
Here is my code,
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
centerline$F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx$ \
centerline$f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds$
endsplit
endequation
par
This is some more text.
enddocument
And here is my output,
Thank you in advance!
equations amsmath
New contributor
Welcome to TeX-SE! Where did you get the idea to usecenterline
here from?
– marmot
2 hours ago
centerline
should not be used in latex at all and certainly never in a math display. Apart from being full width and so forcing the equation number to move, they force the use of inline text style math rather than display math. Also you should not havepar
(they do nothing in that context).
– David Carlisle
2 hours ago
add a comment |
I am trying to align my equation number to be vertically centre to the equation. How can I go about doing this? I have attached a screenshot of my output.
I am using pdfLaTex+MakeIndex+BibTeX as me Latex processor if that could possibly make a difference.
Here is my code,
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
centerline$F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx$ \
centerline$f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds$
endsplit
endequation
par
This is some more text.
enddocument
And here is my output,
Thank you in advance!
equations amsmath
New contributor
I am trying to align my equation number to be vertically centre to the equation. How can I go about doing this? I have attached a screenshot of my output.
I am using pdfLaTex+MakeIndex+BibTeX as me Latex processor if that could possibly make a difference.
Here is my code,
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
centerline$F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx$ \
centerline$f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds$
endsplit
endequation
par
This is some more text.
enddocument
And here is my output,
Thank you in advance!
equations amsmath
equations amsmath
New contributor
New contributor
New contributor
asked 2 hours ago
Jacob_FerrierJacob_Ferrier
61
61
New contributor
New contributor
Welcome to TeX-SE! Where did you get the idea to usecenterline
here from?
– marmot
2 hours ago
centerline
should not be used in latex at all and certainly never in a math display. Apart from being full width and so forcing the equation number to move, they force the use of inline text style math rather than display math. Also you should not havepar
(they do nothing in that context).
– David Carlisle
2 hours ago
add a comment |
Welcome to TeX-SE! Where did you get the idea to usecenterline
here from?
– marmot
2 hours ago
centerline
should not be used in latex at all and certainly never in a math display. Apart from being full width and so forcing the equation number to move, they force the use of inline text style math rather than display math. Also you should not havepar
(they do nothing in that context).
– David Carlisle
2 hours ago
Welcome to TeX-SE! Where did you get the idea to use
centerline
here from?– marmot
2 hours ago
Welcome to TeX-SE! Where did you get the idea to use
centerline
here from?– marmot
2 hours ago
centerline
should not be used in latex at all and certainly never in a math display. Apart from being full width and so forcing the equation number to move, they force the use of inline text style math rather than display math. Also you should not have par
(they do nothing in that context).– David Carlisle
2 hours ago
centerline
should not be used in latex at all and certainly never in a math display. Apart from being full width and so forcing the equation number to move, they force the use of inline text style math rather than display math. Also you should not have par
(they do nothing in that context).– David Carlisle
2 hours ago
add a comment |
3 Answers
3
active
oldest
votes
I'd use aligned
instead of split
and normal int
s instead of bigints
. Also, as others pointed out, remove centerline
and consider not using it in LaTeX at all.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginaligned
F(s) &= int_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) &= int_-infty^infty F(s)e^-i2pixs;mathrmds
endaligned
endequation
This is some more text.
enddocument
add a comment |
Not sure why you're complicating things.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackage[skip=1em]parskip
usepackagehyperref
newcommanddiffmathop!mathrmd
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) &= int_-infty^infty f(x)e^-i2pixsdiff x \
f(x) &= int_-infty^infty F(s)e^-i2pixsdiff s
endsplit
endequation
This is some more text.
enddocument
Note the better definition for the differential operator (I'd prefer an italic d, though; with this setup, you can change it just once for the whole document).
The parskip
package is better if you really want to use vertical space between paragraphs. Again, just commenting out the call to the package allows for switching to traditional typesetting. The package makes also some other fixes that manual setting doesn't perform. I left 1em
, but it's not really a good unit to use here.
add a comment |
If you remove centerline
you get
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds
endsplit
endequation
par
This is some more text.
enddocument
Or an arguably cleaner version with inputs from David Carlisle.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = intlimits_-infty^infty f(x),mathrme^-mathrmi2pixs,mathrmdx \
f(x) = intlimits_-infty^infty F(s),mathrme^-mathrmi2pixs,mathrmds
endsplit
endequation
This is some more text.
enddocument
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
add a comment |
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
);
);
Jacob_Ferrier is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f487829%2faligning-equation-numbers-vertically%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'd use aligned
instead of split
and normal int
s instead of bigints
. Also, as others pointed out, remove centerline
and consider not using it in LaTeX at all.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginaligned
F(s) &= int_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) &= int_-infty^infty F(s)e^-i2pixs;mathrmds
endaligned
endequation
This is some more text.
enddocument
add a comment |
I'd use aligned
instead of split
and normal int
s instead of bigints
. Also, as others pointed out, remove centerline
and consider not using it in LaTeX at all.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginaligned
F(s) &= int_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) &= int_-infty^infty F(s)e^-i2pixs;mathrmds
endaligned
endequation
This is some more text.
enddocument
add a comment |
I'd use aligned
instead of split
and normal int
s instead of bigints
. Also, as others pointed out, remove centerline
and consider not using it in LaTeX at all.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginaligned
F(s) &= int_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) &= int_-infty^infty F(s)e^-i2pixs;mathrmds
endaligned
endequation
This is some more text.
enddocument
I'd use aligned
instead of split
and normal int
s instead of bigints
. Also, as others pointed out, remove centerline
and consider not using it in LaTeX at all.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginaligned
F(s) &= int_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) &= int_-infty^infty F(s)e^-i2pixs;mathrmds
endaligned
endequation
This is some more text.
enddocument
edited 1 hour ago
answered 1 hour ago
AboAmmarAboAmmar
34.9k32985
34.9k32985
add a comment |
add a comment |
Not sure why you're complicating things.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackage[skip=1em]parskip
usepackagehyperref
newcommanddiffmathop!mathrmd
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) &= int_-infty^infty f(x)e^-i2pixsdiff x \
f(x) &= int_-infty^infty F(s)e^-i2pixsdiff s
endsplit
endequation
This is some more text.
enddocument
Note the better definition for the differential operator (I'd prefer an italic d, though; with this setup, you can change it just once for the whole document).
The parskip
package is better if you really want to use vertical space between paragraphs. Again, just commenting out the call to the package allows for switching to traditional typesetting. The package makes also some other fixes that manual setting doesn't perform. I left 1em
, but it's not really a good unit to use here.
add a comment |
Not sure why you're complicating things.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackage[skip=1em]parskip
usepackagehyperref
newcommanddiffmathop!mathrmd
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) &= int_-infty^infty f(x)e^-i2pixsdiff x \
f(x) &= int_-infty^infty F(s)e^-i2pixsdiff s
endsplit
endequation
This is some more text.
enddocument
Note the better definition for the differential operator (I'd prefer an italic d, though; with this setup, you can change it just once for the whole document).
The parskip
package is better if you really want to use vertical space between paragraphs. Again, just commenting out the call to the package allows for switching to traditional typesetting. The package makes also some other fixes that manual setting doesn't perform. I left 1em
, but it's not really a good unit to use here.
add a comment |
Not sure why you're complicating things.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackage[skip=1em]parskip
usepackagehyperref
newcommanddiffmathop!mathrmd
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) &= int_-infty^infty f(x)e^-i2pixsdiff x \
f(x) &= int_-infty^infty F(s)e^-i2pixsdiff s
endsplit
endequation
This is some more text.
enddocument
Note the better definition for the differential operator (I'd prefer an italic d, though; with this setup, you can change it just once for the whole document).
The parskip
package is better if you really want to use vertical space between paragraphs. Again, just commenting out the call to the package allows for switching to traditional typesetting. The package makes also some other fixes that manual setting doesn't perform. I left 1em
, but it's not really a good unit to use here.
Not sure why you're complicating things.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackage[skip=1em]parskip
usepackagehyperref
newcommanddiffmathop!mathrmd
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) &= int_-infty^infty f(x)e^-i2pixsdiff x \
f(x) &= int_-infty^infty F(s)e^-i2pixsdiff s
endsplit
endequation
This is some more text.
enddocument
Note the better definition for the differential operator (I'd prefer an italic d, though; with this setup, you can change it just once for the whole document).
The parskip
package is better if you really want to use vertical space between paragraphs. Again, just commenting out the call to the package allows for switching to traditional typesetting. The package makes also some other fixes that manual setting doesn't perform. I left 1em
, but it's not really a good unit to use here.
answered 1 hour ago
egregegreg
737k8919373265
737k8919373265
add a comment |
add a comment |
If you remove centerline
you get
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds
endsplit
endequation
par
This is some more text.
enddocument
Or an arguably cleaner version with inputs from David Carlisle.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = intlimits_-infty^infty f(x),mathrme^-mathrmi2pixs,mathrmdx \
f(x) = intlimits_-infty^infty F(s),mathrme^-mathrmi2pixs,mathrmds
endsplit
endequation
This is some more text.
enddocument
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
add a comment |
If you remove centerline
you get
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds
endsplit
endequation
par
This is some more text.
enddocument
Or an arguably cleaner version with inputs from David Carlisle.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = intlimits_-infty^infty f(x),mathrme^-mathrmi2pixs,mathrmdx \
f(x) = intlimits_-infty^infty F(s),mathrme^-mathrmi2pixs,mathrmds
endsplit
endequation
This is some more text.
enddocument
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
add a comment |
If you remove centerline
you get
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds
endsplit
endequation
par
This is some more text.
enddocument
Or an arguably cleaner version with inputs from David Carlisle.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = intlimits_-infty^infty f(x),mathrme^-mathrmi2pixs,mathrmdx \
f(x) = intlimits_-infty^infty F(s),mathrme^-mathrmi2pixs,mathrmds
endsplit
endequation
This is some more text.
enddocument
If you remove centerline
you get
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
par
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = bigints_-infty^infty f(x)e^-i2pixs;mathrmdx \
f(x) = bigints_-infty^infty F(s)e^-i2pixs;mathrmds
endsplit
endequation
par
This is some more text.
enddocument
Or an arguably cleaner version with inputs from David Carlisle.
documentclass[a4paper, 11pt, leqno]article
usepackageamsmath
usepackageamsfonts
usepackageindentfirst
usepackagehyperref
usepackagebigints
setlengthparindent0em
setlengthparskip1em
begindocument
This is some text.
beginequation labelcyclicFourierTransform
beginsplit
F(s) = intlimits_-infty^infty f(x),mathrme^-mathrmi2pixs,mathrmdx \
f(x) = intlimits_-infty^infty F(s),mathrme^-mathrmi2pixs,mathrmds
endsplit
endequation
This is some more text.
enddocument
edited 1 hour ago
answered 2 hours ago
marmotmarmot
121k6159297
121k6159297
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
add a comment |
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
the bigints seem er a bit big (as you have fixed the display to use display style)
– David Carlisle
1 hour ago
add a comment |
Jacob_Ferrier is a new contributor. Be nice, and check out our Code of Conduct.
Jacob_Ferrier is a new contributor. Be nice, and check out our Code of Conduct.
Jacob_Ferrier is a new contributor. Be nice, and check out our Code of Conduct.
Jacob_Ferrier 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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f487829%2faligning-equation-numbers-vertically%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Welcome to TeX-SE! Where did you get the idea to use
centerline
here from?– marmot
2 hours ago
centerline
should not be used in latex at all and certainly never in a math display. Apart from being full width and so forcing the equation number to move, they force the use of inline text style math rather than display math. Also you should not havepar
(they do nothing in that context).– David Carlisle
2 hours ago