]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Merge master into nested-bookparts
[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.11.62"
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   texidoc = "
17 When the key signature changes, natural signs are automatically printed
18 to cancel any accidentals from previous key signatures.  This may be
19 prevented by setting to \"false\" the @code{printKeyCancellation}
20 property in the @code{Staff} context. 
21
22 "
23   doctitle = "Preventing natural signs from being printed when the key signature changes"
24 } % begin verbatim
25 \relative c' {
26   \key d \major
27   a4 b cis d
28   \key g \minor
29   a4 bes c d
30   \set Staff.printKeyCancellation = ##f
31   \key d \major
32   a4 b cis d
33   \key g \minor
34   a4 bes c d
35 }