# Bibliothek When writing code based on existing publications, it's usually a good idea to cite the source right where you use it. Doing so is normally a bit cumbersome, but this crate aims to make it really easy by generating Structs from bibliography files such as bibtext. This way you can reference your sources just like you would reference any symbol in your source code. # Example The idea is that you include your bibliography in `lib.rs` ```rust pub mod bib { bibliothek::include_bibtex!("test.bib"); } ``` and then reference it somewhere else ```rust /// Does some crazy stuff. /// /// References: [crate::bib::CocoAccelerated] fn some_algorithm() { unimplemented!(); } ```