doxygen 1.11.0 使用详解(十四)——输出格式

目录

    • HTML
    • LATEX
    • [Man pages](#Man pages)
    • RTF
    • XML
    • DocBook
    • [Compiled HTML Help (a.k.a. Windows 98 help)](#Compiled HTML Help (a.k.a. Windows 98 help))
    • [Qt Compressed Help (.qch)](#Qt Compressed Help (.qch))
    • [Eclipse Help](#Eclipse Help)
    • [XCode DocSets](#XCode DocSets)
    • PostScript
    • PDF

The following output formats are directly supported by doxygen:

HTML

Generated if GENERATE_HTML is set to YES in the configuration file.

LATEX

Generated if GENERATE_LATEX is set to YES in the configuration file.

Man pages

Generated if GENERATE_MAN is set to YES in the configuration file.

RTF

Generated if GENERATE_RTF is set to YES in the configuration file. Note that the RTF output probably only looks nice with Microsoft's Word.

XML

Generated if GENERATE_XML is set to YES in the configuration file.

DocBook

Generated if GENERATE_DOCBOOK is set to YES in the configuration file.

The following output formats are indirectly supported by doxygen:

Compiled HTML Help (a.k.a. Windows 98 help)

Generated by Microsoft's HTML Help workshop from the HTML output if GENERATE_HTMLHELP is set to YES.

Qt Compressed Help (.qch)

Generated by Qt's qhelpgenerator tool from the HTML output if GENERATE_QHP is set to YES .

Eclipse Help

Generated from HTML with a special index file that is generated when GENERATE_ECLIPSEHELP is set to YES .

XCode DocSets

Compiled from HTML with a special index file that is generated when GENERATE_DOCSET is set to YES .

PostScript

Generated from the LATEX output by running make ps in the output directory. For the best results PDF_HYPERLINKS should be set to NO .

PDF

Generated from the LATEX output by running make pdf in the output directory. To improve the PDF output, you typically would want to enable the use of pdflatex by setting USE_PDFLATEX to YES in the configuration file. In order to get hyperlinks in the PDF file you also need to enable PDF_HYPERLINKS.

相关推荐
霍格沃兹软件测试开发2 小时前
Browser Use:打造你的浏览器自动化助手
运维·自动化
坐吃山猪2 小时前
SpringBoot01-配置文件
java·开发语言
晚风(●•σ )2 小时前
C++语言程序设计——06 字符串
开发语言·c++
我叫汪枫2 小时前
《Java餐厅的待客之道:BIO, NIO, AIO三种服务模式的进化》
java·开发语言·nio
Nicole-----2 小时前
Python - Union联合类型注解
开发语言·python
晚云与城2 小时前
今日分享:C++ -- list 容器
开发语言·c++
兰雪簪轩3 小时前
分布式通信平台测试报告
开发语言·网络·c++·网络协议·测试报告
FPGAI4 小时前
Qt编程之信号与槽
开发语言·qt
Swift社区4 小时前
从 JDK 1.8 切换到 JDK 21 时遇到 NoProviderFoundException 该如何解决?
java·开发语言
0wioiw04 小时前
Go基础(④指针)
开发语言·后端·golang