algorithm2e - 无法让结尾在 for 循环中对齐

algorithm2e - 无法让结尾在 for 循环中对齐

这是我的代码:

\begin{algorithm}[H]
\SetAlgoLined
\KwResult{Computes Flux in x and y direction}
\KwIn{arrays flux\_x and flux\_y of length $x \times y$}
\SetKwArray{fluxx}{flux_x}
\SetKwArray{fluxy}{flux_y}
\SetKwArray{q}{q}
\For{$i \gets 0$ \textbf{to} $x$} {
    \For{$j \gets 0$ \textbf{to} $y$} {
        $index \gets getIndex(i,j)$
        \\If{ $j \neq 0$}{
            \fluxx{index} = $$\frac{1}{2} \times (\q{index} + \q{index-1}) - ((\frac{\alpha}{2}) \times (\q{index} - \q{index-1}))$$
        }
        \\If{ $i \neq 0$}{
            \fluxy{index} = $$\frac{1}{2} \times (\q{index} + \q{index-x}) - ((\frac{\alpha}{2}) \times (\q{index} - \q{index-x}))$$
        }  
    }
}
\end{algorithm}

for 循环末尾的 end 语句无法正确排列。最内层循环的 end 语句紧挨着最后一个 if 语句主体的末尾,而最外层循环的 end 语句则位于其下方。

难道我做错了什么?

答案1

有一些额外的\\s 是不需要的,而且我不确定\fluxx{index}and的定义\fluxy{index}以及添加到$$其中的 s 。

\begin{algorithm}
\SetAlgoLined
\KwResult{Computes Flux in x and y direction}
\KwIn{arrays $flux\_x$ and $flux\_y$ of length $x \times y$}
\SetKwArray{fluxx}{$flux_x$}
\SetKwArray{fluxy}{$flux_y$}
\SetKwArray{q}{q}
\For{$i \gets 0$  \KwTo $x$} {%
    \For{$j \gets 0$  \KwTo $y$} {%
        $index \gets getIndex(i,j)$\\
        \If{$j \neq 0$}{%
            $\fluxx{index}= \frac{1}{2} \times (\q{index} + \q{index-1}) - ((\frac{\alpha}{2}) \times (\q{index} - \q{index-1}))$
        }
        \If{$i \neq 0$}{%
            $\fluxy{index} = \frac{1}{2} \times (\q{index} + \q{index-x}) - ((\frac{\alpha}{2}) \times (\q{index} - \q{index-x}))$
        } 
    }
}
\end{algorithm}

在此处输入图片描述

相关内容