Can someone help me to transpose the following attached file from Gmajor to
Fmajor? I know it must seem simple, but I am working on a larger project
with more complicated music.
Thanks.
--
In Christ,
Michael D
\version "2.12.2"
\include "english.ly"
\include "gregorian.ly"
\header {
title = "The Divine Liturgy"
subtitle = "Great Ektenia"
composer = "Znamenny Chant"
}
global = {
\key g \major
\override Staff.TimeSignature #'stencil = ##f
\override Staff.BarLine #'stencil = ##f
}
move = { \bar "" \break }
soprano = \relative c'' {
\global
% Music follows here.
b4(a b c d2 c b a) g1 \divisioMaxima
}
}
alto = \relative c' {
\global
% Music follows here.
g'1.(~g1 d2) g1 \divisioMaxima
}
tenor = \relative c' {
\global
% Music follows here.
b4(a b c d2 c b a) g1 \divisioMaxima
}
bass = \relative c {
\global
% Music follows here.
g'1.(~g1 d2) g1 \divisioMaxima
}
verse = \lyricmode {
% Lyrics follow here.
A -- men.
}
move = { \bar "" \break }
\score {
\new ChoirStaff <<
\new Staff \with {
midiInstrument = "string ensemble 1"
instrumentName = \markup \center-column { "S" "A" }
} <<
\new Voice = "soprano" { \voiceOne \soprano }
\new Voice = "alto" { \voiceTwo \alto }
>>
\new Lyrics \lyricsto "soprano" \verse
\new Staff \with {
midiInstrument = "string ensemble 1"
instrumentName = \markup \center-column { "T" "B" }
} <<
\clef bass
\new Voice = "tenor" { \voiceOne \tenor }
\new Voice = "bass" { \voiceTwo \bass }
>>
>>
\layout { ragged-last=##f }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 120 4)
}
}
}
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user