]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/text/rotating-a-text-object.ly
LSR: add more files, and remove unnecessary input/test/ files.
[lilypond.git] / input / lsr / text / rotating-a-text-object.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 LilyPond gives you the ability to rotate any object you want,
6 particularly markups as showed here. Alternatively, you can use the
7 \column function to display your text vertically without rotating the
8 letters.
9 " }
10
11 \score {
12    \relative c' {
13        c4^\markup {\rotate #45.0 {"hello"}}
14        c4^\markup {\rotate #90.0 {"hello"}}
15        c4^\markup {\column {"h" "e" "l" "l" "o"}}
16    }
17  }