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