]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "simultaneous-notes"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c
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