如何在“算法环境”中使用命令“\For{}”消除缩进

如何在“算法环境”中使用命令“\For{}”消除缩进

我不想要“For 循环”的缩进。如何才能让它与“要求”文本?

\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage[utf8]{inputenc}
\usepackage{algorithm}
\usepackage{algpseudocode}

\begin{document}

\begin{algorithm}
\begin{algorithmic}
\Require This is the input \textbf{Input}
\For{Here I do not want indentation}
\State Please delete the indentation for the for loop after the \textbf{Require}
\EndFor \\
\end{algorithmic}
\end{algorithm}
\end{document}

相关内容