]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.0"
8
9 \header {
10   lsrtags = "automatic-notation, pitches"
11
12   texidoc = "
13 In accordance with traditional typesetting rules, a natural sign is
14 printed before a sharp or flat if a previous double sharp or flat on
15 the same note  is canceled.  To change this behavior to contemporary
16 practice, set the  @code{extraNatural} property to @code{f} in the
17 @code{Staff} context.
18
19
20
21 "
22   doctitle = "Preventing extra naturals from being automatically added"
23 } % begin verbatim
24
25 \relative c'' {
26   aeses4 aes ais a
27   \set Staff.extraNatural = ##f
28   aeses4 aes ais a
29 }