答案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}