diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/guile/skribilo/package/acmproc.scm | 11 |
2 files changed, 7 insertions, 5 deletions
@@ -24,6 +24,7 @@ It used to be that footnote HTML code contained an extraneous </div>, and nested <a> tags, which is invalid. ** acmproc: Fix typos in the LaTeX engine customs +** acmproc: `references' uses a chapter, the default font, and sorts entries ** `ref' warnings now always print the location of erroneous `:bib' references ** `numref' inserts an unbreakable space (was a breakable space) after its `:text' diff --git a/src/guile/skribilo/package/acmproc.scm b/src/guile/skribilo/package/acmproc.scm index 9929c85..92f7b6d 100644 --- a/src/guile/skribilo/package/acmproc.scm +++ b/src/guile/skribilo/package/acmproc.scm @@ -28,6 +28,7 @@ :use-module (skribilo package base) :autoload (skribilo utils keywords) (the-options the-body) :autoload (skribilo evaluator) (evaluate-document) + :autoload (skribilo biblio author) (bib-sort/first-author-last-name) :use-module (skribilo lib) :use-module (skribilo utils syntax) @@ -180,13 +181,13 @@ (if (string? old) (engine-custom-set! le 'predocument (string-append cop old)) (engine-custom-set! le 'predocument cop)))) - + ;*---------------------------------------------------------------------*/ ;* references ... */ ;*---------------------------------------------------------------------*/ (define (references) (list "\n\n" - (if (engine-format? "latex") - (font :size -1 (flush :side 'left (the-bibliography))) - (section :title "References" - (font :size -1 (the-bibliography)))))) + (chapter :title "References" + (flush :side 'left + (the-bibliography + :sort bib-sort/first-author-last-name))))) |