]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Web: merge contributors from THANKS and AUTHORS, thanks James!
[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.4"
5
6 \header {
7   lsrtags = "pitches"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura"
11 texidoces = "
12 Cuando cambia la armadura de la tonalidad, se imprimen becuadros
13 automáticamente para cancelar las alteraciones de las armaduras
14 anteriores.  Esto se puede evitar estableciendo al valor \"falso\" la
15 propiedad @code{printKeyCancellation} del contexto @code{Staff}.
16
17 "
18
19
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21 doctitlede = "Auflösungzeichen nicht setzen wenn die Tonart wechselt"
22
23 texidocde = "
24 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
25 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
26 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
27 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
28 "
29
30 %% Translation of GIT committish: 59968a089729d7400f8ece38d5bc98dbb3656a2b
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