racket/scribble

autobib renders hash rather than citation

wilbowma opened this issue · 2 comments

meow.scrbl

#lang scribble/base
@; scribble --pdf meow.scrbl

@(require
  scriblib/bibtex)

@(define-bibtex-cite "wilbowma.bib" ~cite citet generate-bibliography)

@title{Test}

@citet{matthews2007} is cool stuff.

@(generate-bibliography)

wilbowma.bib

@Inproceedings{matthews2007,
  author    = {Matthews, Jacob And Findler, Robert Bruce},
  title     = {Operational Semantics for Multi-language Programs},
  booktitle = popl,
  year      = {2007},
  doi       = {10.1145/1190216.1190220},
  file      = {:matthews2007 - Operational Semantics for Multi-language Programs.pdf:PDF},
}

image

Looks like the problem is that the type is case sensitive. This appears to be in contrast to bibtex semantics. Will try to submit a patch.

I think this should have been closed at the same time as #264