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.

相关推荐
linweidong15 分钟前
C++ 模块化编程(Modules)在大规模系统中的实践难点?
linux·前端·c++
修己xj4 小时前
Anki:让记忆更高效、更智能的开源力量
开源
冷雨夜中漫步4 小时前
Python快速入门(6)——for/if/while语句
开发语言·经验分享·笔记·python
半桔5 小时前
【IO多路转接】高并发服务器实战:Reactor 框架与 Epoll 机制的封装与设计逻辑
linux·运维·服务器·c++·io
HABuo5 小时前
【linux文件系统】磁盘结构&文件系统详谈
linux·运维·服务器·c语言·c++·ubuntu·centos
我在人间贩卖青春6 小时前
C++之多重继承
c++·多重继承
m0_736919106 小时前
C++代码风格检查工具
开发语言·c++·算法
2501_944934737 小时前
高职大数据技术专业,CDA和Python认证优先考哪个?
大数据·开发语言·python
黎雁·泠崖7 小时前
【魔法森林冒险】5/14 Allen类(三):任务进度与状态管理
java·开发语言
2301_763472468 小时前
C++20概念(Concepts)入门指南
开发语言·c++·算法