]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
Doc: update snippet committishes.
[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.10"
5
6 \header {
7   lsrtags = "simultaneous-notes"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Wenn Stimmen automatisch kombiniert werden, kann der Text, der für
21 Solo- und Unisono-Stellen ausgegeben wird, geändert werden:
22
23 "
24   doctitlede = "Partcombine-Text ändern"
25 %% Translation of GIT committish: c39256c433c9e0d80429fb768cde5834541524f8
26   texidocfr = "
27 Lorsque vous regroupez automatiquement des parties, vous pouvez
28 modifier le texte qui sera affiché pour les solos et pour les parties à
29 l'unisson :
30
31 "
32   doctitlefr = "Modification des indications de parties combinées"
33
34
35   texidoc = "
36 When using the automatic part combining feature, the printed text for
37 the solo and unison sections may be changed:
38
39 "
40   doctitle = "Changing partcombine texts"
41 } % begin verbatim
42
43 \new Staff <<
44   \set Staff.soloText = #"girl"
45   \set Staff.soloIIText = #"boy"
46   \set Staff.aDueText = #"together"
47   \partcombine
48     \relative c'' {
49       g4 g r r
50       a2 g
51     }
52     \relative c'' {
53       r4 r a( b)
54       a2 g
55     }
56 >>
57