]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef-begin-of-score.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / cue-clef-begin-of-score.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Clefs for cue notes at the start of a score should print the
5 standard clef plus a small cue clef after the time/key signature."
6 }
7
8 vI = \relative c'' { \clef "treble" \repeat unfold 40 g4 }
9 \addQuote vIQuote { \vI }
10
11 Solo = \relative c'' {
12   \clef "bass"
13   \cueDuringWithClef #"vIQuote" #DOWN #"treble" { r2 } d,,4 d4 |
14 }
15
16 \score {
17   <<
18     \new Staff \new Voice \Solo
19   >>
20 }