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