X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fexample-3.ly;h=34291864c993aae00b8e6a8428184a437370373c;hb=3dd7c6f29c9ca494976f69736b470b6300135099;hp=84c7f60c8ef7a41cc75406df3b8939ea8430cd1a;hpb=402045837e7134cdf90d1fcf31768c62227a4936;p=lilypond.git diff --git a/input/example-3.ly b/input/example-3.ly index 84c7f60c8e..34291864c9 100644 --- a/input/example-3.ly +++ b/input/example-3.ly @@ -1,32 +1,36 @@ -#(ly:set-option 'old-relative) -\version "2.1.22" +%%% A full example with two staves -one = \notes\relative c{ - c'' d e f +\header { + title = "And now, example 3" + copyright = "public domain" } -two = \notes\relative c{ - \clef "bass" - c'2 g2 +one = \relative { + c' d e f } -\score{ - << - \one - \two - >> - \paper{} - \midi{} +two = \relative { + \clef "bass" + c2 g2 } -% A full example with two staves -% -% Type: -% -% lilypond example-3 -% xdvi example-3 # or your dvi viewer here - -%% -%% For learning LilyPond, please read the tutorial, included in the -%% user-manual. -%% +<< + \new Staff \one + \new Staff \two +>> + +%{ +Type + + lilypond example-3 + xpdf example-3 # or your PDF viewer here + +For learning LilyPond, please read the tutorial + + http://lilypond.org/tutorial + +also included in the user-manual. +%} + +%% Optional version number +\version "2.12.0"