Equation numbering in Jupyter notebooks

前端 未结 3 1522
北海茫月
北海茫月 2020-12-28 13:59

The fact is, that in official documentation Jupyter - motivating examples stands

Equation numbering and referencing will be available in a future vers

3条回答
  •  长发绾君心
    2020-12-28 14:22

    Here is a working example, to be entered in a markdown cell:

    \begin{equation*}
    \mathbf{r} \equiv \begin{bmatrix}
    y \\
    \theta
    \end{bmatrix}
    \label{eq:vector_ray} \tag{1}
    \end{equation*}
    
    Vector **r** is defined by equation $\eqref{eq:vector_ray}$
    

    It's self explanatory but here's some details:

    \label : name describing he equation

    \tag : the label appearing next to the equationcan be a number or letters

    \eqref : reference to the labeled equation

    This will be shown as:

提交回复
热议问题