]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
8b9d2b937be7164eaf3f9707b69040e9f6a7c086
[lilypond.git] / Documentation / snippets / preventing-natural-signs-from-being-printed-when-the-key-signature-changes.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 = "pitches"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura"
11
12 texidoces = "
13
14 Cuando cambia la armadura de la tonalidad, se imprimen becuadros
15 automáticamente para cancelar las alteraciones de las armaduras
16 anteriores.  Esto se puede evitar estableciendo al valor @qq{falso} la
17 propiedad @code{printKeyCancellation} del contexto @code{Staff}.
18
19 "
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 doctitlede = "Auflösungzeichen nicht setzen wenn die Tonart wechselt"
23
24 texidocde = "
25 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
26 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
27 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
28 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
29 "
30 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
31   texidocfr = "
32 Après un changement de tonalité, un bécarre est imprimé pour annuler
33 toute altération précédente.  Ceci peut être supprimé en réglant à
34 @code{\"false\"} la propriété @code{printKeyCancellation} du contexte
35 @code{Staff}. 
36
37 "
38
39   doctitlefr = "Suppression des bécarres superflus après un changement de
40 tonalité"
41
42   texidoc = "
43 When the key signature changes, natural signs are automatically printed
44 to cancel any accidentals from previous key signatures.  This may be
45 prevented by setting to @code{f} the @code{printKeyCancellation}
46 property in the @code{Staff} context.
47
48 "
49   doctitle = "Preventing natural signs from being printed when the key signature changes"
50 } % begin verbatim
51
52 \relative c' {
53   \key d \major
54   a4 b cis d
55   \key g \minor
56   a4 bes c d
57   \set Staff.printKeyCancellation = ##f
58   \key d \major
59   a4 b cis d
60   \key g \minor
61   a4 bes c d
62 }
63