]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/string-quartet-template-simple.ly
47b553882c616f348ab3b8e7b9fc7927259e8c4f
[lilypond.git] / input / lsr / string-quartet-template-simple.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.57"
4
5 \header {
6   lsrtags = "unfretted-strings, template"
7
8   texidoc = "
9 This template demonstrates a simple string quartet. It also uses a
10 @code{\\global} section for time and key signatures
11
12 "
13   doctitle = "String quartet template (simple)"
14 } % begin verbatim
15 global= {
16   \time 4/4
17   \key c \major
18 }
19
20 violinOne = \new Voice \relative c'' {
21   \set Staff.instrumentName = #"Violin 1 "
22   
23   c2 d
24   e1
25   
26   \bar "|."
27 }
28  
29 violinTwo = \new Voice \relative c'' {
30   \set Staff.instrumentName = #"Violin 2 "
31   
32   g2 f
33   e1
34   
35   \bar "|."
36 }
37
38 viola = \new Voice \relative c' {
39   \set Staff.instrumentName = #"Viola "  
40   \clef alto
41   
42   e2 d
43   c1
44   
45   \bar "|."
46 }
47
48 cello = \new Voice \relative c' {
49   \set Staff.instrumentName = #"Cello "
50   \clef bass
51   
52   c2 b
53   a1
54   
55   \bar "|."
56 }
57
58 \score {
59   \new StaffGroup <<
60     \new Staff << \global \violinOne >>
61     \new Staff << \global \violinTwo >>
62     \new Staff << \global \viola >>
63     \new Staff << \global \cello >>
64   >>
65   \layout { }
66   \midi { }
67 }