prepare text Markdown document with some LaTeX equations inside the inline $ ... $ block:
# Doing Math
Simple inline math is rendered as is $a^2 + b^2 =
c^2$.
But LaTeX equation is rendered correctly:
\begin{equation}
J(\theta) = \frac 1 2 \sum_{i=1}^m (h_\theta(x^{(i)})-y^{(i)})^2
\end{equation}
Expected result:
ReText renders math inside inline $ ... $ blocks. This behavior is expected to get compatibility with RMarkdown and other Markdown dialects. For example VNote renders this correctly, but fails with \begin{equation} ... \end{equation} math.
Actual result:
ReText does not render math inside inline $...$ block and shows it as is.
Note: I'm running ReText 7.0.3 (installed with sudo pip3 install ReText) on Ubuntu 16.04 LTS amd64.
Steps to reproduce:
$ ... $
block:Expected result:
ReText renders math inside inline
$ ... $
blocks. This behavior is expected to get compatibility with RMarkdown and other Markdown dialects. For example VNote renders this correctly, but fails with\begin{equation} ... \end{equation}
math.Actual result:
ReText does not render math inside inline
$...$
block and shows it as is.Note: I'm running ReText 7.0.3 (installed with
sudo pip3 install ReText
) on Ubuntu 16.04 LTS amd64.