]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-partcombine-texts.ly
Doc: LSR update.
[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: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20   texidocde = "
21 Wenn Stimmen automatisch kombiniert werden, kann der Text, der für
22 Solo- und Unisono-Stellen ausgegeben wird, geändert werden:
23
24 "
25   doctitlede = "Partcombine-Text ändern"
26
27 %% Translation of GIT committish: c39256c433c9e0d80429fb768cde5834541524f8
28   texidocfr = "
29 Lorsque vous regroupez automatiquement des parties, vous pouvez
30 modifier le texte qui sera affiché pour les solos et pour les parties à
31 l'unisson :
32
33 "
34   doctitlefr = "Modification des indications de parties combinées"
35
36
37   texidoc = "
38 When using the automatic part combining feature, the printed text for
39 the solo and unison sections may be changed:
40
41 "
42   doctitle = "Changing partcombine texts"
43 } % begin verbatim
44
45 \new Staff <<
46   \set Staff.soloText = #"girl"
47   \set Staff.soloIIText = #"boy"
48   \set Staff.aDueText = #"together"
49   \partcombine
50     \relative c'' {
51       g4 g r r
52       a2 g
53     }
54     \relative c'' {
55       r4 r a( b)
56       a2 g
57     }
58 >>
59