]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-column-align.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / markup-column-align.ly
1 \version "2.14.0"
2 \header {
3
4 texidoc = "Fixed horizontal alignment of columns of text can be set using
5 \left-column, \center-column and \right-column.
6 "
7
8 }
9
10 \markup {
11   \line {
12     \left-column {
13       one
14       two
15       three
16     }
17     \hspace #4
18     \center-column {
19       one
20       \left-align
21       two
22       three
23     }
24     \hspace #6
25     \right-column {
26       one
27       two
28       three
29     }
30   }
31 }