有人能帮忙用 latex 写出数学方程式吗

有人能帮忙用 latex 写出数学方程式吗

在此处输入图片描述

另外,有人可以推荐我一个好的 pdf 文件来学习 latex 中的编码数学吗

谢谢

答案1

对于内联数学,使用$分隔符:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
$a_{\max} =  \max\limits_{0\le a\le\mathrm{argmin}(a(t))} a(t)$
\end{document}

在此处输入图片描述

对于显示数学,请使用\[...\]未编号方程的分隔符,或各种环境之一,例如equation编号方程。或者,使用包中的环境系列amsmath中的某些内容。align

\documentclass{article}
\usepackage{amsmath}
\begin{document}
OP comments: 
could you please help to write codes for these four equations? 
thank you very much in advance. 
\begin{align}
T_d=T_\mathrm{upper}-T_\mathrm{Lower}\\
%
T_\mathrm{upper} = \min\{t||a(t)|\ge a_\mathrm{threshold}\}\\
%
T_\mathrm{lower} = \max\{t||a(t)|\ge a_\mathrm{threshold} \}\\
%
a_\mathrm{threshold} = 10\% \max(|a(t)|)
\end{align}
\end{document}

在此处输入图片描述

相关内容