Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove "generated by doxygen" and timestamp in PDF

Tags:

doxygen

As the title. I've just started using doxygen, with the first test run I noticed the PDF created has "created by doxygen 1.8.3.1" followed by the date and time, across the front page.

Is it possible to remove this? or even just move it, say to the end of the document?

I have noted other similar questions but only for the HTML (or RTF which Im not generating) and not PDF

like image 402
Toby Avatar asked Oct 28 '25 06:10

Toby


1 Answers

You can do this by using a custom LaTeX header.

First generate a default one using

doxygen -w latex header.tex footer.tex doxygen.sty

now edit the header.tex and look for the "Generated on ..." part and replace that by something of your liking.

Then mention the customized header in doxygen's configuration file

LATEX_HEADER           = header.tex

and run doxygen as normal.

Note: When you upgrade to a newer version of doxygen you may need to update your custom header as well.

like image 111
doxygen Avatar answered Oct 31 '25 11:10

doxygen



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!