X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fexample-3.ly;h=85277c45a4766fc64a4e8800075e56166c3849e3;hb=ab0d7437ee820fd14b629b52bdc39377f4175263;hp=8e7adfea4ea2831433deaf9d61b59bce55232dc3;hpb=5956be580d291c1460f1c4b5f6e4a1c3e6549602;p=lilypond.git diff --git a/input/example-3.ly b/input/example-3.ly index 8e7adfea4e..85277c45a4 100644 --- a/input/example-3.ly +++ b/input/example-3.ly @@ -1,32 +1,36 @@ -#(ly:set-option 'old-relative) -\version "2.3.16" +%%% A full example with two staves -one = \relative c{ - c'' d e f +\header { + title = "And now, example 3" + copyright = "public domain" } -two = \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.10.0"