[Doxygen-users] Problem with latex-code in comments
Brought to you by:
dimitri
From: Michael M. <moe...@si...> - 2001-11-29 16:12:25
|
Hi! I'm using doxygen version 1.2.12. Let me show my example: /***************** * \page soso * \class Eine Test Klasse * **********************/ class test { public: testFunc ///< [A] this is a test-function. ( int i ///< you will have to give it a value [B] \f$>0\f$. ); testFunc2 ( int i ///< you will have to give it a value \f$>0\f$. ); ///< [C] this is a second test-function. }; to [A]: a comment after the function name (ok I see, not after the function decl.), but a warning is givven, that theres a '<' comment.... but it is much better to read than [C]. to [B]: the html-output just repeats the \f$>0\f$. Latex seems not to work in that kind of ///< comments. Thanks for your attention, Michael |