Reputation: 1373
I want to write the next equation (only the first part)
in a Jupyter notebook.
When I tried with this code
\begin{gather*}
Sensitivity = \frac{number true positives}{number of true positivities + number of false negatives}
\end{gather*}
I get this:
Upvotes: 2
Views: 1058
Reputation: 7810
This is how you can embed text in LaTeX:
\text{Some text with spaces}
So in your case, it could look like this:
\begin{gather*}
Sensitivity = \frac{\text{number true positives}}{\text{number of true positivities} + \text{number of false negatives}}
\end{gather*}
Upvotes: 1