Hi !
I have an issue with respect to the use of aligned LaTeX equations. I often use Obsidian to create math texts that get instantaneously readable. To do this, I often use the align
LaTeX environment :
Therefore,
$$
\begin{align*}
&d_{k+1}^{(k+1)} = a_k d_k^{(k)} \\
&d_{k}^{(k+1)} = a_k d_{k - 1}^{(k)} + b_k d_k^{(k)}\\
& \vdots \\
& d_0^{(k+1)} = b_k d_0^{(k)} + c_k d_0^{(k - 1)}
\end{align*}
$$
for any $k > 1$
It works well graphically:
The Markdown file does not have, however, a proper content. This is because the display math environment created by the double $
should not contain an align
environment. This is not compliant with the LaTeX language. Hence, the .md file cannot be converted automatically with, e.g. pandoc (but exporting the document to pdf with Obsidian works well).
How should I format my code to make it clean?
Best regards,
Michaël