]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/new-markup-syntax.ly
* input/test/spanner-after-break-tweak.ly: import
[lilypond.git] / input / regression / new-markup-syntax.ly
1 \header  {
2 texidoc = "New markup syntax."
3 }
4
5 \version "1.7.18"
6
7
8 \score {
9   \notes
10    {
11     \property Voice.TextScript \set #'molecule-callback = #brew-new-markup-molecule
12     f'-\markup {
13                 foo
14                 \raise #0.2 \hbracket \bold bar
15                 \override #'(baseline-skip . 4)
16
17                 \bracket \column << baz bazr bla >>
18                 \hspace #2.0
19                 \override #'(font-family . music) {
20                         \lookup #"noteheads-0"
21                         \char #53
22                 }
23                 \musicglyph #"accidentals--1"
24                 \combine "X" "+"   
25                 \combine "o" "/"
26
27                 \box \column << { "string 1" } { "string 2" } >>
28                 "$\\emptyset$"
29                 \italic Norsk
30                 \super "2"
31                 \dynamic sfzp
32                 \huge { "A" \smaller "A" \smaller \smaller "A"
33                         \smaller \smaller \smaller "A" }
34                 \sub "alike"
35         }       
36     c''4
37     }
38 }