ali-ramadhan / DocumenterCitations.jl

DocumenterCitations.jl uses Bibliography.jl to add support for BibTeX citations and references in documentation pages generated by Documenter.jl.
https://ali-ramadhan.github.io/DocumenterCitations.jl/dev
MIT License
65 stars 10 forks source link

Volume should be an optional field for article #29

Closed andreasnoack closed 3 years ago

andreasnoack commented 3 years ago

For the bibtex info

@article{white1982maximum,
  title={Maximum likelihood estimation of misspecified models},
  author={White, Halbert},
  journal={Econometrica: Journal of the Econometric Society},
  pages={1--25},
  year={1982},
  publisher={JSTOR}
}

I'm getting

ERROR: LoadError: Entry white1982maximum is missing the volume field(s).

but volume is an optional field, see https://www.bibtex.com/e/article-entry/.

charleskawczynski commented 3 years ago

I ran into this also

kellertuer commented 3 years ago

This might be more an issue for the package https://github.com/Azzaare/Bibliography.jl ?

ali-ramadhan commented 3 years ago

Yeah I think so, but @Azzaare can maybe confirm.

I remember running into this so I just peppered some empty volume = {} entries but yeah volume should be an optional field.

Azzaare commented 3 years ago

@charleskawczynski Indeed, there was a mistake in the bibtex rules for Bibliography.jl. It should be updated soon.

Azzaare commented 3 years ago

This should be closed now I guess

LazyScholar commented 3 years ago

Works now. Checked it with the provided bibtex entry from above.