Options leqno, reqno for documentclass or exist another option?aligning a multiline formula with the bullet of itemizeHow can I number a few equations togetherLeft aligning equations without align characterHow can I change the position of equation number locally if I am not using the amsmath package?List of equations, including equation contents and captionequation exceeds page width after changing document class from “article” to “beamer”Can't generate png with Error: Erroneous nesting of equation structuresHow continue a equation next lineAlign equations within one lineflalign, leqno and equations left aligned. Overlapping of equations and tags

How can I get precisely a certain cubic cm by changing the following factors?

Where did the extra Pym particles come from in Endgame?

Does a creature that is immune to a condition still make a saving throw?

How to replace the "space symbol" (squat-u) in listings?

Cannot populate data in lightning data table

Why do Ichisongas hate elephants and hippos?

Counterexample: a pair of linearly ordered sets that are isomorphic to subsets of the other, but not isomorphic between them

Why is the origin of “threshold” uncertain?

Phrase for the opposite of "foolproof"

Sci-fi novel series with instant travel between planets through gates. A river runs through the gates

What's the metal clinking sound at the end of credits in Avengers: Endgame?

Why do computer-science majors learn calculus?

Does jamais mean always or never in this context?

When and why did journal article titles become descriptive, rather than creatively allusive?

Python "triplet" dictionary?

Will a top journal at least read my introduction?

A non-technological, repeating, visible object in the sky, holding its position in the sky for hours

Stateful vs non-stateful app

Feels like I am getting dragged in office politics

Can solid acids and bases have pH values? If not, how are they classified as acids or bases?

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

What's the polite way to say "I need to urinate"?

In gnome-terminal only 2 out of 3 zoom keys work

Subtleties of choosing the sequence of tenses in Russian



Options leqno, reqno for documentclass or exist another option?


aligning a multiline formula with the bullet of itemizeHow can I number a few equations togetherLeft aligning equations without align characterHow can I change the position of equation number locally if I am not using the amsmath package?List of equations, including equation contents and captionequation exceeds page width after changing document class from “article” to “beamer”Can't generate png with Error: Erroneous nesting of equation structuresHow continue a equation next lineAlign equations within one lineflalign, leqno and equations left aligned. Overlapping of equations and tags













1















I consider these simple MWE



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
x^n + y^n = z^n
endequation
enddocument


With the option leqno we know that LaTeX puts the progressive number of the equation on the extreme left. With the option reqno at the extreme right of the page.



documentclass[12pt,reqno]article
usepackageamsmath
begindocument
beginequation
E=mc^2
endequation
enddocument


But when I have, for example a code with align option, knowing that the number can be either on the first or second equation, how come the leqno option is not active and the number is always put on the right?



enter image description here



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginalign
a &= b+c nonumber\
e &= f+g
endalign
enddocument


enter image description here



  1. How do I put the number of the equation between the two equations in the middle or at left or at right?

  2. Are there only leqno and regno options with LaTeX? But is there, for example, the ceqno option, i.e. the possibility of placing the number next to the equation (at the centre to be clearer) or that it is always at the centre but in the middle of the two equations?









share|improve this question



















  • 2





    why do you say "how come the leqno option is not active and the number is always put on the right?" the equation number appears on the left when leqno is used.

    – David Carlisle
    2 hours ago











  • @DavidCarlisle Why leqno is not active with align?

    – Sebastiano
    2 hours ago












  • it is active, you get the number on the left

    – David Carlisle
    2 hours ago






  • 1





    The code is in the question not the answer so I added the image for leqno to your answer, you only showed the default right number. (there is no regno option)

    – David Carlisle
    2 hours ago











  • @DavidCarlisle I have deleted my previous comment after your edit.

    – Sebastiano
    2 hours ago















1















I consider these simple MWE



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
x^n + y^n = z^n
endequation
enddocument


With the option leqno we know that LaTeX puts the progressive number of the equation on the extreme left. With the option reqno at the extreme right of the page.



documentclass[12pt,reqno]article
usepackageamsmath
begindocument
beginequation
E=mc^2
endequation
enddocument


But when I have, for example a code with align option, knowing that the number can be either on the first or second equation, how come the leqno option is not active and the number is always put on the right?



enter image description here



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginalign
a &= b+c nonumber\
e &= f+g
endalign
enddocument


enter image description here



  1. How do I put the number of the equation between the two equations in the middle or at left or at right?

  2. Are there only leqno and regno options with LaTeX? But is there, for example, the ceqno option, i.e. the possibility of placing the number next to the equation (at the centre to be clearer) or that it is always at the centre but in the middle of the two equations?









share|improve this question



















  • 2





    why do you say "how come the leqno option is not active and the number is always put on the right?" the equation number appears on the left when leqno is used.

    – David Carlisle
    2 hours ago











  • @DavidCarlisle Why leqno is not active with align?

    – Sebastiano
    2 hours ago












  • it is active, you get the number on the left

    – David Carlisle
    2 hours ago






  • 1





    The code is in the question not the answer so I added the image for leqno to your answer, you only showed the default right number. (there is no regno option)

    – David Carlisle
    2 hours ago











  • @DavidCarlisle I have deleted my previous comment after your edit.

    – Sebastiano
    2 hours ago













1












1








1








I consider these simple MWE



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
x^n + y^n = z^n
endequation
enddocument


With the option leqno we know that LaTeX puts the progressive number of the equation on the extreme left. With the option reqno at the extreme right of the page.



documentclass[12pt,reqno]article
usepackageamsmath
begindocument
beginequation
E=mc^2
endequation
enddocument


But when I have, for example a code with align option, knowing that the number can be either on the first or second equation, how come the leqno option is not active and the number is always put on the right?



enter image description here



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginalign
a &= b+c nonumber\
e &= f+g
endalign
enddocument


enter image description here



  1. How do I put the number of the equation between the two equations in the middle or at left or at right?

  2. Are there only leqno and regno options with LaTeX? But is there, for example, the ceqno option, i.e. the possibility of placing the number next to the equation (at the centre to be clearer) or that it is always at the centre but in the middle of the two equations?









share|improve this question
















I consider these simple MWE



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
x^n + y^n = z^n
endequation
enddocument


With the option leqno we know that LaTeX puts the progressive number of the equation on the extreme left. With the option reqno at the extreme right of the page.



documentclass[12pt,reqno]article
usepackageamsmath
begindocument
beginequation
E=mc^2
endequation
enddocument


But when I have, for example a code with align option, knowing that the number can be either on the first or second equation, how come the leqno option is not active and the number is always put on the right?



enter image description here



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginalign
a &= b+c nonumber\
e &= f+g
endalign
enddocument


enter image description here



  1. How do I put the number of the equation between the two equations in the middle or at left or at right?

  2. Are there only leqno and regno options with LaTeX? But is there, for example, the ceqno option, i.e. the possibility of placing the number next to the equation (at the centre to be clearer) or that it is always at the centre but in the middle of the two equations?






math-mode equations numbering align amsmath






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 hours ago









David Carlisle

502k4211491897




502k4211491897










asked 2 hours ago









SebastianoSebastiano

11.8k42467




11.8k42467







  • 2





    why do you say "how come the leqno option is not active and the number is always put on the right?" the equation number appears on the left when leqno is used.

    – David Carlisle
    2 hours ago











  • @DavidCarlisle Why leqno is not active with align?

    – Sebastiano
    2 hours ago












  • it is active, you get the number on the left

    – David Carlisle
    2 hours ago






  • 1





    The code is in the question not the answer so I added the image for leqno to your answer, you only showed the default right number. (there is no regno option)

    – David Carlisle
    2 hours ago











  • @DavidCarlisle I have deleted my previous comment after your edit.

    – Sebastiano
    2 hours ago












  • 2





    why do you say "how come the leqno option is not active and the number is always put on the right?" the equation number appears on the left when leqno is used.

    – David Carlisle
    2 hours ago











  • @DavidCarlisle Why leqno is not active with align?

    – Sebastiano
    2 hours ago












  • it is active, you get the number on the left

    – David Carlisle
    2 hours ago






  • 1





    The code is in the question not the answer so I added the image for leqno to your answer, you only showed the default right number. (there is no regno option)

    – David Carlisle
    2 hours ago











  • @DavidCarlisle I have deleted my previous comment after your edit.

    – Sebastiano
    2 hours ago







2




2





why do you say "how come the leqno option is not active and the number is always put on the right?" the equation number appears on the left when leqno is used.

– David Carlisle
2 hours ago





why do you say "how come the leqno option is not active and the number is always put on the right?" the equation number appears on the left when leqno is used.

– David Carlisle
2 hours ago













@DavidCarlisle Why leqno is not active with align?

– Sebastiano
2 hours ago






@DavidCarlisle Why leqno is not active with align?

– Sebastiano
2 hours ago














it is active, you get the number on the left

– David Carlisle
2 hours ago





it is active, you get the number on the left

– David Carlisle
2 hours ago




1




1





The code is in the question not the answer so I added the image for leqno to your answer, you only showed the default right number. (there is no regno option)

– David Carlisle
2 hours ago





The code is in the question not the answer so I added the image for leqno to your answer, you only showed the default right number. (there is no regno option)

– David Carlisle
2 hours ago













@DavidCarlisle I have deleted my previous comment after your edit.

– Sebastiano
2 hours ago





@DavidCarlisle I have deleted my previous comment after your edit.

– Sebastiano
2 hours ago










1 Answer
1






active

oldest

votes


















4














If you want a single number for the display, use equation not align
enter image description here



Note that there is no reqno option, equation numbers on the right is the default.



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
beginsplit
a &= b+c \
e &= f+g
endsplit
endequation
enddocument





share|improve this answer

























  • But can the number (1) be placed closer to the two equations always in the middle?

    – Sebastiano
    2 hours ago











  • @Sebastiano equation numbers are always placed at the margin

    – David Carlisle
    2 hours ago












  • @Sebastiano if you really wanted to change the margins you could use a minipage for example

    – David Carlisle
    2 hours ago











  • I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

    – Sebastiano
    2 hours ago






  • 2





    if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

    – David Carlisle
    1 hour 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%2f488141%2foptions-leqno-reqno-for-documentclass-or-exist-another-option%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









4














If you want a single number for the display, use equation not align
enter image description here



Note that there is no reqno option, equation numbers on the right is the default.



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
beginsplit
a &= b+c \
e &= f+g
endsplit
endequation
enddocument





share|improve this answer

























  • But can the number (1) be placed closer to the two equations always in the middle?

    – Sebastiano
    2 hours ago











  • @Sebastiano equation numbers are always placed at the margin

    – David Carlisle
    2 hours ago












  • @Sebastiano if you really wanted to change the margins you could use a minipage for example

    – David Carlisle
    2 hours ago











  • I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

    – Sebastiano
    2 hours ago






  • 2





    if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

    – David Carlisle
    1 hour ago















4














If you want a single number for the display, use equation not align
enter image description here



Note that there is no reqno option, equation numbers on the right is the default.



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
beginsplit
a &= b+c \
e &= f+g
endsplit
endequation
enddocument





share|improve this answer

























  • But can the number (1) be placed closer to the two equations always in the middle?

    – Sebastiano
    2 hours ago











  • @Sebastiano equation numbers are always placed at the margin

    – David Carlisle
    2 hours ago












  • @Sebastiano if you really wanted to change the margins you could use a minipage for example

    – David Carlisle
    2 hours ago











  • I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

    – Sebastiano
    2 hours ago






  • 2





    if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

    – David Carlisle
    1 hour ago













4












4








4







If you want a single number for the display, use equation not align
enter image description here



Note that there is no reqno option, equation numbers on the right is the default.



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
beginsplit
a &= b+c \
e &= f+g
endsplit
endequation
enddocument





share|improve this answer















If you want a single number for the display, use equation not align
enter image description here



Note that there is no reqno option, equation numbers on the right is the default.



documentclass[12pt,leqno]article
usepackageamsmath
begindocument
beginequation
beginsplit
a &= b+c \
e &= f+g
endsplit
endequation
enddocument






share|improve this answer














share|improve this answer



share|improve this answer








edited 2 hours ago

























answered 2 hours ago









David CarlisleDavid Carlisle

502k4211491897




502k4211491897












  • But can the number (1) be placed closer to the two equations always in the middle?

    – Sebastiano
    2 hours ago











  • @Sebastiano equation numbers are always placed at the margin

    – David Carlisle
    2 hours ago












  • @Sebastiano if you really wanted to change the margins you could use a minipage for example

    – David Carlisle
    2 hours ago











  • I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

    – Sebastiano
    2 hours ago






  • 2





    if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

    – David Carlisle
    1 hour ago

















  • But can the number (1) be placed closer to the two equations always in the middle?

    – Sebastiano
    2 hours ago











  • @Sebastiano equation numbers are always placed at the margin

    – David Carlisle
    2 hours ago












  • @Sebastiano if you really wanted to change the margins you could use a minipage for example

    – David Carlisle
    2 hours ago











  • I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

    – Sebastiano
    2 hours ago






  • 2





    if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

    – David Carlisle
    1 hour ago
















But can the number (1) be placed closer to the two equations always in the middle?

– Sebastiano
2 hours ago





But can the number (1) be placed closer to the two equations always in the middle?

– Sebastiano
2 hours ago













@Sebastiano equation numbers are always placed at the margin

– David Carlisle
2 hours ago






@Sebastiano equation numbers are always placed at the margin

– David Carlisle
2 hours ago














@Sebastiano if you really wanted to change the margins you could use a minipage for example

– David Carlisle
2 hours ago





@Sebastiano if you really wanted to change the margins you could use a minipage for example

– David Carlisle
2 hours ago













I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

– Sebastiano
2 hours ago





I asked myself this question when I remember seeing a book of Physics in English that had the number of formulas nearby.

– Sebastiano
2 hours ago




2




2





if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

– David Carlisle
1 hour ago





if you surround the display with say beginminipage.5textwidth then the number is only moved half way across the page (although using a minipage has other issues) @Sebastiano

– David Carlisle
1 hour 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%2f488141%2foptions-leqno-reqno-for-documentclass-or-exist-another-option%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

Siegen Nawigatsjuun

Log på Navigationsmenu

Log på Navigationsmenu