]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/book-parts.ly
Release: bump VERSION_DEVEL.
[lilypond.git] / Documentation / snippets / book-parts.ly
index 609b6072244004b961e97f0991b6152be7c896e8..07c48226962f1945cde469e60c5b24b0abb244a4 100644 (file)
@@ -1,6 +1,10 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.18.0"
 
 \header {
   lsrtags = "paper-and-layout"
@@ -18,7 +22,6 @@ with the book last page.
 #(set-default-paper-size "a6")
 
 \book {
-
   %% book paper, which is inherited by all children bookparts
   \paper {
     ragged-last-bottom = ##t
@@ -48,10 +51,10 @@ with the book last page.
     parttagline = "Part tagline"
     tagline = "Book tagline"
   }
-  
+
   \bookpart {
     %% a different page breaking function may be used on each part
-    \paper { #(define page-breaking optimal-page-breaks) }
+    \paper { page-breaking = #ly:minimal-breaking }
     \header { subtitle = "First part" }
     \markup { The first book part }
     \markup { a page break }
@@ -62,7 +65,7 @@ with the book last page.
 
   \bookpart {
     \header { subtitle = "Second part" }
-    { c' }
+    { c'4 }
   }
 
 }