0

I am trying to write user-manual/tutorial for my library using doxygen (something similar to the user-manual of the doxygen itself! - link)

I used .md files subpageed from the mainpage to create my document hierarchy. I ended up something similar to that of OpenCV (link), which looks quite nice, but it still does not have many features of that of doxygen user manual. For example, page/section index on the left and page wise table of content on the right.

Is there any way of generating expandable index/table of content and attach it in every pages using doxygen (as in link)? Is there a better of doing this? Any other tips?

albert
  • 8,285
  • 3
  • 19
  • 32
krips89
  • 1,683
  • 4
  • 17
  • 32
  • I think you may want to learn using emacs org mode. It really has everything you can ever wish for and more. Combine it with draw.io for diagrams, export org to html and the wkhtmltopdf it into a pdf and there you have it. https://youtu.be/VjMp_B1V4bI – Martin May 08 '19 at 15:27

1 Answers1

1

Setting the GENERATE_TREEVIEW flag to YES in your Doxyfile will cause Doxygen to create the side panel.

Example:

GENERATE_TREEVIEW = YES

This feature requires that browsers support JavaScript, DHTML, CSS and frames.