I would like to define an environment (called intermittentalign in the following code) that works like align but can work inside of tabularx (or inside of tabular would be okay too). How might I do this?
\documentclass{article}
\usepackage{amsmath}
\usepackage{tabularx}
\begin{document}
% Structure without intermittentalign (for comparison's sake):
\begin{tabularx}{250pt}{rXl}
- & Math & Words\
- & Math & Words\
- & Math & Words
\end{tabularx}
% I would like something like this:
% \begin{tabularx}{250pt}{rXl}
% 1. & Math & Words\
% 2. & \begin{intermittentalign} $ m &= 9/3 $ \end{intermittentalign} & Words\
% 3. & \begin{intermittentalign} $ &= 3 $ \end{intermittentalign} & Words
% \end{tabularx}
% where the intermittentalign environment recalls the placement of & in previous intermittentalign environments
\end{document}
There seem to be similar questions already on StackExchange, but the answers to them don't spell things out enough that I can understand them.



enumerateenvironment? – projetmbc Aug 14 '23 at 19:50enumerate? If the former, then my answer is that the reason I don't useenumeratehere is that it won't work for the project I'm working on. (My MWE doesn't represent my project as a whole; it's geared toward the particular problem of my question.) – Noah J Aug 15 '23 at 01:55