]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/string-quartet-template-simple.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[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 = "unfretted-strings, template"
7
8   texidoc = "
9 This template demonstrates a simple string quartet. It also uses a
10 \\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 e1
24          
25          \bar "|." }}
26          violinTwo = \new Voice { \relative c''{
27            \set Staff.instrumentName = "Violin 2 "
28          
29            g2 f e1
30          
31          \bar "|." }}
32          viola = \new Voice { \relative c' {
33            \set Staff.instrumentName = "Viola "
34            \clef alto
35          
36            e2 d c1
37          
38          \bar "|." }}
39          cello = \new Voice { \relative c' {
40            \set Staff.instrumentName = "Cello     "
41            \clef bass
42          
43            c2 b a1
44          
45          \bar "|."}}
46          
47          \score {
48             \new StaffGroup <<
49                \new Staff << \global \violinOne >>
50                \new Staff << \global \violinTwo >>
51                \new Staff << \global \viola >>
52                \new Staff << \global \cello >>
53             >>
54             \layout { }
55             \midi { }
56          }
57