Doxygen 乳胶微调?

发布于 2024-08-19 07:53:37 字数 145 浏览 3 评论 0原文

我有两个关于 doxygen 乳胶输出的问题: 如何组织相关页面(由 \page 创建的页面)? (它们似乎是根据页面标题组织的) 如何指定使用哪个乳胶样式表? (我在 Doxyfile 中没有找到任何内容)

我想删除班级成员的段落编号。

谢谢

I've got 2 questions concerning the latex output of doxygen:
How can one organize the related pages (those created by \page) ? (They seem to be organized according to the title of the page)
How to specify which latex stylesheet to use ? (i've found nothing in the Doxyfile)

I would like to get rid of the paragraph numbers for the class members.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清音悠歌 2024-08-26 07:53:37

对于 LaTeX 输出,您可以使用以下命令生成 refman.tex 的第一部分(请参阅 LATEX_HEADER)以及该标头包含的样式表(通常是 doxygen.sty):

doxygen -w Latex header.tex doxygen.sty

For LaTeX output, you can generate the first part of refman.tex (see LATEX_HEADER) and the style sheet included by that header (normally doxygen.sty), using:

doxygen -w latex header.tex doxygen.sty

怀里藏娇 2024-08-26 07:53:37

在当前的 doxygen 中(我使用 1.8.11),您也可以修改页脚,@synthesizerpatel 的命令将不再起作用。现在你必须说

doxygen -w latex header.tex footer.tex doxygen.sty

你可以通过在 Doxyfile 中设置这些变量来使用修改后的文件

LATEX_HEADER           = header.tex
LATEX_FOOTER           = footer.tex

In current doxygen (I use 1.8.11), you can modify the footer as well, the command by @synthesizerpatel won't work anymore. Now you have to say

doxygen -w latex header.tex footer.tex doxygen.sty

You can use the modified files by setting these variables in your Doxyfile

LATEX_HEADER           = header.tex
LATEX_FOOTER           = footer.tex
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文