Re: [Doxygen-users] Doxygen: PROJECT_LOGO and LaTeX
Brought to you by:
dimitri
From: Joe B. <pub...@gm...> - 2018-03-20 09:59:40
|
Thanks for the guidance. The answer to your question is no...there's no reference to mylogo.jpg in the TEX files. I now have a better understanding of Doxygen + LaTeX and how the custom header can be used to achieve what I want. In an attempt to help others here's my solution to get a logo on the front page: - Create an empty folder - In the empty folder create a new Doxyfile with "doxygen -g" - Create a new sample TEX header file in the same folder with "doxygen -w latex header.tex doxygen.sty" - Create a new image in the same folder, 150x50 pixels, called "mylogo.jpg" - Edit Doxyfile - Change PROJECT_LOGO to "PROJECT_LOGO = mylogo.jpg" - Change LATEX_HEADER to "LATEX_HEADER = header.tex" - Edit header.tex - Find the line that says "{\Large Your title here}\\". Add a new line before or after this with the content "\includegraphics{$projectlogo}\\" - Run Doxygen (no source files are needed for this question) - Doxygen creates two output folders: "html" and "latex" - Run "make.bat" in the "latex" directory |