我想包含\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/>?