lout-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Gracefully handle titles of numberless chapters


From: Ludovic Courtès
Subject: [PATCH] Gracefully handle titles of numberless chapters
Date: Tue, 10 Jul 2007 16:46:17 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux)

Hi,

Currently, when using the `book' style and producing a numberless
chapter with:

  @Chapter @Title { Some Title }
           @BypassNumber { }     # we want a numberless chapter

the chapter heading looks like this:

  Chapter.  Some Title

The attached patch fixes address@hidden' so that it gracefully
handles this case, yielding a chapter heading more consistent with what
one might expect, namely:

  Some Title

Thanks,
Ludovic.

--- orig/include/dsf
+++ mod/include/dsf
@@ -5189,7 +5189,12 @@
        def @LongNum
        {
            numbers @Then {
-               initiallanguage @Language { word @NumSep @ShortNum }
+               @ShortNum @Case {
+                  ""   @Yield { } # numberless: don't produce `word'
+                  else @Yield {
+                    initiallanguage @Language { word @NumSep @ShortNum }
+                  }
+               }
            }
        }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]