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