首页 > 其他 > 详细

latex编写伪代码

时间:2021-09-23 08:34:02      阅读:21      评论:0      收藏:0      [点我收藏+]

使用algorithmicx包

 

\begin{algorithm}
  \caption{Sum of integers from 1 to n.}
    \begin{algorithmic}[1]
      \Procedure {Sum}{$n$}
        \State $sum \gets 0  \hfill \triangleright {\rm \ Initialization}$
        \For{$i \gets 1,n$}
          \State $sum \gets sum + i$        
        \EndFor
        \State \Return{$sum$} $ \hfill \triangleright {\rm \ Return}$
      \EndProcedure
    \end{algorithmic}
\end{algorithm}

 

结果如下:

技术分享图片

 

 

 

latex编写伪代码

原文:https://www.cnblogs.com/kafuuchino/p/15309958.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!