From 5725a0b1680f5932651e991dd0103ef78046be32 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Fri, 30 Nov 2007 20:39:24 -0800 Subject: [PATCH] LSR: new files. --- ...naturals-from-being-automatically-added.ly | 15 +++++++++++++ ...-printed-when-the-key-signature-changes.ly | 21 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 input/lsr/pitches/preventing-extra-naturals-from-being-automatically-added.ly create mode 100644 input/lsr/pitches/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly 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 +} -- 2.39.5