命名一个 doxygen @ref
Naming a doxygen @ref
我将如何命名 Doxygen @ref
标签?
我尝试了以下方法:
See @ref hello_world hello for more information
输出这个:
See hello_world hello for more information
其中 hello_world
被 link 编辑为 hello_world
。我正在寻找这个输出:
See hello for more information
其中 hello
被 link 编辑为 hello_world
。 Doxygen 的文档仅包含有关 @ref
(\ref
) 的 LaTeX 形式的信息,我不知道如何将其应用于 JavaDoc 样式 @ref
.
我将如何更改 link 的 "text" 值?
来自文档:\ref <name> ["(text)"]
,看来您漏掉了引号:See @ref hello_world "hello for more information"
.
我将如何命名 Doxygen @ref
标签?
我尝试了以下方法:
See @ref hello_world hello for more information
输出这个:
See hello_world hello for more information
其中 hello_world
被 link 编辑为 hello_world
。我正在寻找这个输出:
See hello for more information
其中 hello
被 link 编辑为 hello_world
。 Doxygen 的文档仅包含有关 @ref
(\ref
) 的 LaTeX 形式的信息,我不知道如何将其应用于 JavaDoc 样式 @ref
.
我将如何更改 link 的 "text" 值?
来自文档:\ref <name> ["(text)"]
,看来您漏掉了引号:See @ref hello_world "hello for more information"
.