
Как установить \quad
пробел между уравнением и номером уравнения с центрированным выводом, т.е. уравнение будет центрировано, вывод должен быть таким, как показано ниже
А + б (1)
А + б (2)
решение1
\documentclass{article}
\usepackage{amsmath}
\begin{document}
The usual setting (in \LaTeX\ and generally) is to have the numbers flush to the edge
\begin{align}
A &+ b \\
Ax &+ zz
\end{align}
But if you really need this layout you can do the following
(replacing 1em by whatever space you need):
\newcommand\mytag{\hspace*{1em}\refstepcounter{equation}(\theequation)}
\[
\begin{aligned}
A &+ b &\mytag\\
Ax &+ zz &\mytag
\end{aligned}
\]
\end{document}