如何将等式放到线的中间

如何将等式放到线的中间

我正在尝试将下面的方程式放入乳胶中,而且我需要它位于线的中间。

PPV =TP /(TP + FP)

答案1

我不确定这些参数是否有效,\mathrm因为我不知道这些函数的性质。但是,方程可以以直线为中心,如下所示。

\documentclass{article}
\usepackage[showframe]{geometry} %% added to show frames.
\newcommand*{\PPV}{\mathrm{PPV}}
\newcommand*{\TP}{\mathrm{TP}}
\newcommand*{\FP}{\mathrm{FP}}
\begin{document}
This is a line of text just for reference to know that the equation below is at the center of the line.
\[\PPV = \TP / (\TP + \FP)\]
\[\PPV = \frac{\TP}{(\TP + \FP)}\]

\end{document}

在此处输入图片描述

相关内容