music/divisi.ly
2017-02-27 18:14:39 -08:00

48 lines
826 B
Plaintext

\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
}
guitarOne = {
\relative c, {
}
}
guitarTwo = {
}
\score {
<<
\new Staff \with { \clef "G_8" } {
\globalConfig
\guitarOne
}
\new Staff \with { \clef "G_8" } {
\globalConfig
\guitarTwo
}
>>
\layout {
\context {
\Staff \RemoveEmptyStaves
\override Glissando.minimum-length = #4
\override Glissando.springs-and-rods = #ly:spanner::set-spacing-rods
\override Glissando.thickness = #2
}
}
}