]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "simultaneous-notes"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c
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 :
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 \new Staff <<
49   \set Staff.soloText = #"girl"
50   \set Staff.soloIIText = #"boy"
51   \set Staff.aDueText = #"together"
52   \partcombine
53     \relative c'' {
54       g4 g r r
55       a2 g
56     }
57     \relative c'' {
58       r4 r a( b)
59       a2 g
60     }
61 >>
62