0

我想包含\s\p在 doxygen 生成的最终文档中。下面是来自 Java 文件的示例注释块:

/**
 * @section Sample sample
 * Need to use \s\p in the file.
 *
 */

并且生成的文档应该为Need to use \s\p in the file.但是,当我运行 doxygen 时,它替换了\s\pwith<computeruotput/>并且 doxygen XML 输出中的结果是Need to use <computeruotput/> in the file.如何获得\s\p最终输出而不是<computeruotput/>

4

1 回答 1

1

这是因为反斜杠\表示doxygen 中的特殊命令\p例如用于使用打字机字体格式化文本。要进入\s\p您的输出,请尝试使用,即用两个.\\s\\p替换单个反斜杠。是 doxygen 中的一个特殊命令,它只打印一个.\\\\\\

于 2012-08-10T07:22:57.640 回答