Well, this is MathJax related issue. May I suggest you to have a search or question on stackoverflow?
As a quick search, MathJax support \def
, \let
, \newcommand
, \renewcommand
, \newenvironment
, \renewenvironment
; However, your definion of equation environment seems not support by MathJax, thus LaTeX2HTML not support too.
The work way to define the equation environment could be
$\newenvironment{eq}{\begin{equation}}{\end{equation}}$
then you can use it as
\begin{eq}
\int xdx=x^2/2.
\end{eq}
Of course you can put your definiton of this newenvironment into the LaTeX2HTML config block, where some sample example of \newcommand
is given, then it will work in all post.
-
This reply was modified 5 years, 11 months ago by
Van Abel.
-
This reply was modified 5 years, 11 months ago by
Van Abel.
-
This reply was modified 5 years, 11 months ago by
Van Abel.