String quartet template (simple): Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 1: | Line 1: | ||
This template demonstrates a simple string quartet. It also uses a <code>\global</code> section for time and key signatures | This template demonstrates a simple string quartet. It also uses a <code>\global</code> section for time and key signatures | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
global= { | global= { | ||
\time 4/4 | \time 4/4 | ||
Revision as of 18:53, 16 November 2025
This template demonstrates a simple string quartet. It also uses a \global section for time and key signatures
\version "2.24"
global= {
\time 4/4
\key c \major
}
violinOne = \new Voice \relative c'' {
c2 d
e1
\bar "|."
}
violinTwo = \new Voice \relative c'' {
g2 f
e1
\bar "|."
}
viola = \new Voice \relative c' {
\clef alto
e2 d
c1
\bar "|."
}
cello = \new Voice \relative c' {
\clef bass
c2 b
a1
\bar "|."
}
\score {
\new StaffGroup <<
\new Staff \with { instrumentName = "Violin 1" }
<< \global \violinOne >>
\new Staff \with { instrumentName = "Violin 2" }
<< \global \violinTwo >>
\new Staff \with { instrumentName = "Viola" }
<< \global \viola >>
\new Staff \with { instrumentName = "Cello" }
<< \global \cello >>
>>
\layout { }
\midi { }
}