From: Graham Percival Date: Sat, 10 Nov 2007 15:24:00 +0000 (-0800) Subject: Add snippet 110. X-Git-Tag: release/2.11.35-1~41^2~3^2~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6b9358844dd8be2768302a71178fb8b196783a4d;p=lilypond.git Add snippet 110. --- diff --git a/Documentation/user/fundamental.itely b/Documentation/user/fundamental.itely index c84530e064..ab1a0d6a00 100644 --- a/Documentation/user/fundamental.itely +++ b/Documentation/user/fundamental.itely @@ -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