Text Formattingequation numbering

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
jdbunnett
Posts: 3
Joined: Fri Jun 11, 2010 11:54 am

equation numbering

Post by jdbunnett »

hello I am presently using \documentclass{amsbook} for a project in number theory.
The latex software I have numbers equations on the left hand side of the equation.
Could somebody tell me please how to change that to Right hand side numbering
JDB

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

equation numbering

Post by localghost »

For this class it requires an additional option.

Code: Select all

\documentclass[11pt,a4paper,reqno]{amsbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\begin{document}
  \begin{equation}
    E=mc^2
  \end{equation}
\end{document}
The class documentation has the details.


Thorsten
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: equation numbering

Post by frabjous »

Try changing:

\documentclass{amsbook}

to

\documentclass[reqno]{amsbook}

(Ouch. Out-ninja-ed again!)
jdbunnett
Posts: 3
Joined: Fri Jun 11, 2010 11:54 am

Re: equation numbering

Post by jdbunnett »

Thank you friends.
JDB
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: equation numbering

Post by localghost »

Now that the problem is solved, please mark the topic accordingly as you have already been directed in my last reply.
Post Reply