]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/cue-clef.ly
resolve merge
[lilypond.git] / input / regression / cue-clef.ly
diff --git a/input/regression/cue-clef.ly b/input/regression/cue-clef.ly
new file mode 100644 (file)
index 0000000..1b5ee62
--- /dev/null
@@ -0,0 +1,25 @@
+\version "2.14.0"
+
+\header {
+  texidoc = "Clefs for cue notes: Print a cue clef at the begin of the cue
+notes and a cancelling clef after the cue notes."
+}
+
+vI = \relative c'' { \clef "treble" \repeat unfold 16 g4 }
+\addQuote vIQuote { \vI }
+
+Solo = \relative c {
+  \clef "bass"
+  c4 \cueDuringWithClef #"vIQuote" #DOWN #"treble" {
+    r4 r2 |
+    r4
+  } c4 c2 |
+  \cueDuringWithClef #"vIQuote" #DOWN "soprano" { R1*2 } |
+  c1
+}
+
+\score {
+  <<
+    \new Staff \new Voice \Solo
+  >>
+}