在 WinEdt 中收集算法标题

在 WinEdt 中收集算法标题

我已经安装了插件图表在 WinEdt 中,它允许我收集 WinEdt 树中的表格和图形标题。

我也希望能够收集算法标题。

使用以下 MWE

\documentclass{article}

\usepackage{algorithm}

\begin{document}

  \begin{table}[h]
    \caption{Table test}
  \end{table}

  \begin{figure}[h]
    \caption{Figure test}
  \end{figure}

  \begin{algorithm}[h]
    \caption{Algorithm test}
  \end{algorithm}

\end{document} 

WinEdt 的树显示

在此处输入图片描述

有没有什么办法可以显示算法的分支?

答案1

更新(2016-04-10)

通过安装插件浮点数您将能够收集算法标题。


原始答案

是的,这是可能的。请按照以下步骤操作:

  1. 显示“选项界面”(选项 -> 选项界面)

    在此处输入图片描述

  2. 在“选项界面”中双击“树”项(Tree.ini打开)

  3. 由于您安装了“图形和表格”插件,因此您应该有一行

    END="Tables-TeX"
    

    紧接着,插入以下几行

    BRANCH="Algorithms-TeX"
      BRANCH_CAPTION="Algorithms  (#)"
      // Change Mode from TeX to ? to disable this item
      BRANCH_MODE_FILTER="TeX|DTX;INS;STY;AUX"
      BRANCH_ICON="CodeSample"
      BRANCH_SORTED=0
      BRANCH_CASE_SENSITIVE=1
      BRANCH_IGNORE_COMMENTS=1
      BRANCH_IGNORE_VERBATIM=1
      BRANCH_EXPANDED=0
      ITEM="\begin{algorithm}?\end{algorithm}"
        ALT="\begin{algorithm*}?\end{algorithm*}"
        ALT="\begin{procedure}?\end{procedure}"
        ALT="\begin{procedure*}?\end{procedure*}"
        ALT="\begin{function}?\end{function}"
        ALT="\begin{function*}?\end{function*}"
        ALT="\begin{algorithm2e}?\end{algorithm2e}"
        ALT="\begin{algorithm2e*}?\end{algorithm2e*}"
        MODE_FILTER="TeX"
        CASE_SENSITIVE=1
        BEGINNING_OF_LINE_ONLY=1
        CURRENT_DOCUMENT_ONLY=1
        ALL_OPENED_DOCUMENTS=0
        COMPLETE_PROJECT_TREE=1
        ICON="FlagPurple"
        LEVEL=0
        CAPTION="%[!|Exe('%b\Macros\Gather\FigTab.edt');|];%-0"
        MAX_LINE_SPAN=99
        ON_CLICK_MACRO="TreeTrack(2,1);"
        ON_DBL_CLICK_MACRO="TreeTrack(2,2);"
        ACTION="Find"
          IMAGE="Find"
          MACRO="TreeTrack(2);"
        SUBSTITUTION="\label{*}"
          SUB_FIND="\\label\{*\}"
          SUB_REPLACE=""
          SUB_REG_EX=1
          SUB_CASE_SENSITIVE=1
        SUBSTITUTION="  "
          SUB_FIND=" +{ }"
          SUB_REPLACE=" "
          SUB_REG_EX=1
          SUB_CASE_SENSITIVE=1
        SUBSTITUTION="\dots"
          SUB_FIND="\dots"
          SUB_REPLACE="..."
          SUB_REG_EX=0
          SUB_CASE_SENSITIVE=1
        SUBSTITUTION="\ldots"
          SUB_FIND="\ldots"
          SUB_REPLACE="..."
          SUB_REG_EX=0
          SUB_CASE_SENSITIVE=1
      END="\begin{algorithm}?\end{algorithm}"
    END="Algorithms-TeX"
    
  4. 按下Shift+Ctrl+F9即可重新加载文件。


现在您将能够收集由algorithmalgorithm2e包定义的以下环境的算法标题:

  • algorithm
  • algorithm*
  • procedure
  • procedure*
  • function
  • function*
  • algorithm2e
  • algorithm2e*

通过 MWE 您将获得以下结果:

在此处输入图片描述

相关内容