]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/newaddlyrics-music-identifiers.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / input / regression / newaddlyrics-music-identifiers.ly
1 \version "2.19.21"
2
3 \header {
4         texidoc = "addlyrics do not need braces around their arguments,
5 in particular if the arguments are variables."
6 }
7
8 m = \relative { c'4 d }
9 l = \lyricmode { A B }
10
11 % addlyrics takes music expressions as well as music identifiers. The following
12 % two staves should produce the same output:
13 \new Staff { {\m} \addlyrics {\l} }
14 \new Staff { \m \addlyrics \l }