给doxygen @ref命名

Jac*_*don 3 documentation syntax doxygen documentation-generation

我该如何命名Doxygen @ref标签?

我尝试了以下方法:

See @ref hello_world hello for more information
Run Code Online (Sandbox Code Playgroud)

输出以下内容:

See hello_world hello for more information
Run Code Online (Sandbox Code Playgroud)

hello_world链接到哪里hello_world。我正在寻找此输出:

See hello for more information
Run Code Online (Sandbox Code Playgroud)

hello链接到哪里hello_world。Doxygen的文档仅包含有关@ref\ref)的LaTeX形式的信息,并且我不知道如何将其应用于JavaDoc样式@ref

我将如何更改链接的“文本”值?

alb*_*ert 5

从文档:中\ref <name> [”(text)”],您似乎错过了引号:See @ref hello_world "hello for more information"