Adding new user Tab in the doxygen Layout

蹲街弑〆低调 提交于 2019-12-02 00:35:14
Cody Gray

This is very simple to accomplish. You've already done the hard part by generating the custom DoxygenLayout.xml file. Now, you just need to add a custom tab to it:

<tab type="user" url="architecture.html" title="Architecture"/>

You can put that wherever you want under the <navindex> tag. For testing purposes, you can just toss it in at the very end of the group.

The title attribute can be any text string that you want.

The url attribute can be a URL to any file you want. It doesn't have to be an HTML file, of course. It can be a PDF, Word DOC, or whatever. You can also use "@ref mypage" to link to a doxygen page named mypage (see the documentation for details).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!