]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
LSR: Update.
[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   texidoc = "
31 When the key signature changes, natural signs are automatically printed
32 to cancel any accidentals from previous key signatures.  This may be
33 prevented by setting to @code{f} the @code{printKeyCancellation}
34 property in the @code{Staff} context.
35
36 "
37   doctitle = "Preventing natural signs from being printed when the key signature changes"
38 } % begin verbatim
39
40 \relative c' {
41   \key d \major
42   a4 b cis d
43   \key g \minor
44   a4 bes c d
45   \set Staff.printKeyCancellation = ##f
46   \key d \major
47   a4 b cis d
48   \key g \minor
49   a4 bes c d
50 }
51