diff options
author | Ludovic Court`es | 2007-04-10 07:47:03 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-04-10 07:47:03 +0000 |
commit | 8ea5869372ead04321e5eaebd41485d146a90c99 (patch) | |
tree | 1e58819165473f439f2e714577c00b32922e97bb /src | |
parent | 0e6286ab3675829263322b29f2972b2dcdbb6bc2 (diff) | |
parent | 21899db7e3bfe30a0c60f2dfef244ecd4037f07b (diff) | |
download | skribilo-8ea5869372ead04321e5eaebd41485d146a90c99.tar.gz skribilo-8ea5869372ead04321e5eaebd41485d146a90c99.tar.lz skribilo-8ea5869372ead04321e5eaebd41485d146a90c99.zip |
`lncs' package: Fixed for non-LaTeX engines.
* src/guile/skribilo/package/lncs.scm (abstract): Use `chapter' instead
of `section'.
(references): Likewise.
git-archimport-id: skribilo@sv.gnu.org--2006/skribilo--devo--1.2--patch-88
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/package/lncs.scm | 10 |
1 files changed, 5 insertions, 5 deletions
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))))))) |