I use a quotation environment to make axioms or assumptions stand out from other text. But the equation numbers then end up at the right margin for the quotation environment, not the right margin of the text:
Question: How can I put the equation numbers from the quotation environment in the same place as the second equation number?
\documentclass{standalone}
\begin{document}
Inside quotation environment:
\begin{quotation}
Axiom name:
\begin{equation}
a = b.
\end{equation}
\end{quotation}
Outside quotation environment:
\begin{equation}
c = d.
\end{equation}
\end{document}



quotationis the right way to use it? – May 23 '16 at 07:24theoremlike environment rather to emphasize axioms etc. – May 23 '16 at 07:41