]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / stand-alone-two-column-markup.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "text"
11
12   texidoc = "
13 Stand-alone text may be arranged in several columns using
14 @code{\\markup} commands:
15
16 "
17   doctitle = "Stand-alone two-column markup"
18 } % begin verbatim
19
20
21 \markup {
22   \fill-line {
23     \hspace #1
24     \column {
25       \line { O sacrum convivium }
26       \line { in quo Christus sumitur, }
27       \line { recolitur memoria passionis ejus, }
28       \line { mens impletur gratia, }
29       \line { futurae gloriae nobis pignus datur. }
30       \line { Amen. }
31     }
32     \hspace #2
33     \column {
34       \line { \italic { O sacred feast } }
35       \line { \italic { in which Christ is received, } }
36       \line { \italic { the memory of His Passion is renewed, } }
37       \line { \italic { the mind is filled with grace, } }
38       \line { \italic { and a pledge of future glory is given to us. } }
39       \line { \italic { Amen. } }
40     }
41     \hspace #1
42   }
43 }