سلام.
من بعد از نوشتن الگوریتم وقتی خروجیاش رو میبینم دو تا مشکل دارم که هرکار میکنم حل نمیشه:
۱. وقتی این کد رو مینویسم، توی خط ۲ بین while و خط قبلی اینتر نمیزنه. بعدش هم end چاپ میکنه! تو شکل با فلش قرمز نشون دادم.
\lr{
\begin{algorithm}
\caption{Euclid’s algorithm}
\label{euclid}
\begin{algorithmic}[1] % The number tells where the line numbering should start
\Procedure{Euclid}{$a,b$} \Comment{The g.c.d. of a and b}
\State $r\gets a \bmod b$
\While{$r\not=0$} \Comment{We have the answer if r is 0}
\State $a \gets b$
\State $b \gets r$
\State $r \gets a \bmod b$
\EndWhile\label{euclidendwhile}
\State \textbf{return} $b$\Comment{The gcd is b}
\EndProcedure
\end{algorithmic}
\end{algorithm}
}
۲. بعضی وقتا هم کلا همه الگوریتم رو توی یه خط نشون میده. مثل این: