diff options
Diffstat (limited to 'input')
-rw-r--r-- | input/regression/note-head-aiken.ly | 15 | ||||
-rw-r--r-- | input/regression/note-head-sacred-harp.ly | 15 | ||||
-rw-r--r-- | input/regression/note-head-shape-minor.ly | 18 | ||||
-rw-r--r-- | input/regression/note-head-solfa.ly | 2 | ||||
-rw-r--r-- | input/regression/note-head-southern-harmony.ly | 15 |
5 files changed, 64 insertions, 1 deletions
diff --git a/input/regression/note-head-aiken.ly b/input/regression/note-head-aiken.ly new file mode 100644 index 0000000000..30134ffa46 --- /dev/null +++ b/input/regression/note-head-aiken.ly @@ -0,0 +1,15 @@ +\header { + + texidoc = "Notes can be set in the Aiken (Christian Harmony) style." + +} +\version "2.12.0" + +\relative c' { + \key c \major + \aikenHeads + c1 d e f g a b c d e f g a b c + c,,2 d e f g a b c d e f g a b c + c,,4 d e f g a b c d e f g a b c +} + diff --git a/input/regression/note-head-sacred-harp.ly b/input/regression/note-head-sacred-harp.ly new file mode 100644 index 0000000000..fdd2eb108f --- /dev/null +++ b/input/regression/note-head-sacred-harp.ly @@ -0,0 +1,15 @@ +\header { + + texidoc = "Notes can be set in the Sacred Harp style." + +} +\version "2.12.0" + +\relative c' { + \key c \major + \sacredHarpHeads + c1 d e f g a b c d e f g a b c + c,,2 d e f g a b c d e f g a b c + c,,4 d e f g a b c d e f g a b c +} + diff --git a/input/regression/note-head-shape-minor.ly b/input/regression/note-head-shape-minor.ly new file mode 100644 index 0000000000..d7356d3e82 --- /dev/null +++ b/input/regression/note-head-shape-minor.ly @@ -0,0 +1,18 @@ +\header { + + texidoc = "Shape notes can be set to work properly in minor keys." + +} +\version "2.12.0" + +\relative c' { + \key c \major + \sacredHarpHeads + c2^"C major" d | e f | g a | b c | + \key a \minor + \sacredHarpHeadsMinor + a2^"A minor" b | c d | e f | g a | + \sacredHarpHeads + c,,2^"A minor with major heads" d | e f | g a | b c | +} + diff --git a/input/regression/note-head-solfa.ly b/input/regression/note-head-solfa.ly index b4d24ca852..d6b163dfcb 100644 --- a/input/regression/note-head-solfa.ly +++ b/input/regression/note-head-solfa.ly @@ -9,7 +9,7 @@ to the @code{tonic} property." fragment = { \key c \major - \set shapeNoteStyles = #'#(do re mi fa #f la ti) + \set shapeNoteStyles = #'#(do re mi fa sol la ti) c1 d e f g a b c d e f g a b c c,,2 d e f g a b c d e f g a b c c,,4 d e f g a b c d e f g a b c diff --git a/input/regression/note-head-southern-harmony.ly b/input/regression/note-head-southern-harmony.ly new file mode 100644 index 0000000000..3e20a018bc --- /dev/null +++ b/input/regression/note-head-southern-harmony.ly @@ -0,0 +1,15 @@ +\header { + + texidoc = "Notes can be set in the Southern Harmony style." + +} +\version "2.12.0" + +\relative c' { + \key c \major + \southernHarmonyHeads + c1 d e f g a b c d e f g a b c + c,,2 d e f g a b c d e f g a b c + c,,4 d e f g a b c d e f g a b c +} + |