如何更改doxygen中源代码的外观?我的意思是,当您单击链接以查看生成文档的文件的源代码时。我有兴趣更改字体大小。
答案 0 :(得分:0)
您可以使用custom CSS设置doxygen输出的样式。
答案 1 :(得分:0)
如前所述,您需要使用自定义 CSS,您可以通过 HTML_EXTRA_STYLESHEET
来实现。
要获取 CSS 模板,请运行:
doxygen -w html header.html footer.html customdoxygen.css
然后您可以从 customdoxygen.css
中选择您想要修改的元素,并将它们添加到您自己的 css 文件中。
最终通知代码片段 (fragments
) 字体大小的 CSS 实际上是其中的 div.line
:
div.line {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 15px;
...
}