Doxygen 中的侧边菜单

cyn*_*tia 6 doxygen

目前我正在尝试使用 doxygen 创建一些文档。我希望使用侧面菜单而不是顶部菜单,我认为它看起来更好。问题是它没有创建它。

doxygen 文档中,我发现要使用侧边菜单而不是必须设置的顶部菜单:

DISABLE_INDEX = YES
GENERATE_TREEVIEW = YES
Run Code Online (Sandbox Code Playgroud)

不幸的是,当我这样做时,顶部菜单确实消失了,但侧面的树形菜单也不存在。

由 navindex 在我的 XML 上定义的布局如下:

  <navindex>
    <tab type="mainpage" visible="yes" title=""/>
    <tab type="pages" visible="yes" title="Manuals" intro="List of related manuals:"/>
    <tab type="modules" visible="yes" title="References" intro="List of related references:"/>
    <tab type="namespaces" visible="yes" title="">
      <tab type="namespaces" visible="yes" title="" intro=""/>
      <tab type="namespacemembers" visible="yes" title="" intro=""/>
    </tab>
    <tab type="classes" visible="yes" title="">
      <tab type="classes" visible="yes" title="" intro=""/>
      <tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/> 
      <tab type="hierarchy" visible="yes" title="" intro=""/>
      <tab type="classmembers" visible="yes" title="" intro=""/>
    </tab>
    <tab type="files" visible="yes" title="">
      <tab type="files" visible="yes" title="" intro=""/>
      <tab type="globals" visible="yes" title="" intro=""/>
    </tab>
    <tab type="examples" visible="yes" title="" intro=""/>  
  </navindex>
Run Code Online (Sandbox Code Playgroud)

我知道它确实有效,因为它可以用作顶级菜单。此外,我在文档生成过程中没有看到任何错误。

我想知道是否有人可以就我可能缺少的东西给我一个提示,以使侧树工作。

提前致谢!

顺便说一句,我正在使用 doxygen 1.8.11