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.

相关推荐
hqxstudying10 分钟前
JAVA项目中邮件发送功能
java·开发语言·python·邮件
咪咪渝粮13 分钟前
JavaScript 中constructor 属性的指向异常问题
开发语言·javascript
最初的↘那颗心14 分钟前
Java HashMap深度解析:原理、实现与最佳实践
java·开发语言·面试·hashmap·八股文
pusue_the_sun36 分钟前
数据结构——栈和队列oj练习
c语言·数据结构·算法··队列
大锦终37 分钟前
【算法】模拟专题
c++·算法
何贤44 分钟前
😲我写出了 Threejs 版城市天际线?!(官推转发🥳+ 源码分享🚀)
前端·开源·three.js
方传旺1 小时前
C++17 std::optional 深拷贝 vs 引用:unordered_map 查询大对象性能对比
c++
Dontla1 小时前
Makefile介绍(Makefile教程)(C/C++编译构建、自动化构建工具)
c语言·c++·自动化
后台开发者Ethan1 小时前
Python需要了解的一些知识
开发语言·人工智能·python
奶黄小甜包1 小时前
C语言零基础第18讲:自定义类型—结构体
c语言·数据结构·笔记·学习