intertext command seems to remove the indentation. Is there a way to get the normal indentation while in math mode?
\documentclass[11pt, a4paper]{IEEEtran}
\usepackage{amsmath}
\usepackage{amssymb, amsfonts}
\begin{document}
The indentation in this paragraph works well without any issues
\begin{align}
y &= a \thinspace x + c
%
\\
\intertext{The indentation in this paragraph has been removed since this is an intertext. How can I force this text to retain the default indentation?}
e &= m \thinspace c^{2}
\end{align}
\end{document}


amssymb, there is no need foramsfonts. – Ruixi Zhang Jun 29 '18 at 02:19align– David Carlisle Jun 29 '18 at 06:51