在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:Humans-of-Julia/Bibliography.jl开源软件地址:https://github.com/Humans-of-Julia/Bibliography.jl开源编程语言:Julia 81.0%开源软件介绍:Bibliography.jlBibliography.jl is a Julia package for handling both import/export from various bibliographic formats. OrganizationThis package comes as a set of 3 packages to convert bibliographies. This tool was split into three for the sake of the precompilation times.
Packages using Bibliographies
Contributions are welcome
Short documentation# Import a BibTeX file to the internal bib structure
imported_bib = import_bibtex(source_path::AbstractString)
# Select a part of a bibliography
selection = ["key1", "key2"]
selected_bib = select(imported_bib, selection) # select the intersection between the bibliography and `selection`
diff_bib = select(imported_bib, selection; complementary = true) # select the difference between the bibliography and `selection`
# Export from internal to BibTeX format
export_bibtex(target_path::AbstractString, bibliography)
# Check BibTeX rules, entry validity, clean and sort a bibtex file
export_bibtex(target_path::AbstractString, import_bibtex(path_to_file::AbstractString))
# Export from internal to the Web Format of StaticWebPages.jl
export_web(bibliography)
# Export from BibTeX to the Web Format of StaticWebPages.jl
bibtex_to_web(source_path::AbstractString) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论