]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.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 \markup {
21   \fill-line {
22     \hspace #1
23     \column {
24       \line { O sacrum convivium }
25       \line { in quo Christus sumitur, }
26       \line { recolitur memoria passionis ejus, }
27       \line { mens impletur gratia, }
28       \line { futurae gloriae nobis pignus datur. }
29       \line { Amen. }
30     }
31     \hspace #2
32     \column \italic {
33       \line { O sacred feast }
34       \line { in which Christ is received, }
35       \line { the memory of His Passion is renewed, }
36       \line { the mind is filled with grace, }
37       \line { and a pledge of future glory is given to us. }
38       \line { Amen. }
39     }
40     \hspace #1
41   }
42 }