I believe that almost all the information related to this issue can be found in this long Github thread .
The conversation there continues (at the moment) for 3.5 years and is still active. Important points:
You can very easily enable numbering by executing a cell with the following contents:
%%javascript MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "AMS" } } });
There is an extension for numbering equations.
- The developer of minrk suggested that this extension is the right approach and can be combined with master (but functionality will be disabled by default).
To install the extension via pip
:
pip install jupyter_contrib_nbextensions
To install extensions through Anaconda :
conda install -c conda-forge jupyter_contrib_nbextensions
After using one of the installation methods mentioned above, enable the extension:
jupyter contrib nbextension install
source share