]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
1690e6fde41c2c141a5ffc3e21ea7864d8fd294d
[lilypond.git] / Documentation / snippets / changing-partcombine-texts.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 = "simultaneous-notes"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Al utilizar la posibilidad de combinación automática de partes, se
12 puede modificar el texto que se imprime para las secciones de solo
13 y de unísono:
14
15 "
16   doctitlees = "Cambiar los textos de partcombine"
17
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Wenn Stimmen automatisch kombiniert werden, kann der Text, der für
22 Solo- und Unisono-Stellen ausgegeben wird, geändert werden:
23
24 "
25   doctitlede = "Partcombine-Text ändern"
26
27 %% Translation of GIT committish: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c
28   texidocfr = "
29 Lorsque vous regroupez automatiquement des parties, vous pouvez
30 modifier le texte qui sera affiché pour les solos et pour les parties à
31 l'unisson :
32
33 "
34   doctitlefr = "Modification des indications de parties combinées"
35
36
37   texidoc = "
38 When using the automatic part combining feature, the printed text for
39 the solo and unison sections may be changed:
40
41 "
42   doctitle = "Changing partcombine texts"
43 } % begin verbatim
44
45 \new Staff <<
46   \set Staff.soloText = #"girl"
47   \set Staff.soloIIText = #"boy"
48   \set Staff.aDueText = #"together"
49   \partcombine
50     \relative c'' {
51       g4 g r r
52       a2 g
53     }
54     \relative c'' {
55       r4 r a( b)
56       a2 g
57     }
58 >>
59