Doxygen 中的头文件是什么?
我运行这个命令失败
doxygen -w latex headerFile styleSheetFile project.doxy
I run this command unsuccessufully
doxygen -w latex headerFile styleSheetFile project.doxy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 doxygen 配置文件中设置
GENERATE_LATEX=YES
,Doxygen 将生成 LaTeX 输出。您引用的命令指示 doxygen 将其默认的 LaTeX 文档标题和样式表写入文件,因此这应该创建两个文件,名为
headerFile
和styleSheetFile
。 doxygen 文档此处对此进行了解释。然后,您可以在配置文件中使用
LATEX_HEADER
选项来告诉 doxygen 使用您的头文件而不是默认的头文件,这样您就可以自定义文档的样式。LATEX_HEADER
在此处进行了描述。Doxygen will produce LaTeX output if you set
GENERATE_LATEX=YES
in your doxygen configuration file.The command you quoted instructs doxygen to write its default LaTeX document header and stylesheet to files, so this should have created two files, named
headerFile
andstyleSheetFile
. This is explained in the doxygen documentation here.You can then use the
LATEX_HEADER
option in your configuration file to tell doxygen to use your header file instead of its default, and this allows you to customise the style of the document.LATEX_HEADER
is described here.