]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
Docs: update snippets locally
[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.4"
5
6 \header {
7   lsrtags = "simultaneous-notes"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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
26   texidoc = "
27 When using the automatic part combining feature, the printed text for
28 the solo and unison sections may be changed:
29
30 "
31   doctitle = "Changing partcombine texts"
32 } % begin verbatim
33
34 \new Staff <<
35   \set Staff.soloText = #"girl"
36   \set Staff.soloIIText = #"boy"
37   \set Staff.aDueText = #"together"
38   \partcombine
39     \relative c'' {
40       g4 g r r
41       a2 g
42     }
43     \relative c'' {
44       r4 r a( b)
45       a2 g
46     }
47 >>
48