是否可以使用doxygen创建一个中心词汇表

And*_*ter 1 doxygen

我想使用doxygen创建并链接到中心词汇表.

为了创建词汇表,我会在doxygen搜索路径中使用"glossary.md"文件.内容可通过"相关页面"获得.

是否可以从我的文档中的任何位置链接到该词汇表页面中的条目?

最好的问候Andreas

And*_*ter 6

我能够使用sections命令和引用来解决问题,但欢迎使用更优雅的解决方案.

所以我的glossary.md文件看起来像:

@section GLOSSARY_ISR ISR
Interrupt service routine: ...
Run Code Online (Sandbox Code Playgroud)

在我的Doxyfile中,我添加了

ALIASES = "glos{1}=[\1](\ref GLOSSARY_\1)"
Run Code Online (Sandbox Code Playgroud)

能够使用我的代码文档中的简单语法,如下所示

Therefore an \glos{ISR} is used
Run Code Online (Sandbox Code Playgroud)