2

enter image description here

also, can anyone suggest me good pdf file for it to learn the coding maths in latex

Thank you

maths
  • 139

1 Answers1

3

For inline math, use $ delimiters:

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

enter image description here

For display math, use \[...\] delimiters for unnumbered equations, or one of the various environments, such as equation for numbered equations. Or, with the amsmath package, something from the align family of environments.

\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}

enter image description here

  • could you please help to write codes for these four equations. thank you very much in advance. 1. T_d=T_upper-T_Lower 2. T_Upper=min⁡{t||a(t)|≥a_Threshold} 3. T_Lower=max⁡{t│|a(t)|≥a_Threshold } 4. a_Threshold=10% max⁡(|a(t)|) – maths Nov 07 '19 at 14:41
  • 1
    @maths See my edit. You really need to get a reference tutorial for basic LaTeX math. – Steven B. Segletes Nov 07 '19 at 15:11
  • Thank you steven. Yes i am looking basic tutorial currently. – maths Nov 07 '19 at 15:16