Algorithmic のコマンド (for、do、if など) を削除するにはどうすればよいですか?

Algorithmic のコマンド (for、do、if など) を削除するにはどうすればよいですか?

私は写真のような LATEX で論文を書いています。何度も試してみましたが、まだやり方を示していません。 ここに画像の説明を入力してください

この例をアルゴリズムで入力しようとしましたが、できませんでした。私の問題に対するヒントを教えていただけますか? 皆さん、ありがとうございます!

答え1

通常の を使用できますtabular:

ここに画像の説明を入力してください

\documentclass{article}

\usepackage{lipsum}
\newcommand{\algvrule}{@{\hspace{.5em}}|@{\hspace{1em}}}

\begin{document}

\lipsum[1]

\noindent
\begin{tabular}{@{} l @{}}
  As before,~$k$ here is a commutative ring. \\
  \begin{tabular}{\algvrule l @{}}
    Hence could be a field of integers~$Z$; these are the usual choices. \\
    \begin{tabular}{\algvrule l @{}}
      Given an infinite variable set $x = (x_1; x_2; \ldots)$, a monomial \\
      $x^p = x_1^a x_2^b \cdots$, is indexed by an element $t = (a; b; \ldots)$ in~$N^\infty$ \\
      having finite support, such~$t$ are called weak compositions.
    \end{tabular} \\
    The nonzero ones among the integers $a; b; \ldots$ are called the parts of the
  \end{tabular} \\
  weak composition~$t$.
\end{tabular}

\lipsum[2]

\end{document}

関連情報