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.

相关推荐
czy878747513 小时前
用C语言实现外观模式
c语言·外观模式
一匹电信狗13 小时前
【LeetCode_160】相交链表
c语言·开发语言·数据结构·c++·算法·leetcode·stl
taxunjishu13 小时前
DeviceNet 转 MODBUS TCP:倍福 CX 系列 PLC 与 MES 系统在 SMT 回流焊温度曲线监控的通讯配置案例
运维·人工智能·物联网·自动化·区块链
曦樂~13 小时前
【Qt】信号与槽(Signal and Slot)- 简易计算器
开发语言·数据库·qt
2501_9159214313 小时前
iOS 应用代上架流程,多工具组合与使用 开心上架 跨平台自动化上传指南
android·ios·小程序·uni-app·自动化·cocoa·iphone
歪歪10013 小时前
React Native开发Android&IOS流程完整指南
android·开发语言·前端·react native·ios·前端框架
AA陈超13 小时前
虚幻引擎5 GAS开发俯视角RPG游戏 P05-11 消息小部件
c++·游戏·ue5·游戏引擎·虚幻
yaoxin52112313 小时前
212. Java 函数式编程风格 - Java 编程风格转换:命令式 vs 函数式(以循环为例)
java·开发语言
wangqiaowq13 小时前
ImmutableList.of() 是 Google Guava 库 提供的一个静态工厂方法,用于创建一个不可变的(immutable)列表。
开发语言·windows·python
再卷也是菜14 小时前
C++篇(14)二叉树进阶算法题
c++·算法