summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog18
-rw-r--r--src/guile/skribilo/package/lncs.scm10
2 files changed, 23 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index e8a8d8a..f184248 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,24 @@
# arch-tag: automatic-ChangeLog--skribilo@sv.gnu.org--2006/skribilo--devo--1.2
#
+2007-04-10 07:47:03 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-88
+
+ Summary:
+ `lncs' package: Fixed for non-LaTeX engines.
+ Revision:
+ skribilo--devo--1.2--patch-88
+
+ * src/guile/skribilo/package/lncs.scm (abstract): Use `chapter' instead
+ of `section'.
+ (references): Likewise.
+
+ modified files:
+ ChangeLog src/guile/skribilo/package/lncs.scm
+
+ new patches:
+ lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-47
+
+
2007-04-04 17:18:18 GMT Ludovic Court`es <ludovic.courtes@laas.fr> patch-87
Summary:
diff --git a/src/guile/skribilo/package/lncs.scm b/src/guile/skribilo/package/lncs.scm
index 9128200..e0c935b 100644
--- a/src/guile/skribilo/package/lncs.scm
+++ b/src/guile/skribilo/package/lncs.scm
@@ -24,7 +24,7 @@
:use-module (skribilo engine)
:use-module (skribilo writer)
:autoload (skribilo output) (output)
- :autoload (skribilo package base) (section font flush
+ :autoload (skribilo package base) (chapter font flush
toc the-bibliography)
:autoload (skribilo utils keywords) (the-options the-body)
:autoload (skribilo biblio template)(output-bib-entry-template
@@ -183,10 +183,10 @@
(markup '&html-lncs-abstract)
(body (the-body opt)))))
(list (if postscript
- (section :number #f :toc #f :title "Postscript Download"
+ (chapter :number #f :toc #f :title "Postscript Download"
postscript))
- (section :number #f :toc #f :title "Abstract" a)
- (section :number #f :toc #f :title "Table of Contents"
+ (chapter :number #f :toc #f :title "Abstract" a)
+ (chapter :number #f :toc #f :title "Table of Contents"
(toc :subsection #t)))))))
;*---------------------------------------------------------------------*/
@@ -199,7 +199,7 @@
(font :size -1
(flush :side 'left
(the-bibliography :sort sort-proc)))
- (section :title "References"
+ (chapter :title "References"
(font :size -1
(the-bibliography :sort sort-proc)))))))