given
$C_1[0] = P_1[0]$\;
$C_2[0] = P_2[0]$\;
it will be in two different lines.
i.e.
C_1[0] = P_1[0];
C_2[0] = P_2[0];
Is there a way to make it appears in one line
i.e.
C_1[0] = P_1[0];C_2[0] = P_2[0];
|
given
it will be in two different lines. i.e.
Is there a way to make it appears in one line i.e.
|
|||
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
\documentclass{...}and ending with\end{document}. – egreg Feb 20 at 22:54\begin{algorithm} $C_1[0] = P_1[0];\ C_2[0] = P_2[0]$; \end{algorithm}? – Gonzalo Medina Feb 20 at 23:42