X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fexample-3.ly;h=85277c45a4766fc64a4e8800075e56166c3849e3;hb=dc86cab614ce7f635c40faabdccfb7a44b930246;hp=5444bb21b92ea3d072ab5b0b8edeb9fe5f0339ab;hpb=3b3e161088f1a4be942e67729d0f89f0e8d31c51;p=lilypond.git diff --git a/input/example-3.ly b/input/example-3.ly index 5444bb21b9..85277c45a4 100644 --- a/input/example-3.ly +++ b/input/example-3.ly @@ -1,31 +1,36 @@ -\version "1.3.117"; +%%% 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-mudela example with two staffs -% -% Type: -% -% ly2dvi example-3 -% xdvi example-3 # or your dvi viewer here -% -% For more elaborate examples see twinkle.ly, input/* and mutopia/*. -% -% A docmument on Mudela is under construction: Documentation/tex/mudela.doc -% (available as .ps from the website too). +<< + \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"