GitHub-hosted SurVis Web3 Tags
快捷导航:
为了更新Tags,需要改两个地方:
- src/data/tag_categories.js
- bib/references.bib中每个keywords->src/data/generated/bib.js
src/data/tag_categories.js
Step1:找到src/data/tag_categories.js文件,以下是对文件的解释
define({
%% 以下是在网页Keywords里会显示的内容 %%
tagCategories: {
"type": { %% Keywords里的Key %%
"description": "type of the paper" %% 鼠标移到"type"上方时的提示 %%
}
}
})
Step2:修改src/data/tag_categories.js,如下
Tips: 必须是小写
define({
%% 以下是在网页Keywords里会显示的内容 %%
tagCategories: {
"methods": {
"description": "methods of the paper"
},
"benchmarks": {
"description": "benchmarks of the paper"
},
"classes": {
"description": "classifications of the paper"
}
}
})
bib/references.bib中每个keywords
Step1:为每个引用的文章添加keywords属性,格式如下
Tips: 与tag_categories.js文件对应
@article{...,
...
keywords = {methods: Conflict graph, methods: Mixed integer programming, benchmarks:ITC2019, classes:UTT},
...
}
Step2: 使用教程Github-hosted SurVis Web2 bib的方法更新bib
标题:GitHub-hosted SurVis Web3 Tags
作者:Departure
地址:https://www.unreachablecity.club/articles/2025/05/07/1746563982570.html
Comments | 0 条评论