]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote.ly
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[lilypond.git] / input / regression / quote.ly
1 \header
2 {
3
4     texidoc = "With @code{\\quote}, fragments of previously entered
5 music may be quoted. @code{quotedEventTypes} will determines what
6 things are quoted. In this example, a 16th rests is not quoted, since
7 @code{rest-event} is not in @code{quotedEventTypes}."
8
9 }
10 \version "2.3.22"
11 \layout {
12     raggedright = ##t
13 }
14
15 \addquote bla \relative c' {
16     fis4 r16  a8.-> b-\ff }
17
18 \relative c'' {
19
20     \set Staff.quotedEventTypes = #'(note-event articulation-event)
21     c8 d8  <<
22         s2 
23         \new Voice {
24             \set fontSize = #-2
25             \quote bla 2
26
27         } >>
28     es8 gis
29         
30     }
31