Issue
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:
Solution
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*}
Answered By - Sergei
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.