GitHub-hosted SurVis Web3 Tags

快捷导航:

  1. GitHub-hosted SurVis Web:链接
  2. Github-hosted SurVis Web2 Bib:链接
  3. 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"上方时的提示 %%
		}
	}
})

image21.png

image23.png

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" 
		}
	}
})

image24.png

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

image26.png

image25.png


标题:GitHub-hosted SurVis Web3 Tags
作者:Departure
地址:https://www.unreachablecity.club/articles/2025/05/07/1746563982570.html