How to get Doxygen to recognize custom latex command
Posted
by Halpo
on Stack Overflow
See other posts from Stack Overflow
or by Halpo
Published on 2010-06-16T23:59:35Z
Indexed on
2010/06/17
0:02 UTC
Read the original article
Hit count: 252
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.
© Stack Overflow or respective owner