]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-syntax.ly
Doc: NR add @knownissues for Percent Repeats
[lilypond.git] / input / regression / markup-syntax.ly
1 \version "2.19.22"
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       \raise #3.0 \whiteout-box white-out-box
45       \circle \dynamic p
46       \with-color #green Green
47       \dynamic sfzp
48       \huge { "A" \smaller "A" \smaller \smaller "A"
49               \smaller \smaller \smaller "A" }
50       \sub "alike"
51     }
52     c''4
53   }
54
55   \layout {
56     \context {
57       \Score
58       \override PaperColumn.keep-inside-line = ##f
59     }
60   }
61
62 }