]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/piano-template-simple.ly
Snippets: Replace \set Staff.instrumentName
[lilypond.git] / Documentation / snippets / piano-template-simple.ly
index b72451ad9d7c4e4aacb6d73723b4ca4a81f9de92..8a921fcc976d7e03c70d2a46091feed6c279472a 100644 (file)
@@ -1,43 +1,14 @@
-%% 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.14.2"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.19.56
+\version "2.19.56"
 
 \header {
-  lsrtags = "template, keyboards, really-simple"
-
-%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
-  texidoces = "
-Presentamos a continuación una plantilla de piano sencilla con algunas
-notas.
-
-"
-  doctitlees = "Plantilla de piano (sencilla)"
-
-
-%% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
-  texidocit = "
-Ecco un comune doppio pentagramma per pianoforte con un po' di note.
-
-"
-  doctitleit = "Modello per pianoforte (semplice)"
-
-%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
-  texidocde = "
-Hier ein einfaches Klaviersystem.
-
-"
-  doctitlede = "Vorlage für einfache Klaviernotation"
-
-%% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
-  texidocfr = "
-Voici une simple partition pour piano avec quelques notes.
-
-"
-  doctitlefr = "Piano -- cannevas simple"
+  lsrtags = "keyboards, really-simple, template"
 
   texidoc = "
 Here is a simple piano staff with some notes.
@@ -46,14 +17,14 @@ Here is a simple piano staff with some notes.
   doctitle = "Piano template (simple)"
 } % begin verbatim
 
-
 upper = \relative c'' {
   \clef treble
   \key c \major
   \time 4/4
 
   a4 b c d
-}
+} % begin verbatim
+
 
 lower = \relative c {
   \clef bass
@@ -64,12 +35,11 @@ lower = \relative c {
 }
 
 \score {
-  \new PianoStaff <<
-    \set PianoStaff.instrumentName = #"Piano  "
+  \new PianoStaff \with { instrumentName = #"Piano" }
+  <<
     \new Staff = "upper" \upper
     \new Staff = "lower" \lower
   >>
   \layout { }
   \midi { }
 }
-