]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
Allow open strings in chords regardless of finger positions
[lilypond.git] / Documentation / snippets / preventing-extra-naturals-from-being-automatically-added.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "pitches"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13 doctitlees = "Evitar que se añadan becuadros adicionales automáticamente"
14
15 texidoces = "
16 Según las reglas estándar de composición
17 tipográfica, se imprime un becuadro antes de un sostenido o un
18 bemol cuando se tiene que cancelar una alteración anterior en la
19 misma nota.  Para modificar este comportamiento, establezca el
20 valor de la propiedad @code{extraNatural} a @code{##f} (falso)
21 dentro del contexto de @code{Staff}.
22
23 "
24
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
27   doctitlede = "Verhindern, dass zusätzliche Auflösungszeichen automatisch
28 hinzugefügt werden"
29
30 texidocde = "Den traditionellen Notensatzregeln zufolge wird ein
31 Auflösungszeichen immer dann vor einem Kreuz oder B gesetzt, wenn
32 ein vorheriges Versetzungszeichen der gleichen Note aufgehoben werden
33 soll.  Um dieses Verhalten zu ändern, muss die Eigenschaft
34 @code{extraNatural} im @code{Staff}-Kontext auf \"false\" gesetzt werden.
35 "
36
37 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
38   texidocfr = "
39 En accord avec les règles standards de l'écriture musicale, on grave
40 un bécarre avant un dièse ou un bémol si on a besoin d'annuler une
41 altération précédente.  Pour modifier ce comportement, assignez la propriété
42 @code{extraNatural} du contexte @code{Staff} à la valeur @code{##f} (faux).
43 "
44
45   doctitlefr = "Suppression des bécarres superflus"
46
47   texidoc = "
48 In accordance with standard typesetting rules, a natural sign is
49 printed before a sharp or flat if a previous accidental on the same
50 note needs to be canceled.  To change this behavior, set the
51 @code{extraNatural} property to @code{f} in the @code{Staff} context.
52
53
54
55 "
56   doctitle = "Preventing extra naturals from being automatically added"
57 } % begin verbatim
58
59 \relative c'' {
60   aeses4 aes ais a
61   \set Staff.extraNatural = ##f
62   aeses4 aes ais a
63 }
64