Skip to content

Instantly share code, notes, and snippets.

View vlepori's full-sized avatar

Vasco Lepori vlepori

  • Switzerland
View GitHub Profile
@vlepori
vlepori / trimmer.jl
Last active January 20, 2022 08:25
trimmer.jl
# A julia script to trim .bib files down to only entries cited in a .tex file
# V. Lepori, 01-2022
"Define a type for bib items."
struct Entry
name::String
body::Vector{String}
end
getname(e::Entry) = e.name