]> git.donarmstrong.com Git - lilypond.git/blob - input/example-3.ly
Merge master into nested-bookparts
[lilypond.git] / input / example-3.ly
1 %%% A full example with two staves
2
3 \header {
4   title = "And now, example 3"
5   copyright = "public domain"
6 }
7
8 one = \relative {
9   c' d e f
10 }
11
12 two = \relative {
13   \clef "bass"
14   c2 g2
15 }
16
17 <<
18   \new Staff \one
19   \new Staff \two
20 >>
21
22 %{
23 Type
24
25     lilypond example-3
26     xpdf example-3     # or your PDF viewer here
27
28 For learning LilyPond, please read the tutorial
29
30    http://lilypond.org/tutorial
31
32 also included in the user-manual.
33 %}
34
35 %% Optional version number
36 \version "2.11.61"