]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/displaying-a-whole-grandstaff-system-if-only-one-of-its-staves-is-alive.ly
Doc: typos and spurious seealso
[lilypond.git] / Documentation / snippets / displaying-a-whole-grandstaff-system-if-only-one-of-its-staves-is-alive.ly
index 7a1ff98776fde01af1cd3c5f3169ef887d22e29d..72aa7ec0ae795db8b7262099d17a8c6938b78d70 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 = "contexts-and-engravers"
@@ -12,7 +12,7 @@
   texidoc = "
 In orchestral scores sometimes single or groups of instruments are
 silent for a while and their staves can be removed for that time (with
-@code{\\removeEmptStaves}).
+@code{\\removeEmptyStaves}).
 
 
 When they play again it is often preferred to show the staves of all
@@ -31,31 +31,44 @@ the second violin is also displayed.
 
 \score {
   <<
-    \new StaffGroup = "StaffGroup_woodwinds" <<
+    \new StaffGroup = "StaffGroup_woodwinds"
+    <<
       \new Staff = "Staff_flute" \with {
         instrumentName = "Flute"
-        shortInstrumentName = "Fl"}
-        \relative { \repeat unfold 3 { c'4 c c c | c c c c | c c c c | \break } }
+        shortInstrumentName = "Fl"
+      }
+      \relative c' {
+        \repeat unfold 3 { c'4 c c c | c c c c | c c c c | \break }
+      }
     >>
-    \new StaffGroup = "StaffGroup_Strings" <<
-      \new GrandStaff = "GrandStaff_violins" <<
+    \new StaffGroup = "StaffGroup_Strings"
+    <<
+      \new GrandStaff = "GrandStaff_violins"
+      <<
         \new Staff = "StaffViolinI" \with {
           instrumentName = "Violin I"
-          shortInstrumentName = "Vi I"}
-          \relative c'' { a1 \repeat unfold 7 { s1 } \repeat unfold 12 a16  a4}
+          shortInstrumentName = "Vi I"
+        }
+        \relative c'' {
+          a1 \repeat unfold 7 { s1 } \repeat unfold 12 a16  a4
+        }
         \new Staff = "StaffViolinII" \with {
           instrumentName = "Violin II"
-          shortInstrumentName = "Vi II"}
-          \relative { e1 \repeat unfold 8 { s1 } }
+          shortInstrumentName = "Vi II"
+        }
+        \relative c' { e1 \repeat unfold 8 { s1 } }
       >>
       \new Staff = "Staff_cello" \with {
         instrumentName = "Cello"
-        shortInstrumentName = "Ce"}
-        \relative c { \clef bass \repeat unfold 9 { c1 }}
+        shortInstrumentName = "Ce"
+      }
+      \relative c { \clef bass \repeat unfold 9 { c1 }}
     >>
   >>
 }
 \layout {
+  indent = 3.0\cm
+  short-indent = 1.5\cm
   \context {
     \GrandStaff
     \consists Keep_alive_together_engraver