diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/package/lncs.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/guile/skribilo/package/lncs.scm b/src/guile/skribilo/package/lncs.scm index 25b1e5a..8546b14 100644 --- a/src/guile/skribilo/package/lncs.scm +++ b/src/guile/skribilo/package/lncs.scm @@ -230,13 +230,17 @@ (format #t "\\cite{~a}" (markup-ident entry))))) (markup-writer 'bib-ref+ latex - :options '(:text :bib) + :options '(:text :bib :sort-bib-refs) :action (lambda (n e) - (let ((entries (map (lambda (bib-ref) - (handle-ast (markup-body bib-ref))) - (markup-body n)))) + (let ((entries (map (lambda (bib-ref) + (handle-ast (markup-body bib-ref))) + (markup-body n))) + (sort-proc (markup-option n :sort-bib-refs))) (format #t "\\cite{~a}" - (string-join (map markup-ident entries) + (string-join (map markup-ident + (if (procedure? sort-proc) + (sort entries sort-proc) + entries)) ","))))) (markup-writer '&the-bibliography latex |