]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-syntax.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / markup-syntax.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Demo of markup texts, using LilyPond syntax."
5 }
6
7 \score {
8   {
9     f'1-\markup {
10       foo
11       \raise #0.2 \hbracket \bold bar
12
13       \override #'(baseline-skip . 4)
14       \bracket \column {
15         baz
16         bazr
17         bla
18       }
19       \hspace #2.0
20       \override #'(font-encoding . fetaMusic) {
21         \lookup #"noteheads-0"
22       }
23       \semiflat
24       { }
25       \combine "X" "+"
26       \combine "o" "/"
27     }
28     g'1-\markup {
29                                   %             \char-number #"abc1234abc"
30       \box \column {
31         \line { "string 1" }
32         \line { "string 2" }
33         \concat { "f" "i" }
34       }
35       " "
36       \draw-circle #1 #0.3 ##f
37       " "
38       \draw-circle #1 #0.3 ##t
39       " "
40       \italic Norsk
41       \super "2"
42       " "
43       \raise #3.0 \whiteout white-out
44       \circle \dynamic p
45       \with-color #green Green
46       \dynamic sfzp
47       \huge { "A" \smaller "A" \smaller \smaller "A"
48               \smaller \smaller \smaller "A" }
49       \sub "alike"
50     }
51     c''4
52   }
53
54   \layout {
55     \context {
56       \Score
57       \override PaperColumn #'keep-inside-line = ##f
58     }
59   }
60
61 }