This is essentially a follow up to my previous question. My IPython Notebook works fine with AMScd for commutative diagrams. However, the HTML file from nbconvert has commutative diagrams flattened! Here's my minimal (non)working example of an IPython Notebook cell containing a commutative diagram:
## A minimal (non)working example for AMScd
\begin{CD}
A @>a>> B\\
@AAA @AAA\\
C @>c>> D
\end{CD}
and please find a surreptitious image of output (to get around my reputation barrier!). I had to modify my Python Framework's site-packages/IPython/nbconvert/templates/mathjax.tpl
to include:
TeX: {
extensions: ["AMScd.js", "AMSsymbols.js", "boldsymbol.js", "cancel.js", "mathchoice.js", "newcommand.js", "unicode.js"]
}
in an attempt for the HTML conversion to go through successfully. Of course, this doesn't seem to quite work. Does anyone have experience with this, or know how to fix this? Thanks so much!