The
amsmath user guide suggests the
\intertext command for this case …
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{amsmath}
\begin{document}
\begin{subequations}\label{eq:asymcoef}
\begin{align}
\alpha_{j}=\left(\sum _{k=1}^{6}a_{kj}\right) \\
\intertext{and}
\beta_{j}=\left(\sum _{k=1}^{6}b_{kj}\right)
\end{align}
\end{subequations}
\end{document}
… and the
mathtools package enhances this with the
\shortintertext command.
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{mathtools} % loads »amsmath«
\begin{document}
\begin{subequations}\label{eq:asymcoef}
\begin{align}
\alpha_{j}=\left(\sum _{k=1}^{6}a_{kj}\right) \\
\shortintertext{and}
\beta_{j}=\left(\sum _{k=1}^{6}b_{kj}\right)
\end{align}
\end{subequations}
\end{document}
Best regards and welcome to the board
Thorsten