]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-commands.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / markup-commands.ly
1 \header
2 {
3
4   texidoc = "test various markup commands."
5
6 }
7 \paper { ragged-right = ##T }
8 \version "2.14.0"
9
10 \score{
11   {
12     g'_\markup {
13       \column {
14         \line {
15           foo \magnify #2 foo
16           LOWER \lower #3 LOWER
17           \large \bold { normal \normal-text normal }
18           Small-Caps \smallCaps         Small-Caps
19         }
20
21         \override #'(line-width . 50)
22         \override #'(bla . "This is a field containing text. Blah blah
23   blah.  This is a field containing text. Blah blah blah.  This is a
24   field containing text. Blah blah blah.  This is a field containing
25   text. Blah blah blah. This is a field containing text. Blah blah
26   blah.")
27         \column  {
28           justify:
29           \justify-field #'bla
30           wordwrap:
31           \wordwrap-field #'bla
32         }
33
34         draw-line: \draw-line #'(5 . 3)
35         \underline "underlined"
36       }
37     }
38   }
39
40   \layout {
41     \context {
42       \Score
43       \override PaperColumn #'keep-inside-line = ##f
44     }
45   }
46 }