]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-tweak.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / input / regression / lyric-tweak.ly
1 \header
2 {
3   texidoc = "The @code{\\tweak} function can be used in Lyrics.  Where
4 confusion of lyric words with grob names is possible, explicit use of
5 @code{\\markup} can be used for resolving the ambiguity."
6 }
7
8 \version "2.17.6"
9 \paper {
10   ragged-right = ##t
11 }
12
13 \new Lyrics \lyricmode
14 {
15   \markup \raise #1 \rotate #30 One 4
16   \tweak extra-offset #'(0 . 2) \markup fish,
17   \markup \raise #1 \rotate #-30 two fish,
18   \tweak color #red \markup red fish,
19   \tweak color #blue \markup blue fish.
20 }