]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / changing-partcombine-texts.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "simultaneous-notes"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Al utilizar la posibilidad de combinación automática de partes, se
15 puede modificar el texto que se imprime para las secciones de solo
16 y de unísono:
17
18 "
19   doctitlees = "Cambiar los textos de partcombine"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Wenn Stimmen automatisch kombiniert werden, kann der Text, der für
25 Solo- und Unisono-Stellen ausgegeben wird, geändert werden:
26
27 "
28   doctitlede = "Partcombine-Text ändern"
29
30 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
31   texidocfr = "
32 Lorsque vous regroupez automatiquement des parties, vous pouvez
33 modifier le texte qui sera affiché pour les solos et pour les parties à
34 l'unisson@tie{}:
35
36 "
37   doctitlefr = "Modification des indications de parties combinées"
38
39
40   texidoc = "
41 When using the automatic part combining feature, the printed text for
42 the solo and unison sections may be changed:
43
44 "
45   doctitle = "Changing partcombine texts"
46 } % begin verbatim
47
48
49 \new Staff <<
50   \set Staff.soloText = #"girl"
51   \set Staff.soloIIText = #"boy"
52   \set Staff.aDueText = #"together"
53   \partcombine
54     \relative c'' {
55       g4 g r r
56       a2 g
57     }
58     \relative c'' {
59       r4 r a( b)
60       a2 g
61     }
62 >>
63