]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
af996a812d96f13e93f67bd35c653c052b30c049
[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.12.2"
8
9 \header {
10   lsrtags = "text"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \markup {
47   \fill-line {
48     \hspace #1
49     \column {
50       \line { O sacrum convivium }
51       \line { in quo Christus sumitur, }
52       \line { recolitur memoria passionis ejus, }
53       \line { mens impletur gratia, }
54       \line { futurae gloriae nobis pignus datur. }
55       \line { Amen. }
56     }
57     \hspace #2
58     \column {
59       \line { \italic { O sacred feast } }
60       \line { \italic { in which Christ is received, } }
61       \line { \italic { the memory of His Passion is renewed, } }
62       \line { \italic { the mind is filled with grace, } }
63       \line { \italic { and a pledge of future glory is given to us. } }
64       \line { \italic { Amen. } }
65     }
66     \hspace #1
67   }
68 }