music/divisi.ly

48 lines
826 B
Plaintext
Raw Permalink Normal View History

2016-12-12 08:41:47 +00:00
\version "2.18.2"
\language "english"
\include "lib/guitar-bend.ily"
\header {
title = "Divisi"
composer = "Tommy Montgomery"
copyright = "(c) 2016 Tommy Montgomery"
}
globalConfig = {
\key fs \minor
\time 4/4
\numericTimeSignature
\tempo 4 = 104
\omit Voice.StringNumber
\override TupletBracket #'bracket-visibility = #'if-no-beam
}
2017-02-28 02:14:39 +00:00
guitarOne = {
\relative c, {
2016-12-12 08:41:47 +00:00
}
}
2017-02-28 02:14:39 +00:00
guitarTwo = {
}
2016-12-12 08:41:47 +00:00
\score {
<<
\new Staff \with { \clef "G_8" } {
\globalConfig
\guitarOne
}
2017-02-28 02:14:39 +00:00
\new Staff \with { \clef "G_8" } {
\globalConfig
\guitarTwo
}
2016-12-12 08:41:47 +00:00
>>
\layout {
\context {
\Staff \RemoveEmptyStaves
\override Glissando.minimum-length = #4
\override Glissando.springs-and-rods = #ly:spanner::set-spacing-rods
\override Glissando.thickness = #2
}
}
}