Latex 中的方程

Latex 中的方程

我是 Latex 新手。我正尝试在 Latex 中写一个方程。我搜索了很多关于方程的问题,并尝试了所有可能的解决方案,但我没有得到我想要的。我也使用了不同的工具,但仍然没有得到我想要的方程。请帮助我。

在此处输入图片描述

答案1

我同意 phollox 的观点,从逻辑上讲,这没有太大意义,我也不知道 SVP 是 3 个变量的乘积还是某种表达式。不过,以下内容可以给你一个开始。

\documentclass[fleqn]{article}
\usepackage{mathtools}
\usepackage{siunitx}
\begin{document}
\[
 AD=\begin{dcases}
 1 & \text{if}~\left(\left(\frac{AC}{4G}+\frac{\text{Noise}}{\si{400\decibel}}\right)\right)
 \ge\text{Accident
 threshold}\wedge\left(\text{Speed}\ge\si{24\kilo\meter\per\hour}\right)
 \\
 1 & \text{if}~\left(\left(\frac{AC}{4G}+\frac{\text{Noise}}{\si{400\decibel}}
 +\frac{SVP}{2.06}\right)\right)
 \ge\text{Low speed threshold}\\
 1 & \text{if}~\left(\left(\frac{AC}{4G}+\frac{\text{Noise}}{\si{400\decibel}}
 \right)\right)
 \ge\text{Accident threshold}\\
 0 &\text{otherwise}
 \end{dcases}
\]
\end{document}

在此处输入图片描述

相关内容