]> git.donarmstrong.com Git - lilypond.git/blob - input/test/hymn.ly
LSR: adding new files.
[lilypond.git] / input / test / hymn.ly
1
2 \version "2.10.0"
3
4 \header { texidoc = "
5
6 You can combine two parts on the same staff using the part
7 combiner. For vocal scores (hymns), there is no need to add solo/a2
8 texts, so they should be switched off.
9
10 " }
11
12 \score{
13         \context Staff <<
14                 \time 4/4
15                 \partcombine 
16                         \relative c'' {
17                                 a4 c4.(g8) a4 |
18                                 g4 e' g(f) | 
19                                 b, a c2
20                         }
21                         \relative c'' {
22                                 g4 e4.(d8) c4 |
23                                 g'4 c, e(f) |
24                                 d2 a
25                         }
26         >>
27         \layout{
28                 line-width=140.\mm
29                 \context {
30                         \Voice
31                         printPartCombineTexts = ##f
32                 }
33         }
34 }
35
36