The Mudcat Café TM
Thread #164373   Message #3932652
Posted By: GUEST,Jon
22-Jun-18 - 11:37 AM
Thread Name: ABC versus Lilypond
Subject: RE: ABC versus Lilypond
I will try to call it quits now but wanted to try something else


\version "2.18.2"

\header {
title = "Diadem"
subtitle = "Arr. Ian Russell"
}

global = {
\time 3/4
\key g \major
\tempo 4=112
}


soprano =   \relative d' {
    \global
    \partial4
    d4 | g2 a4 |b8.( c16 d4) g, | a g fis | \break
    g2 fis8( [e]) | d4. e8 d [c] | b4 d g | e c' c | \break
}

alto = \relative d' {
    \global
    %\partial4
    b | d2 d4 | d2 d4 | e d d | \break
    d2 d8( c) | b4. c8 b [a] | g4 b d | e2 e4 | \break
}

tenor = \relative d' {
    \global
    g4 | b g fis | g8.( a16 b4) g | c b a | \break
    g2 a4 | g4. g8 g [g] | g2 g4 | g2 g4 | \break
}

bass = {
    \clef bass
    \relative d, {
    \key g \major
    g | g b d | g2 b,4 | c d d | \break
    g,2 d'4 | g,4. g8 g [g] | g2 g4 | c2 a4 | \break
    }
}

wordsone = \lyricmode {
All hail the power __ of Je -- s -- us
name, Let __ an -- gels prost -- rate fall ____ Let an- ____ -gels
}

wordstwo = \lyricmode {
All hail ____ the power __ of Je -- s -- us
name, Let an -- gels pros -- trate fall Let an- __ -gels
}

\score {
   <<
    \new Staff \with {
      midiInstrument = "church organ"
      instrumentName = \markup \center-column { Soprano}
    }{ \soprano }
    \addlyrics { \wordsone}
    \new Staff \with {
      midiInstrument = "church organ"
      instrumentName = \markup \center-column { Alto }
    }{ \alto }
    \new Staff \with {
      midiInstrument = "church organ"
      instrumentName = \markup \center-column { Tenor }
    }{ \tenor }
    \addlyrics { \wordstwo }
    \new Staff \with {
      midiInstrument = "rock organ"
      instrumentName = \markup \center-column { Bass }
    }{ \bass }
>>
\layout { }
\midi { }
}