9

我有兴趣在 index.html 页面上写一个“介绍”,而不是留有空白。这是 Doxygen 工具支持的功能,还是我必须组合一个 hack?

4

2 回答 2

19

Doxygen FAQ中的第一个问题回答了这个问题:

1、如何在HTML中获取索引页面的信息?

您应该在这样的注释块中使用 \mainpage 命令:

/*! \mainpage My Personal Index Page
 *
 * \section intro_sec Introduction
 *
 * This is the introduction.
 *
 * \section install_sec Installation
 *
 * \subsection step1 Step 1: Opening the box
 *  
 * etc...
 */
于 2011-08-28T17:21:39.197 回答
2

如果您在 LaTeX 和 html 输出中寻找更多自定义的封面,您可能还想使用标签LATEX_HEADERHTML_HEADER(and HTML_FOOTER)。

于 2012-05-16T11:30:50.023 回答