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

devtools/2024/12/22 20:48:13/

目录

    • HTML
    • LATEX
    • Man pages
    • RTF
    • XML
    • DocBook
    • Compiled HTML Help (a.k.a. Windows 98 help)
    • Qt Compressed Help (.qch)
    • Eclipse Help
    • 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.


http://www.ppmy.cn/devtools/44594.html

相关文章

Day36 贪心算法Part03

LC1005 K次取反后最大化的数组和(未掌握) 未掌握分析:贪心思维不够贪心思路: 局部最优:让绝对值大的负数变为正数,当前数值达到最大,整体最优:整个数组和达到最大。如果将负数都转变为正数了,K…

nginx学习记录-防盗链

1. 防盗链的概念 防盗链,顾名思义就是防止盗取链接,这里的链接一般是资源链接。 如图所示,我们访问一个网站时(比如百度),我们第一个请求会获得一个html页面,页面中包含各种资源链接&#xff0…

Redis 常用基本命令

查看所有键 keys命令可用于查看所有键,语法如下 pattern用于匹配key,其中*表示任意个任意字符 keys pattern键总数 dbsize可用于查看键的总数,语法如下 dbsize判断键是否存在 exists命令可用于判断一个键是否存在,语法如下 ex…

微服务实践k8sdapr开发部署调用

前置条件 安装docker与dapr: 手把手教你学Dapr - 3. 使用Dapr运行第一个.Net程序安装k8s dapr 自托管模式运行 新建一个webapi无权限项目 launchSettings.json中applicationUrl端口改成5001,如下: "applicationUrl": "http://localhost:5001" //Wea…

大模型时代的具身智能系列专题(五)

stanford宋舒然团队 宋舒然是斯坦福大学的助理教授。在此之前,他曾是哥伦比亚大学的助理教授,是Columbia Artificial Intelligence and Robotics Lab的负责人。他的研究聚焦于计算机视觉和机器人技术。本科毕业于香港科技大学。 主题相关作品 diffusio…

阮一峰的ES6文档(第一天)

目录 ECMAScript 6简介 let和const命名 let基本用法-块级作用域 不存在变量提升 不允许重复声明 暂时性死区 为什么需要块级作用域? 原因一:内层变量可能会覆盖外层变量 原因二:用来计数的循环遍历泄露为全局变量 const基本用法-声明…

在做题中学习(62):矩阵区域和

1314. 矩阵区域和 - 力扣(LeetCode) 解法:二维前缀和 思路:读题画图才能理解意思:dun点点的是mat中的一个数,而要求的answer同位置的数 以点为中心上下左右延长 k 个单位所围成长方形的和。 因为最后answ…

【C++】---二叉搜索树

【C】---二叉搜索树 一、二叉搜索树概念二、二叉搜索树操作(非递归)1.二叉搜索树的查找 (非递归)(1)查找(2)中序遍历 2.二叉搜索树的插入(非递归)3.二叉搜索树…