My apologies for asking so many questions here. I want to introduce a sentence in between 2 subequations which is not in math mode. Here is the code that I am using:
\documentclass[12pt,oneside,reqno]{amsart}
\usepackage{amssymb}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{subequations}
\begin{align}
x=1222222222222222\\
Here x is an arbitrary constant\\
y=2
\end{align}
\end{subequations}
\end{document}
In the output, the line Here x is an arbitrary constant appears in math mode. Also y=2 is aligned towards the right which is something I don't want. Is it possible to include the sentence inside the subequations not in math mode. Also how do I align y=2 along with x in the center?




