コード ドキュメントで数学について簡単に説明する必要があり、「ラムダ」という単語を使用するのではなく、実際のギリシャ文字 (小文字のラムダ) を挿入したいと考えています。Doxygenでこれを行うにはどうすればよいですか? 以前に 500 フィートのポールで HTML に手を出したことが一度だけあります (私は決して Web プログラマーではありません)。Doxygen のユーザー マニュアルに記載されているようにドキュメントに を配置しようとしました&lambda
が、残念ながら文字通りに取られました。
======================= 編集 ========================= =============================
リクエストされた例は次のとおりです。
/**
* 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.
*/