我需要解决这个问题,请帮忙

我需要解决这个问题,请帮忙
\usepackage{amsmath}
\begin{document}
\begin{equation}
 RresT (u) =
    \begin{cases}
      1 & \text{\RresT (u)=   \Bigg\{ 1,  \text{ if Pos. {Arcs_{v_{\xrightarrow[]{}}u \ (u)} > Neg.Arcs_{v_{\xrightarrow[]{}}u}  (u)}\\
      0 & \text{otherwise}
    \end{cases}       
\end{equation}
\end{document}

此代码不起作用。有人能告诉我我遗漏了什么吗?请帮帮我

答案1

虽然不是您截图的精确复制品,但希望有用:

在此处输入图片描述

在下面的代码中,请注意我省略了一些无用的代码,例如\RresT (u)= \Bigg\{ 1,,并将的两个实例替换为v_{\xrightarrow[]{}}uv \to u我还用直立字体呈现了RresTPos.Arcs和。Neg.Arcs

\documentclass{article} % or some other suitable document class
\usepackage{amsmath}

\begin{document}
\begin{equation}
\mathrm{RresT}(u) =
   \begin{cases}
      1 & \text{if } \mathrm{Pos.Arcs}_{v \to u} (u) 
                    >\mathrm{Neg.Arcs}_{v \to u} (u) \\
      0 & \text{otherwise}
   \end{cases}       
\end{equation}
\end{document}

相关内容