]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
2ada51b72b8383fc79f4634c5b5487a7bd3294e4
[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.14.2"
8
9 \header {
10   lsrtags = "text"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Los textos independientes se pueden disponer en varias columnas
15 utilizando instrucciones @code{\\markup}:
16
17 "
18   doctitlees = "Elemento de marcado de texto independiente en dos columnas"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Isolierter Text kann in mehreren Spalten mit @code{\\markup}-Befehlen
24 angeordnet werden:
25
26 "
27   doctitlede = "Isolierter Text in zwei Spalten"
28
29 %% Translation of GIT committish: 548ef200973bd3d46ea75c5498461d9e5f168334
30   texidocfr = "
31 L'utilisation de la commande @code{\\markup} permet de distribuer un bloc
32 de texte indépendant sur plusieurs colonnes.
33
34 "
35   doctitlefr = "Bloc de texte indépendant sur deux colonnes"
36
37
38   texidoc = "
39 Stand-alone text may be arranged in several columns using
40 @code{\\markup} commands:
41
42 "
43   doctitle = "Stand-alone two-column markup"
44 } % begin verbatim
45
46
47 \markup {
48   \fill-line {
49     \hspace #1
50     \column {
51       \line { O sacrum convivium }
52       \line { in quo Christus sumitur, }
53       \line { recolitur memoria passionis ejus, }
54       \line { mens impletur gratia, }
55       \line { futurae gloriae nobis pignus datur. }
56       \line { Amen. }
57     }
58     \hspace #2
59     \column {
60       \line { \italic { O sacred feast } }
61       \line { \italic { in which Christ is received, } }
62       \line { \italic { the memory of His Passion is renewed, } }
63       \line { \italic { the mind is filled with grace, } }
64       \line { \italic { and a pledge of future glory is given to us. } }
65       \line { \italic { Amen. } }
66     }
67     \hspace #1
68   }
69 }