]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
LSR: Update.
[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
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Isolierter Text kann in mehreren Spalten mit @code{\\markup}-Befehlen
21 angeordnet werden:
22
23 "
24   doctitlede = "Isolierter Text in zwei Spalten"
25
26   texidoc = "
27 Stand-alone text may be arranged in several columns using
28 @code{\\markup} commands:
29
30 "
31   doctitle = "Stand-alone two-column markup"
32 } % begin verbatim
33
34 \markup {
35   \fill-line {
36     \hspace #1
37     \column {
38       \line { O sacrum convivium }
39       \line { in quo Christus sumitur, }
40       \line { recolitur memoria passionis ejus, }
41       \line { mens impletur gratia, }
42       \line { futurae gloriae nobis pignus datur. }
43       \line { Amen. }
44     }
45     \hspace #2
46     \column {
47       \line { \italic { O sacred feast } }
48       \line { \italic { in which Christ is received, } }
49       \line { \italic { the memory of His Passion is renewed, } }
50       \line { \italic { the mind is filled with grace, } }
51       \line { \italic { and a pledge of future glory is given to us. } }
52       \line { \italic { Amen. } }
53     }
54     \hspace #1
55   }
56 }