]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/string-quartet-template-simple.ly
Merge commit 'ce4b499'
[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.38"
4
5 \header {
6   lsrtags = "strings, template"
7  texidoc = "
8 This template demonstrates a simple string quartet. It also uses a
9 \\global section for time and key signatures
10 " }
11 % begin verbatim
12 global= {
13            \time 4/4
14            \key c \major
15          }
16          
17          violinOne = \new Voice { \relative c''{
18            \set Staff.instrumentName = "Violin 1 "
19          
20            c2 d e1
21          
22          \bar "|." }}
23          violinTwo = \new Voice { \relative c''{
24            \set Staff.instrumentName = "Violin 2 "
25          
26            g2 f e1
27          
28          \bar "|." }}
29          viola = \new Voice { \relative c' {
30            \set Staff.instrumentName = "Viola "
31            \clef alto
32          
33            e2 d c1
34          
35          \bar "|." }}
36          cello = \new Voice { \relative c' {
37            \set Staff.instrumentName = "Cello     "
38            \clef bass
39          
40            c2 b a1
41          
42          \bar "|."}}
43          
44          \score {
45             \new StaffGroup <<
46                \new Staff << \global \violinOne >>
47                \new Staff << \global \violinTwo >>
48                \new Staff << \global \viola >>
49                \new Staff << \global \cello >>
50             >>
51             \layout { }
52             \midi { }
53          }
54