答案1
与你所述的目标有些相反,我建议你使用符号=
而不是每行的开头作为对齐点。我还会将用作变量名的单词排版为直立字母。最后,请使用\cdot
而不是*
来表示乘法。
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'align' environment
\newcommand\vn[1]{\mathrm{#1}} % "vn" is short for "variable name"
\begin{document}
\begin{align}
\vn{Accuracy} &= \frac{TP+TN}{TP+TN+FP+FN}\\[\jot]
\vn{Precision} &= \frac{TP}{TP+FP}\\[\jot]
\vn{Recall} &= \frac{TP}{TP+FN}\\[\jot]
F_1 &= \frac{2\cdot\vn{Precision}\cdot\vn{Recall}}%
{\vn{Precision}+\vn{Recall}}
\end{align}
\end{document}
答案2
您可以使用align
需要以下amsmath
包的环境:
\mathit
请注意以下代码中的使用:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
&\mathit{Accuracy} = \frac{TP+TN}{TP+TN+FP+FN}\\
&\mathit{Precision} = \frac{TP}{TP+FP}\\
&\mathit{Recall} = \frac{TP}{TP+FN}\\
&F1 = \frac{2*\mathit{Precision}*\mathit{Recall}}{\mathit{Precision}+\mathit{Recall}}
\end{align}
\end{document}