目前我正在尝试使用doxygen创建一些文档。我希望使用侧边菜单而不是顶级菜单,我觉得它看起来更好。问题是它没有创建它。
从doxygen documentation我发现使用侧边菜单而不是顶边菜单我必须设置:
DISABLE_INDEX = YES
GENERATE_TREEVIEW = YES
不幸的是,当我这样做时,顶级菜单确实消失了,但侧面的树状菜单也不存在。
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>
我所知道的确有效,因为它可以作为顶级菜单。此外,我在文档生成期间没有看到任何错误。
我想知道是否有人可以给我一些关于我可能缺少的东西以使侧树工作的提示。
提前致谢!
BTW我正在使用doxygen 1.8.11