是否可以直接引用布局文件中的doxygen内置模块?

是否可以直接引用布局文件中的doxygen内置模块?,doxygen,Doxygen,我正在尝试使用布局文件自定义doxygen输出 <tab type="modules" visible="yes" title="" intro=""> <tab type="user" visible="yes" title="High-level document interface" url="@ref Documents"/> <tab type="user" visible="yes" title="Low-level file inter

我正在尝试使用布局文件自定义doxygen输出

<tab type="modules" visible="yes" title="" intro="">
    <tab type="user" visible="yes" title="High-level document interface" url="@ref Documents"/>
    <tab type="user" visible="yes" title="Low-level file interface" url="@ref Files"/>
    <tab type="user" visible="yes" title="Utilities" url="@ref Utils"/>
    <tab type="user" visible="yes" title="Types" url="@ref Types"/>
</tab>

输出有一个小问题,即用户定义的页面在树状视图中重复

我已尝试使用自定义用户组并引用布局文件中的模块,如下所示:

<tab type="usergroup" visible="yes" url="@ref modules" title="Modules">

但是,我最终出现了错误:“无法解析到布局文件'doxygen_layout.xml'中的'modules'的显式链接请求”

这可以通过引用modules.html文件来解决

<tab type="usergroup" visible="yes" url="modules.html" title="Modules">

我真的很惊讶这是有效的,但我不确定这是否是最防弹的解决方案

我可以创建下拉模块菜单吗?

我可以直接参考模块页面吗?

注: 引用不存在的html文件不会在输出中产生任何警告或错误

<tab type="usergroup" visible="yes" url="asdf.html" title="Modules">