]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-partcombine-texts.ly
Merge master into nested-bookparts
[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.11.62"
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 \new Staff <<
24   \set Staff.soloText = #"girl"
25   \set Staff.soloIIText = #"boy"
26   \set Staff.aDueText = #"together"
27   \partcombine
28     \relative c'' {
29       g4 g r r
30       a2 g
31     }
32     \relative c'' {
33       r4 r a( b)
34       a2 g
35     }
36 >>