I understand that you can left-align text using \intertext{...} inside \begin{align}...\end{align} environment, e.g. this answer.
Is it possible to do the same but inside \begin{equation}...\end{equation}?
The end goal is to wrap the whole environment inside a display formula (\[ \]) as part of bullet point within a list. I've tried wrapping the align environment this way, but for some reason \intertext{...} does not work as the text is squeezed together without spaces.
EDIT: clarifying the question with an example and more context.
First, I should say that I'm trying to do this in org-mode in Emacs, i.e. compiling a org doc a PDF via LaTeX. The equations appear as part of an item in a list, e.g.
- Blah blah blah, then \[\begin{align*} \label{eq1} \text{something text}
&= \frac{a}{b} \\ &= \frac{a}{c+d} \\ & \intertext{some other text, gives}
\\ \label{eq2} a &= b+c \end{align*}\]
In other words, I want the block of displayed equations to be centered w.r.t the list item they belong to, and I want the intertext{...} text to be left-aligned w.r.t the start of each list item, or, at least to the left edge of the displayed formula block.
At the top of the .org doc, I have
#+OPTIONS: TeX:t LaTeX:t
#+LaTeX_CLASS: article
#+LaTeX_HEADER: \usepackage{amsmath}
So far, Emacs seems to compile and produces a PDF file, except that the \intertext segment inside the display formula is wrong:
How do I correct it? I am also open to suggestions that utilize something other than a single \begin{align}...\end{align} environment to achieve the same effect inside a list item.


alignandequationare both displayed environments for math. – Johannes_B Jan 17 '16 at 08:57\intertext{...}[not working] as the text is squeezed together without spaces"? – Mico Jan 17 '16 at 09:22alignis a multi-line display and\intertextinserts lines of text between the lines of math.equationis a single line display so\intertextwould have no obvious use here. – David Carlisle Jan 17 '16 at 10:16\intertextsuggests it has been used incorrectly but unless you give an example it will be impossible to help. – David Carlisle Jan 17 '16 at 10:17\[ ... \]orequation. – barbara beeton Jan 17 '16 at 13:36\intertextonly makes sense after\\not after&it goes between rows but in general please always provide a complete small document that shows the problem, it is impossible to debug disconnected fragments. – David Carlisle Jan 17 '16 at 21:15align*starts math mode so you must have had multiple tex errors from\[\begin{align*}you can not havealign*inside math. After a TeX error you should not even look at the pdf file, tex recovers from errors to allow further syntax checking, it makes no attempt to make sensible typeset output in that case. – David Carlisle Jan 17 '16 at 21:17