Markup command name changes.
[lilypond.git] / input / lsr / string-quartet-template-simple.ly
blob47b553882c616f348ab3b8e7b9fc7927259e8c4f
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"
5 \header {
6 lsrtags = "unfretted-strings, template"
8 texidoc = "
9 This template demonstrates a simple string quartet. It also uses a
10 @code{\\global} section for time and key signatures
13 doctitle = "String quartet template (simple)"
14 } % begin verbatim
15 global= {
16 \time 4/4
17 \key c \major
20 violinOne = \new Voice \relative c'' {
21 \set Staff.instrumentName = #"Violin 1 "
23 c2 d
26 \bar "|."
29 violinTwo = \new Voice \relative c'' {
30 \set Staff.instrumentName = #"Violin 2 "
32 g2 f
35 \bar "|."
38 viola = \new Voice \relative c' {
39 \set Staff.instrumentName = #"Viola "
40 \clef alto
42 e2 d
45 \bar "|."
48 cello = \new Voice \relative c' {
49 \set Staff.instrumentName = #"Cello "
50 \clef bass
52 c2 b
55 \bar "|."
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 >>
65 \layout { }
66 \midi { }