%****************************** \version "2.10.2" %****************************** numeroHimno = "69" tituloHimno = "Digno Es El Cordero" %************************************************************ \paper { oddHeaderMarkup = \markup { \right-align \bold \large \numeroHimno } print-page-number = ##f between-system-space = 0.3\cm head-separation = 0.0\cm foot-separation = 0.0\cm ragged-bottom=##t ragged-last-bottom=##t } %************************************************************ %************************************************************ \header { title = \tituloHimno copyright = "Iglesia Bautista de Jesucristo" tagline = "" meter = \markup { "(CAPO I)" } } %************************************************************ %************************************************************ acordes= \chordmode { \set chordChanges = ##t } %************************************************************ #(define (parenthesis-ignatzek-chord-names in-pitches bass inversion context) (markup #:line ("(" (ignatzek-chord-names in-pitches bass inversion context) ")"))) %************************************************************ acordesConCapo= << \chordmode { \set chordChanges = ##t \set chordNameFunction = #parenthesis-ignatzek-chord-names \transpose ees d { } } >> %************************************************************ %************************************************************ tope = \relative c' { \key ees \major \override Staff.TimeSignature #'style = #'() \time 4/4 << \new Voice = "melodia" { \autoBeamOff 8 4 8 \stemUp 2 \stemDown 8 4 \stemUp \break << {\voiceOne g8 g f f ees } \new Voice {\voiceTwo \autoBeamOff g8 g f f ees } >> \oneVoice 2 8 4 8 \stemUp 2 \break \break %************************************************************ \stemDown 8 4 \stemUp 8 << {\voiceOne ees2} \new Voice {\voiceTwo ees2} >> } >> \new Voice = "melodiaCoro" { \autoBeamOff } } %************************************************************ %************************************************************ versoUno = \lyricmode { \set stanza = "1. " } versoDos = \lyricmode { \set stanza = "2. " } versoTres = \lyricmode { \set stanza = "3. " } Coro = \lyricmode { \set stanza = "Coro " } %************************************************************ %************************************************************ bajo = \relative c' { \clef bass \key ees \major \override Staff.TimeSignature #'style = #'() \time 4/4 << \new Voice = "bajoVerso" { \autoBeamOff } >> \new Voice = "bajoCoro" { \autoBeamOff } } %************************************************************ \score { << \new ChordNames { \acordes } \new ChordNames { \acordesConCapo } \context ChoirStaff << \new Staff = tope { \tope } \new Lyrics \lyricsto "melodia" \versoUno \new Lyrics \lyricsto "melodia" \versoDos \new Lyrics \lyricsto "melodia" \versoTres \new Staff = bajo { \bajo } >> >> \layout { indent = 0 \context { \ChoirStaff \accepts "Lyrics" } \context { \Score \remove "Bar_number_engraver" } \context { \Lyrics \override LyricSpace #'minimum-distance = #1.5 } \context { \Lyrics \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) } \context { \ChordNames \override ChordName #'font-size = #1 } } } nombreAcordes= \chordmode { \override ChordNames.ChordName #'extra-offset = #'(-3 . 0) d } posicionesAcordes= \lyricmode { \markup {\fret-diagram-terse #"x;x;o;2;3;2;"} } \markup { \bold "Acordes Usados" } \score{ << \new ChordNames { \nombreAcordes } \new Lyrics \posicionesAcordes >> \layout{ indent = 0.5\cm ragged-right = ##t \context { \Score \remove "Bar_number_engraver" } \context{ \Lyrics \override LyricSpace #'minimum-distance = #2.0 } } }