Preface

写论文时要陈述自己提出来的算法,遂学。

方法1(deprecated)

引入宏包:

\usepackage{algorithm}
\usepackage{algorithmic}

重新定义样式:

\renewcommand{\algorithmicrequire}{\textbf{Input:}} 
\renewcommand{\algorithmicensure}{\textbf{Output:}}

下面是一些简单的使用:

\begin{algorithm}[H]
    \caption{algorithm 1}
    \begin{algorithmic}[1] % 此处的[1]控制一下算法中的每句前面都有标号 
        \REQUIRE input
        \ENSURE output 
        \STATE {Step A}
        \STATE {Step B}
        \FOR {$ i = 1 $; $ i < n $; $ i ++ $ }
            \STATE {Step C}
        \ENDFOR
        \WHILE {$ |E_n| \leq L_1 $}
            \STATE {Step D}
        \ENDWHILE
        \FORALL {...}
            \STATE {Step E}
        \ENDFOR
        \IF {condition}
            \STATE {Step F}
        \ENDIF
    \end{algorithmic} 
\end{algorithm}

效果图:

方法二:algorithm2e

引入宏包:

\usepackage[ruled]{algorithm2e}

常见用法:

\begin{algorithm}[t]
    \caption{Algorithm Test}
    \label{algorithm:test}
    \LinesNumbered
    \KwIn {input}
    \KwOut {output}
    \For{i = 1 to n}{   
        \eIf{condition} {
            Step A \tcp*{comment inline}
            \tcp{new line comment}
        } {
            i ++;
        }
    }
    \While{condition}{
        do something
    }
    Step B \;
    Step C \;
    Step D ;
\end{algorithm}

效果图:

如果引用宏包时附带其他参数,如:

\usepackage[ruled,vlined]{algorithm2e}

效果:

更详细的用法详见文档:

最后修改:2021 年 01 月 02 日 10 : 56 AM
真的不买杯奶茶嘛....qwq