To disable the generation of indexes and table of contents for Latex/PDFs.

   1. set GENERATE_LATEX=YES and MAKEINDEX_CMD_NAME = echo
   2. run doxygen to generate the latex file refman.tex
   3. cd into the output directory named in LATEX_OUTPUT (typically "latex")
   4.

   copy the Makefile to another directory (say "doc") and edit it:
   - remove all calls to "pdflatex refman" except the first
      - remove the loop
      - remove all calls to "echo refnam.idx"
   5.

   It will look something like:

   all: refman.pdf
   pdf: refman.pdf
   refman.pdf: clean refman.tex
        pdflatex refman
   clean:
        rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out
*.brf *.blg *.bbl refman.pdf

   6.

   cd into the output directory again and invoke the modified Makefile

   cd latex
   make -f ../../doc/Makefile

   7.

   take a look at refman.pdf. The Table of Contents is gone, the Index is
   gone.
------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to