From d61512993ff69f46dad2da9167e3964ac0a3af1c Mon Sep 17 00:00:00 2001
From: fred <fred>
Date: Sun, 24 Mar 2002 20:07:42 +0000
Subject: [PATCH] lilypond-0.1.53

---
 input/twinkle.ly | 59 ++++++++++++++++++++++++++++++++++--------------
 1 file changed, 42 insertions(+), 17 deletions(-)

diff --git a/input/twinkle.ly b/input/twinkle.ly
index c302e05ac4..f1349f9633 100644
--- a/input/twinkle.ly
+++ b/input/twinkle.ly
@@ -84,7 +84,8 @@ hegedraagjetekst = \lyric{
 
 texte = \lyric{ 
 	 
-	\textstyle "italic" ;
+%	\textstyle "italic" ;
+	\textstyle "roman" ;
  	Ah!4 vous dir- ai_- je ma man2
 	Ce4 qui cau- se mon tour- ment2
 	Pa-4 pa veut que je rai- sonne2
@@ -126,27 +127,51 @@ textiii = \lyric{
 	
 }
 
+$top_lyrics = \type Lyrics = top <
+	\global 
+	\tekst
+>
+
+$treble_staff = \type Staff = treble <
+	\global
+	\melody 
+>
+
+$bass_staff = \type Staff = bass <
+	\global
+	\accompany
+>
+
+$middle_lyrics = \type Lyrics = middle <
+	\global
+	\texte
+>
+
+$bottom_lyrics = \type Lyrics = bottom <
+	\global
+	\texti
+	\textii
+	\textiii
+>
+
+$grand_staff = \type Staff_group <
+	\$treble_staff
+	\$middle_lyrics
+	\$bass_staff
+>
+
 \score{
 	< 
-		\lyric \type Lyrics = top < 
-			\global \tekst >
-		\type Staff_group < 
-		\type Staff=treb < \global  
-			  \melody >
-		\lyric \type Lyrics  = "Middle" <  \global
-			\texte >
-		\type Staff=bass	< \global 
-			\accompany >
-		% ugh
-		>
-		\lyric \type Lyrics  = bottomlyrics < \global
-			\texti \textii \textiii >
-		
+		\$treble_staff
+		\$middle_lyrics
+		\$top_lyrics
+		\$grand_staff
+		\$bottom_lyrics
 	>
 	\paper{
 		% use a lot of space, to avoid clashing syllables
-		arithmetic_multiplier = 8.\pt;
-		gourlay_maxmeasures = 14.0;
+%		arithmetic_multiplier = 8.\pt;
+%		gourlay_maxmeasures = 14.0;
 	}
 	\midi{ 
 		\tempo 4 = 120 ;
-- 
2.39.5