]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/piano-template-with-melody-and-lyrics.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / piano-template-with-melody-and-lyrics.ly
index 8d80c301f4917c26f8684a664d15d72d4d8155f8..6cb559494c4973a9bc0d06219ea09a7211d7a30b 100644 (file)
@@ -1,32 +1,48 @@
-%% 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.dsi.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.14.0"
 
 \header {
   lsrtags = "vocal-music, keyboards, template"
 
-%% Translation of GIT committish: d35687993883eb31442009fc50d5ae063108bfa7
+%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
   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.
 
 "
   doctitlees = "Plantilla de piano con melodía y letra"
-  
-%% Translation of GIT committish: 17633f6b8681af86230aa84597fe7561e98c91d6
+
+
+%% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
+  texidocja = "
+これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
+"
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   texidocde = "
-Das nächste Beispiel ist typisch für ein Lied: Im oberen System die 
+Das nächste Beispiel ist typisch für ein Lied: Im oberen System die
 Melodie mit Text, darunter Klavierbegleitung.
 "
 
-%% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
-  texidocja = "
-これは一般的な歌曲のフォーマットです: 旋律と歌詞を持つ譜表と、その下にピアノ伴奏譜があります。
+  doctitlede = "Vorlage für Klavier und Gesangsstimme"
+
+
+%% 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.
+
 "
+  doctitlefr = "Piano mélodie et paroles"
 
   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"
@@ -36,8 +52,8 @@ melody = \relative c'' {
   \clef treble
   \key c \major
   \time 4/4
-  
-  a b c d  
+
+  a b c d
 }
 
 text = \lyricmode {
@@ -48,29 +64,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 { }
 }