music/album4/next.ly
2025-05-02 12:39:08 -07:00

129 lines
2.6 KiB
Plaintext

\version "2.24.0"
\language "english"
\header {
title = "Next"
composer = "Tommy Montgomery"
tagline = ""
}
global = {
\set Staff.printKeyCancellation = ##f
\numericTimeSignature
\compressEmptyMeasures
\override TupletBracket.bracket-visibility = #'if-no-beam
\override MultiMeasureRest.expand-limit = #3
\override Score.ChordName.font-name = #"Noto Serif"
\override Score.ChordName.font-size = #0
\override Score.LyricText.font-name = #"Noto Serif"
\override Score.LyricText.font-size = #0
\override Staff.OttavaBracket.font-series = #'normal
\set Staff.ottavationMarkups = #ottavation-simple-ordinals
\tempo 4 = 82
\key g \minor
}
guitarOne = \relative c' {
\time 4/4
\global
a'16( g) ef d bf' a, bf g'\glissando( fs) d bf g ef' c d c' |
bf fs g d' cs gs a e' g d ef a, bf d, ef c |
d d d d d8 d16 d d d d8
}
guitarTwo = \relative c' {
\global
}
guitarOneStaff = \new Staff \with { midiInstrument = "distorted guitar" } \guitarOne
guitarTwoStaff = \new Staff \with { midiInstrument = "acoustic guitar (steel)" } \guitarTwo
chordExceptionMusic = {
<c e g b d'>1-\markup { "maj9" }
<c e g b fs'>1-\markup { "maj7" \sharp "11" }
<c ef f g bf>1-\markup { "m7sus4" }
<c ef gf bff>1-\markup { \super "°7" }
<c e g d'>1-\markup { "add9" }
<c ef g d'>1-\markup { "m(add9)" }
<c e fs as>1-\markup { \super { \sharp "11" \sharp "13" } }
<c g>1-\markup { "5" }
<c e g b>1-\markup { "maj7" }
<c f g>1-\markup { "sus4" }
<c d g>1-\markup { "sus2" }
}
chordExceptions = #(append
(sequential-music-to-chord-exceptions chordExceptionMusic #t)
ignatzekExceptions
)
chordValues = \chordmode {
\global
\set chordNameExceptions = #chordExceptions
\set majorSevenSymbol = \markup "maj7"
}
chordNames = \new ChordNames {
\set chordChanges = ##t
\set chordNameExceptions = #chordExceptions
\chordValues
}
#(set-global-staff-size 18)
\book {
\paper {
system-system-spacing =
#'((basic-distance . 8)
(minimum-distance . 4)
(padding . 4)
(stretchability . 60)
)
}
\score {
<<
\chordNames
\guitarOneStaff
\guitarTwoStaff
>>
\layout {
% indent = #0
\context {
\Staff \RemoveEmptyStaves
% \override Glissando.springs-and-rods = #ly:spanner::set-spacing-rods
\override VerticalAxisGroup.remove-first = ##t
}
}
}
}
\score {
\unfoldRepeats {
<<
\transpose c c, {
\guitarOneStaff
}
\transpose c c, {
\guitarTwoStaff
}
>>
}
\midi {}
}