algorithmic.sty*1 を使うときれいに記述できる. 文は次のようにかく. \begin{algorithms} \STATE <text> \end{algorithms}たとえば,代入文はこんなかんじ.日本語も問題なく使える. \begin{algorithms} $a \Leftarrow 0$ $b \Leftarrow 初期値$ \end{algorithms}行番号を付けるには次のようにする. \begin{algorithms}[1] $a \Leftarrow 0$ $b \Leftarrow 初期値$ \end{algorithms} if then な構文は次のようにかく. \begin{algorithms} \IF{<condition>} <text> \ENDIF \IF{<condition>} <text1> \ELSE <text2> \END