]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyrics-extender.ly
* lily/my-lily-lexer.cc: add \accacciatura and \appoggiatura
[lilypond.git] / input / regression / lyrics-extender.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.2"
3 \header{
4     texidoc =
5
6     "Extenders that end a staff should not extend past the staff.
7 Also shown: a trick to get an extender at the end of the staff.
8 "
9
10 }
11
12 sopran = \notes \relative c'' {
13 \time 3/4 a2.( | \break
14  g2) < g4 { s8 s8 } > |
15 }
16
17 text = \lyrics {
18 vielt __ Zeit. __ " " 
19 }
20
21 \score {
22 <
23 \addlyrics
24   \context Staff \sopran
25   \context Lyrics \text
26 >
27 \paper { linewidth = 5.0\cm
28 }
29 }
30