我该如何命名一个Doxygen@ref标签?
我尝试过以下几种方法:
See @ref hello_world hello for more information输出如下:
See hello_world hello for more information在哪里hello_world链接到hello_world。我正在查找以下输出:
See hello for more information在哪里hello链接到hello_world。Doxygen的文档仅包含有关LaTeX表单的信息@ref(\ref),但我不知道如何将其应用于JavaDoc样式@ref。
如何更改链接的"text“值?
发布于 2015-05-05 23:45:03
从文档中:\ref ["(text)"],所以看起来你漏掉了引号:See @ref hello_world "hello for more information"。
https://stackoverflow.com/questions/30018946
复制相似问题