]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-partcombine-texts.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / lsr / changing-partcombine-texts.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.0"
4
5 \header {
6   lsrtags = "simultaneous-notes"
7
8   texidoces = "
9 Al utilizar la posibilidad de combinación automática de partes, se
10 puede modificar el texto que se imprime para las secciones de solo
11 y de unísono:
12
13 "
14   doctitlees = "Cambiar los textos de partcombine"
15
16   texidoc = "
17 When using the automatic part combining feature, the printed text for
18 the solo and unison sections may be changed:
19
20 "
21   doctitle = "Changing partcombine texts"
22 } % begin verbatim
23
24 \new Staff <<
25   \set Staff.soloText = #"girl"
26   \set Staff.soloIIText = #"boy"
27   \set Staff.aDueText = #"together"
28   \partcombine
29     \relative c'' {
30       g4 g r r
31       a2 g
32     }
33     \relative c'' {
34       r4 r a( b)
35       a2 g
36     }
37 >>