]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/piano-template-with-melody-and-lyrics.ly
Doc-es: also do not split arguments to rextendnamed.
[lilypond.git] / Documentation / snippets / piano-template-with-melody-and-lyrics.ly
index 21ca1470fa807dcbca29da8bf032e62828305376..2fc6138fd865b7345177e2d8ea320810966cdcf0 100644 (file)
@@ -1,12 +1,12 @@
 %% Do not edit this file; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.13.4"
+\version "2.13.31"
 
 \header {
   lsrtags = "vocal-music, keyboards, template"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
   texidoces = "
 He aquí el típico formato dde una canción: un pentagrama con la
 melodía y la letra, y el acompañamiento de piano por debajo.
@@ -15,12 +15,12 @@ melodía y la letra, y el acompañamiento de piano por debajo.
   doctitlees = "Plantilla de piano con melodía y letra"
 
 
-%% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
+%% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
   texidocja = "
 これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
 "
 
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   texidocde = "
 Das nächste Beispiel ist typisch für ein Lied: Im oberen System die
 Melodie mit Text, darunter Klavierbegleitung.
@@ -29,7 +29,7 @@ Melodie mit Text, darunter Klavierbegleitung.
   doctitlede = "Vorlage für Klavier und Gesangsstimme"
 
 
-%% Translation of GIT committish: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
+%% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
   texidocfr = "
 Il s'agit du format classique pour le chant : une portée pour la mélodie
 et les paroles au-dessus de l'accompagnement au piano.
@@ -39,7 +39,7 @@ et les paroles au-dessus de l'accompagnement au piano.
 
   texidoc = "
 Here is a typical song format: one staff with the melody and lyrics,
-with piano accompaniment underneath. 
+with piano accompaniment underneath.
 
 "
   doctitle = "Piano template with melody and lyrics"
@@ -49,8 +49,8 @@ melody = \relative c'' {
   \clef treble
   \key c \major
   \time 4/4
-  
-  a b c d  
+
+  a b c d
 }
 
 text = \lyricmode {
@@ -61,29 +61,29 @@ upper = \relative c'' {
   \clef treble
   \key c \major
   \time 4/4
-  
-  a4 b c d  
+
+  a4 b c d
 }
 
 lower = \relative c {
   \clef bass
   \key c \major
   \time 4/4
-  
-  a2 c  
+
+  a2 c
 }
 
 \score {
   <<
     \new Voice = "mel" { \autoBeamOff \melody }
-    \new Lyrics \lyricsto mel \text    
+    \new Lyrics \lyricsto mel \text
     \new PianoStaff <<
       \new Staff = "upper" \upper
       \new Staff = "lower" \lower
     >>
   >>
   \layout {
-    \context { \RemoveEmptyStaffContext }
+    \context { \Staff \RemoveEmptyStaves }
   }
   \midi { }
 }