From: Graham Percival Date: Sat, 1 Dec 2007 04:39:24 +0000 (-0800) Subject: LSR: new files. X-Git-Tag: release/2.11.36-1~48 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5725a0b1680f5932651e991dd0103ef78046be32;p=lilypond.git LSR: new files. --- diff --git a/input/lsr/pitches/preventing-extra-naturals-from-being-automatically-added.ly b/input/lsr/pitches/preventing-extra-naturals-from-being-automatically-added.ly new file mode 100644 index 0000000000..6c166a224e --- /dev/null +++ b/input/lsr/pitches/preventing-extra-naturals-from-being-automatically-added.ly @@ -0,0 +1,15 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +In accordance with standard typesetting rules, a natural sign is +printed before a sharp or flat if a previous accidental on the same +note needs to be canceled. To change this behavior, set the +extraNatural property to \"false\" in the Staff context. +" } + +{ +aeses4 aes ais a +\set Staff.extraNatural = ##f +aeses4 aes ais a +} diff --git a/input/lsr/pitches/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly b/input/lsr/pitches/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly new file mode 100644 index 0000000000..784599bade --- /dev/null +++ b/input/lsr/pitches/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly @@ -0,0 +1,21 @@ +%% Do not edit this file; it is auto-generated from LSR! +\version "2.10.12" + +\header { texidoc = " +When the key signature changes, natural signs are automatically printed +to cancel any accidentals from previous key signatures. This may be +altered by setting to \"false\" the printKeyCancellation property in +the Staff context. +" } + +{ +\key d \major +a b cis d +\key g \minor +a bes c d +\set Staff.printKeyCancellation = ##f +\key d \major +a b cis d +\key g \minor +a bes c d +}