我正在尝试用 LaTeX 制作一个算法。例如,我使用这个模板,我需要有关此步骤的帮助
第一个循环mik=aik/akk;
第二循环aij=aij-mikakj;
最后用最后一个循环结束
bi=bi=mikbk;
如何用 LaTeX 代码编写这个?
\section{The algorithm which solves the method Gaussian elimination}
\For{$k$=1$:$1$n-1$}{
\For{$i=k+1:1:n$}\;
{write the first loop here}{
\For{}
{write the second loop here}
instructions1\; finish here
instructions2\;
{final loop there}
}{
instructions3\;
}
}
\caption{How to write algorithms}
抱歉,这个错误,请帮忙解决。
答案1
您可以从以下位置开始:
\documentclass{article}
\usepackage[ruled]{algorithm2e}
\begin{document}
\begin{algorithm}[H]
\caption{Test algorithm}
\SetAlgoLined
\For{contition}{
\For{some text here}{
some text\\
\For{other stuff}{
whatever comes here
}
some more text
}
}
\end{algorithm}
\end{document}
答案2
\begin{algorithm}[H]
\caption{Test algorithm}
\SetAlgoLined
\For{$k=1:1:n-1$}{
\For{$i=k+1:1:n$}{
$m_{i}{k}=a_{i}{k}/a_{k}{k}$\\
\For{other stuff}{
$a_{i}{j}=a_{i}{j}-m_{i}{k}a_{k}{j};$\\
}
$b_{i}=b_{i}-m_{i}{k}b_{k};$
}
}\end{algorithm}
是正确的