]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/lyrics-spacing.ly
623016d37b5f118c81a01080f01c52c7a6d3b529
[lilypond.git] / input / bugs / lyrics-spacing.ly
1 \include "norsk.ly"
2
3 \header {
4 texidoc ="``baz'' should be centered on the a (tenor voice), but it is
5 not."
6 }
7
8 \version "1.3.148"
9
10 sop = \notes \transpose c''  {e2 e fis1 }
11 alt = \notes \relative c' {cis2 e e d }
12 ten = \notes \relative c' {a2 a a1 }
13 txt = \lyrics {foo2 bar baz jazz }
14
15 \score {
16     <
17         \context Staff = up \notes <
18             \context Voice=sopv {\stemUp \sop}
19             \context Voice=altv {\stemDown \alt}
20         >
21         \context Staff = down \notes < \clef "F"
22             \context Voice=tenv {\stemUp \ten}
23         >
24         \context Lyrics = la { \txt }
25     >
26     \paper { linewidth = -1 }
27 }