在word文档里面插入漂亮的伪代码

推荐用texsword.0.8

安装与界面

下载链接:https://sourceforge.net/projects/texsword/

极为轻便,是Word的一个宏

安装过程也是极为简单,复制解压后的 texsword.dotm 文件到 C:\Users\{YOUR_USER_NAME}\AppData\Roaming\Microsoft\Word\STARTUP(路径请根据实际情况自行修改) 找不到地址可以用everything搜

文件夹下面之后重启 Word 即可。在word加载项中, 可以看到自定义工具栏,效果如下图:

在word文档里面插入漂亮的伪代码_第1张图片

使用方法

点击tex图标:

在word文档里面插入漂亮的伪代码_第2张图片

输入代码:

\documentclass{article}

\usepackage{multirow}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsmath}
\usepackage{geometry}
\usepackage{algorithmicx}
\usepackage{algpseudocode}

\renewcommand{\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm
\renewcommand{\algorithmicensure}{\textbf{Output:}} 

\pagestyle{empty}
\begin{document}
\begin{algorithm}[h]  
      \caption{algorithm1}  
      \label{your label}  
      \begin{algorithmic}[1]  
        \Require  
          Enter .....;  
        \Ensure  
          Outpur......  
        \State state1......  
        \State state2......  
        \State state3......  
        \While{(a$>$b)}  
      
            \State  state4......  
            \If { c$<$d}  
                \State state5......  
            \Else  
                \State state6......  
            \EndIf  
            \State state7......  
        \EndWhile  
        \For{aaa}  
            \State state8......  
        \EndFor  
      \end{algorithmic}  
    \end{algorithm}
\end{document}

 然后点击 Run Latex,查看效果。

在word文档里面插入漂亮的伪代码_第3张图片

你可能感兴趣的:(资源搬运,word)