如何让 Doxygen 识别自定义 Latex 命令
有没有办法在 Doxygen 代码文档系统中使用额外的乳胶包和/或额外的乳胶命令。例如,我在自定义 sty 文件中定义快捷方式。
\newcommand{\tf}{\Theta_f}
然后我在代码中使用了大约 300 次,涉及大约十几个文件。
/*! Stochastic approximation of the latent response*/
void dual_bc_genw(
//...
double const * const psi, ///< \f$ \psi = B\tf \f$
//...
){/* lots of brilliant code */}
但如何让系统识别出额外的包。
Is there a way to use extra latex packages and/or extra latex commands with Doxygen code documentation system. For example I define the shortcut in a custom sty file.
\newcommand{\tf}{\Theta_f}
Then I use it about 300 time in the code, which is across about a dozen files.
/*! Stochastic approximation of the latent response*/
void dual_bc_genw(
//...
double const * const psi, ///< \f$ \psi = B\tf \f$
//...
){/* lots of brilliant code */}
But how do I get the system to recognize the extra package.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在配置文件中的 EXTRA_PACKAGES 标记中命名您的样式文件。
Name your style file in the EXTRA_PACKAGES tag in your configuration file.