]> git.donarmstrong.com Git - lilypond.git/blob - input/test/hymn.ly
Changed comments.
[lilypond.git] / input / test / hymn.ly
1 \version "1.7.18"
2 %  We have other examples of partcombine.  Candidate for delete.  -gp
3 %  leave it for now; I need to check some things.
4 %{
5 Jan:
6 > Why remove this?  Do we have another hymn with part-combiner?  Maybe
7 > move to template?
8 %}
9
10 \header { texidoc = "@cindex Hymn
11 You can combine two parts on the same staff. " }
12
13 \score{
14         \context Staff <
15                 \time 4/4
16                 \context Voice=one \partcombine Voice
17                         \context Thread=one \notes\relative c'' {
18                                 a4 c4.(g8-) a4 |
19                                 g4 e' g(f-) | 
20                                 b, a c2
21                         }
22                         \context Thread=two \notes\relative c'' {
23                                 g4 e4.(d8-) c4 |
24                                 g'4 c, e(f-) |
25                                 d2 a
26                         }
27         >
28         \paper{
29                 linewidth=140.\mm
30                 \translator {
31                         \VoiceContext
32                         soloADue = ##f
33                 }
34         }
35 }
36
37 %% new-chords-done %%