Hi,<br><br>I would like to use scriblib/bibtex which looks like a wonderful tool, but I can&#39;t seem to have it work:<br><br>#lang racket<br>(require scriblib/bibtex)<br><br>(define-bibtex-cite<br>  &quot;biblio.bib&quot;<br>

  ~cite citet generate-bibliography)<br><br>fails with:<br><br>../../usr/lib/racket-5.3.0.8/collects/scriblib/bibtex.rkt:84:9: read-entry: Parsing entry, expected , or }, got #\return; label is &quot;hochreiter_long_1997&quot;; atag is &quot;pages&quot;; aval is &quot;1735--1780&quot; @ line 9 column 0 byte 219<br>

<br>The offending bib entry, which is the first in the file, is:<br>@article{hochreiter_long_1997,
<br>    author = {Hochreiter, S. and Schmidhuber, J.},
<br>    title = {Long {Short-Term} Memory},
<br>    volume = {9},
<br>    number = {8},
<br>    journal = {Neural Computation},
<br>    year = {1997},
<br>    pages = {1735--1780}
<br>}
<br><br>but all other entries I tested alone failed too.<br>I tried adding &quot;,&quot; after the pages, after the last &quot;}&quot;, change {} to &quot;&quot;, but no success.<br><br>Do I use it incorrectly?<br><br>(Plus I&#39;d like to use it in slideshow, if anyone has something for that...)<br>

<br>Laurent<br>