tags:

views:

10

answers:

1

By default, the first page that doxygen generates, in Rich Text Format (RTF), states:

TITLE

AUTHOR
Version
CREATEDATE

I want to customize this. I've tried the following, but it customizes the section after the index, rather than the very first page of the document:

/*!
 * @mainpage My Project
 * @version 0.91
 * @author Jack Vance, 2010.
 * CreateDate 2010-06-26
 */
A: 

From the documentation:

For RTF output, you can generate the default style sheet file (see RTF_STYLESHEET_FILE) using:

doxygen -w rtf rtfstyle.cfg

You should then be able tov edit the stylesheet to change the output the way you want.

Joey
Thats good enough for me: apparently its *impossible* to alter the front page of the Rich Text Format (RTF) output, without altering the style sheet.
Gravitas