This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |