]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
LSR: Update.
[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
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 \relative c' {
36   \key d \major
37   a4 b cis d
38   \key g \minor
39   a4 bes c d
40   \set Staff.printKeyCancellation = ##f
41   \key d \major
42   a4 b cis d
43   \key g \minor
44   a4 bes c d
45 }