]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stand-alone-two-column-markup.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "text"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 548ef200973bd3d46ea75c5498461d9e5f168334
25   texidocfr = "
26 L'utilisation de la commande @code{\\markup} permet de distribuer un bloc
27 de texte indépendant sur plusieurs colonnes.
28
29 "
30   doctitlefr = "Bloc de texte indépendant sur deux colonnes"
31
32
33   texidoc = "
34 Stand-alone text may be arranged in several columns using
35 @code{\\markup} commands:
36
37 "
38   doctitle = "Stand-alone two-column markup"
39 } % begin verbatim
40
41 \markup {
42   \fill-line {
43     \hspace #1
44     \column {
45       \line { O sacrum convivium }
46       \line { in quo Christus sumitur, }
47       \line { recolitur memoria passionis ejus, }
48       \line { mens impletur gratia, }
49       \line { futurae gloriae nobis pignus datur. }
50       \line { Amen. }
51     }
52     \hspace #2
53     \column {
54       \line { \italic { O sacred feast } }
55       \line { \italic { in which Christ is received, } }
56       \line { \italic { the memory of His Passion is renewed, } }
57       \line { \italic { the mind is filled with grace, } }
58       \line { \italic { and a pledge of future glory is given to us. } }
59       \line { \italic { Amen. } }
60     }
61     \hspace #1
62   }
63 }