I have the following scribble document that uses a bibliography:
#lang scribble/base
@(require scriblib/autobib)
@(define-cite cite citet gen-bib)
This is a citation@cite[the-citation].
@(define the-citation
(make-bib #:title "Hello"
#:author "World"
#:date "1337"))
@gen-bib[]
The document's result looks something like this:
The bibliography section is title 'BIBLIOGRAPHY', but I would actually like it to be titled 'REFERENCES', is this possible with scribble, or do I have to drop into latex hacking?