Equation Number in Latex on left side

  • Context: LaTeX 
  • Thread starter Thread starter Tederoony
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 13K views
Tederoony
Messages
1
Reaction score
0
Hi all,

When I typeset equations with automatic labeling, the labels (numbers) appear on the left side of the page. I want them on the right side -- where they seem to go by default for everyone else. I'm using TexShop v2.37 for mac.

Is there a problem with my template?
I'm using:
\documentclass[12pt]{amsart}
\usepackage{geometry}
\usepackage{mathtools}
\geometry{letterpaper}

Then I'll have something like \begin{equation} a=b \end{equation}

How can one customize which side of the page equation numbers appear on?

Thanks in advance!
 
Physics news on Phys.org
Use
Code:
\documentclass[reqno, 12pt]{amsart}
amsart defaults to left equation numbering, so use the reqno option.