]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add snippet 110.
authorGraham Percival <graham@percival-music.ca>
Sat, 10 Nov 2007 15:24:00 +0000 (07:24 -0800)
committerJohn Mandereau <john.mandereau@gmail.com>
Mon, 12 Nov 2007 23:10:28 +0000 (00:10 +0100)
Documentation/user/fundamental.itely

index c84530e064ed419501f92a34254acbb9fe1fd319..ab1a0d6a0085c2594f1aa0414d3a9c0002b3547e 100644 (file)
@@ -26,6 +26,7 @@ description of the input format, see @ruser{File structure}.
 @menu
 * Introduction to the LilyPond file structure::  
 * Score is a (single) compound musical expression::  
+* Expressions can be nested after the beginning::  
 @end menu
 
 @node Introduction to the LilyPond file structure
@@ -273,6 +274,33 @@ indentation -- make sure that each item on the same layer starts
 on the same horizontal position in your text editor.
 
 
+@node Expressions can be nested after the beginning
+@subsection Expressions can be nested after the beginning
+
+TODO: this title is teh suck.  :(
+
+@lilypond[verbatim,quote,ragged-right]
+\score {
+       <<
+               \new Staff \relative c''{ c1 c c c c }
+               \new StaffGroup \relative c''{ 
+                       \new Staff 
+                       c1 c
+                       << c1 \new Staff { c1 } >>
+                       c
+               }
+       >>
+       \layout {
+               
+               \context{
+                       \Score
+
+               }
+       }
+}
+@end lilypond
+
+
 @node Voices contain music
 @section Voices contain music