Equations need in Latex format. These are the equations
Asked
Active
Viewed 416 times
0
1 Answers
1
This should do.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath} % used for cases environment only
\begin{document}
\begin{equation}
I_{i,j}=\frac{(I_{i,j}-\bar{I}_i)}{\sigma_i}
\end{equation}
\begin{equation}
I_{input}=X_{i,j}
\end{equation}
\begin{equation}
O_{inception}=concatenate(L_A,L_B,L_C,L_D)
\end{equation}
\begin{equation}
\sigma(X_i)=\frac{e^{Z_i}}{\Sigma_{j=1}^{K=2}e^{Z_j}}
\end{equation}
\begin{equation}
O(X_{i,j})=
\begin{cases}
1, & X_{i,j}^1 > X_{i,j}^0 \\
0, & otherwise
\end{cases}
\end{equation}
\begin{equation}
Recog.=\frac{TP+TN}{TP+TN+FP+FN}
\end{equation}
\end{document}
Thomas
- 116
-
Thank you. Can you tell me what should i do so that the equations comes in center of page? – Muhammad Usman Dec 19 '20 at 16:13
-
You can left align each of these equations by replacing equation with falign and adding && after each equation. Like so: \begin{flalign} I_{i,j}=\frac{(I_{i,j}-\bar{I}_i)}{\sigma_i}&& \end{flalign} If your question is answered, please consider marking this solution as the accepted answer. – Thomas Dec 19 '20 at 18:03
-
-
1I read left aligned before. The equations should be centered by default, maybe post a new question explaining your alignment problem better? – Thomas Dec 19 '20 at 19:34
-
1Indices and text, which are not variables, as this case are input, inception, concatenate, and otherwise had to by typed as
\math{input}, etc or eventually as\mathit{input}. You propose bad typography (at least), sorry. – Zarko Dec 20 '20 at 00:00 -
https://tex.stackexchange.com/questions/575678/kindly-help-to-write-the-equations-in-amsmath-latex?noredirect=1#comment1449658_575678 – Muhammad Usman Dec 20 '20 at 04:20
-
Kindly read this post. I have new question. https://tex.stackexchange.com/questions/575714/how-to-write-the-following-equation-in-amsmath-in-latex-the-equation-should-be – Muhammad Usman Dec 20 '20 at 04:26


\documentclass{article}\usepackage{align}\begin{document}\begin{align} xxx & = yyy\\ uuu& = vvvv\end{align}\end{document}as starting point. You now only need to insert your math expressions. – Zarko Dec 19 '20 at 11:07=symbols? Do the equation numbers have to have staggered offsets from the right-hand margin, or is it ok to align them all along the margin? – Mico Dec 19 '20 at 11:343in the equation nubers? A section number, or a main equation number, these equations being subequations? – Bernard Dec 19 '20 at 13:20