]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
Merge commit 'origin/master'
[lilypond.git] / Documentation / snippets / stand-alone-two-column-markup.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "text"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Los textos independientes se pueden disponer en varias columnas
12 utilizando instrucciones @code{\\markup}:
13
14 "
15   doctitlees = "Elemento de marcado de texto independiente en dos columnas"
16
17 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18   texidocde = "
19 Isolierter Text kann in mehreren Spalten mit @code{\\markup}-Befehlen
20 angeordnet werden:
21
22 "
23   doctitlede = "Isolierter Text in zwei Spalten"
24
25   texidoc = "
26 Stand-alone text may be arranged in several columns using
27 @code{\\markup} commands:
28
29 "
30   doctitle = "Stand-alone two-column markup"
31 } % begin verbatim
32
33 \markup {
34   \fill-line {
35     \hspace #1
36     \column {
37       \line { O sacrum convivium }
38       \line { in quo Christus sumitur, }
39       \line { recolitur memoria passionis ejus, }
40       \line { mens impletur gratia, }
41       \line { futurae gloriae nobis pignus datur. }
42       \line { Amen. }
43     }
44     \hspace #2
45     \column {
46       \line { \italic { O sacred feast } }
47       \line { \italic { in which Christ is received, } }
48       \line { \italic { the memory of His Passion is renewed, } }
49       \line { \italic { the mind is filled with grace, } }
50       \line { \italic { and a pledge of future glory is given to us. } }
51       \line { \italic { Amen. } }
52     }
53     \hspace #1
54   }
55 }