]> git.donarmstrong.com Git - lilypond.git/blob - input/test/text-rotate.ly
*** empty log message ***
[lilypond.git] / input / test / text-rotate.ly
1 \header {
2     latexpackages = "graphicx"
3     
4     texidoc = "
5 @cindex rotated text
6 @cindex choir, rotated text
7
8 Inline TeX (or PostScript) may be used, for example, to rotate text.
9 To see the result, use the @code{lilypond.py} script to generate the 
10 output for printing of the source of this example (commenting one line).
11
12 "
13
14     %% fixme.
15     
16
17     }
18
19 \version "2.2.0"
20
21 \score {
22 \new Staff \notes \relative c'' {
23     \set Staff.instrument = #"rotatebox{90}{Chor}"
24
25 %%  uncomment this for rotation
26 %    \set Staff.instrument = #"\\rotatebox{90}{Chor}"
27
28     c4 c4 }
29
30 \paper { raggedright = ##t }
31 }
32
33