我需要在我的代码文档中简要讨论一些数学问题,并且我想插入一个实际的希腊字母(小写 lambda)而不是使用单词“lambda”。我怎样才能在 Doxygen 中做到这一点?我以前只用 500 英尺的杆子涉足过 HTML(我绝不是网络程序员),所以请原谅我的无知。我已经尝试&lambda
在文档中放置一个像 Doxygen 用户手册提到的那样,但不幸的是它是按字面意思理解的。
=======================编辑========================== ==============================
这是所要求的示例:
/**
* This function is used to fill an array with exponentially distributed
* random numbers. These numbers are distributed assuming rate parameter
* (λ) = 1.
*
* The output vector can be modified for an arbitrary λ by dividing
* its contents by the desired value of λ (or, preferably for speed,
* multiplying its contents by the precomputed value of 1/λ) as
* shown in the histogram below.
* @image html exponential_histogram.png
*
* @param size The size of the array to be filled.
*
* @param vector The array which the user wants to fill with random
* values. Again, it should be of type @b float.
*
* @param state The array which was initialized with the
* "DSP_urand32_init" function and maintained (but @b NEVER modified)
* by the user between subsequent calls to this function.
*/