]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
2ad0cf190c729130148c3b2d6b57ea4ebd172695
[lilypond.git] / input / lsr / preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.0"
4
5 \header {
6   lsrtags = "pitches"
7
8 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura"
9 texidoces = "
10 Cuando cambia la armadura de la tonalidad, se imprimen becuadros
11 automáticamente para cancelar las alteraciones de las armaduras
12 anteriores.  Esto se puede evitar estableciendo al valor \"falso\" la
13 propiedad @code{printKeyCancellation} del contexto @code{Staff}.
14
15 "
16
17 doctitlede = "Auflösungzeichen nicht setzen, wenn die Tonart wechselt"
18
19 texidocde = "
20 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
21 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
22 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
23 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
24 "
25
26   texidoc = "
27 When the key signature changes, natural signs are automatically printed
28 to cancel any accidentals from previous key signatures.  This may be
29 prevented by setting to \"false\" the @code{printKeyCancellation}
30 property in the @code{Staff} context. 
31
32 "
33   doctitle = "Preventing natural signs from being printed when the key signature changes"
34 } % begin verbatim
35
36 \relative c' {
37   \key d \major
38   a4 b cis d
39   \key g \minor
40   a4 bes c d
41   \set Staff.printKeyCancellation = ##f
42   \key d \major
43   a4 b cis d
44   \key g \minor
45   a4 bes c d
46 }