]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/piano-template-with-centered-lyrics.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / piano-template-with-centered-lyrics.ly
index ccf50e699b3ff87b6af3a175df37106ed3b0d046..008535e304ef6cdf50082a81294bccd01b208260 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "keyboards, really-simple, template, text"
@@ -17,7 +17,6 @@ centered between the staves of a piano staff.
   doctitle = "Piano template with centered lyrics"
 } % begin verbatim
 
-
 upper = \relative c'' {
   \clef treble
   \key c \major
@@ -39,20 +38,11 @@ text = \lyricmode {
 }
 
 \score {
-  \new GrandStaff <<
+  \new PianoStaff <<
     \new Staff = upper { \new Voice = "singer" \upper }
     \new Lyrics \lyricsto "singer" \text
     \new Staff = lower { \lower }
   >>
-  \layout {
-    \context {
-      \GrandStaff
-      \accepts "Lyrics"
-    }
-    \context {
-      \Lyrics
-      \consists "Bar_engraver"
-    }
-  }
+  \layout { }
   \midi { }
 }