Re: Formatting for a tie

2023-10-29 Thread Samuel Sloniker
Thank you everyone! I got the slurs formatted correctly.

\version "2.22.1"

\header {
  title = "Yo sé a Quién he creído"
  composer = "James McGranaham"
  poet = "Daniel W. Whittle, tr. Samuel L. Sloniker"
  copyright = \markup {
\center-column {
  "Traducción © 2023 Samuel L. Sloniker"
  "Creative Commons Atribución 4.0 Internacional"
  \line {
\with-url "https://creativecommons.org/licenses/by/4.0/deed.es;
  "https://creativecommons.org/licenses/by/4.0/deed.es;
  }
}
  }
}

\new GrandStaff <<
  \new Staff {
\relative c' {
  \time 4/4
  \key c \minor
  r2. 4
  4. 8 << { aes8[( g]) } \\ { ees4 } >> << { f8[( ees]) } \\ 
{ bes4 } >>
  4   
  4. 8 [( ]) [( ])
  2. 4
  4. 8 << { aes8[( g]) } \\ { ees4 } >> << { f8[( ees]) } \\ 
{ bes4 } >>
  4   
  4. 8 << { c'8[( bes]) } \\ { d,4 } >> << { aes'8[( f]) } 
\\ { d4 } >>
  2. \bar "||" \break \mark "Coro" 8 8
  4 4. 8 [ ]
  4 4. 8  []
  4 4. 8 [ ]
  4 2 4
   4. 8 [ ]
  4 2 4 % in original, 4 is 8 twice
  4. 8 4 
  2.
}
  }
  \addlyrics {
\set stanza = #"1. "
No | sé por qué _ Dios _ | me ha da -- do | Su gran gra -- ci -- | a, 
ni_por | qué Cris -- to _ me _ | re -- di -- mió del_pe -- | ca -- do y _ del _ 
| mal. Pe -- ro sé a Quién he cre -- i -- do y estoy se -- gu -- ro de que Él 
pue -- de guar -- dar lo que le con -- fí -- e pa -- ra a -- quel dí -- a.
  }
  \addlyrics {
\set stanza = #"2. "
No | sé có -- mo _ la _ | sal -- va -- ción a | mí me im  -- par -- | tió, 
ni | có -- mo te -- _ ner _ | fe en Él Me_dio | paz en mi _ al -- _ | ma.
  }
  \addlyrics {
\set stanza = #"3. "
No | sé có -- mo _ el_Es -- _ | pír -- i -- tu me | con -- ven -- ce de | 
mal, dán -- | do -- me fe _ en _ | Cris -- to a tra -- | vés de Su _ Ver -- _ | 
bo.
  }
  \addlyrics {
\set stanza = #"4. "
No | sé qué del _ bien _ | o del mal ten -- | dré en mi vi -- | da, de | 
prue -- bas o _ fa -- _ | ci -- li -- dad, Antes | de que Lo _ ve -- _ | a.
  }
  \addlyrics {
\set stanza = #"5. "
No | sé cuan -- do _ ven -- _ drá Cri -- sto, de no -- che o dí -- a, ni si 
cru -- zar -- _ é _ el vall -- e, o_ser -- é arr -- e -- ba -- ta -- _ do.
  }

  \new Staff {
\relative c {
  \clef "bass"
  \time 4/4
  \key c \minor
  r2. 4
  4. 8 << { c'8[( bes]) } \\ { ees,4 } >> << { aes8[( 
g]) } \\ { ees4 } >>
 
  4. 8 4 << { d8[( ees]) } \\ { bes'4 } >>
  2. 4
  4. 8 << { c'8[( bes]) } \\ { ees,4 } >> << { aes8[( 
g]) } \\ { ees4 } >>
 
  4. 8 4 << { f'8[( aes]) } \\ { bes,4 } >>
  2. \bar "||" \break 8 
  4 4. 8 [ ]
  4 4. 8 [ ]
  4 4. 8 [ ]
  4 2 4
   4. 8 [ ]
  4 2 4 % in original, 4 is 
actually 8 twice
  4. 8 << { bes8[( c]) } \\ { bes'4 } >> 
  2.
}
  }
>>



\layout {
  indent = #0
  \context {
\Score
\remove "Bar_number_engraver"
  }
}




Re: Formatting for a tie

2023-10-29 Thread David Kastrup
Jean Abou Samra  writes:

> Le samedi 28 octobre 2023 à 21:21 -0400, Samuel Sloniker a écrit :
>> How can I format this tie in Lilypond? I'm writing a Lilypond file for an
>> existing song; this image is from a scan of a hymnal.
>
>
> If you are having trouble finding the answer to this in the
> documentation or Web searches, it's because the term for this bow is “
> slur” (not “tie”). A tie is between two notes having the same pitch,
> and makes the second silent so that the first one is effectively
> prolonged.

Not every instrument is purely percussive, and even most percussive
instruments have some way of ending a note and/or providing for letting
it decay naturally.  Your description makes it sound as if there is no
difference between a rest and a note continued by a tie.

-- 
David Kastrup



Re: Formatting for a tie

2023-10-29 Thread Jean Abou Samra
Le samedi 28 octobre 2023 à 21:21 -0400, Samuel Sloniker a écrit :
> How can I format this tie in Lilypond? I'm writing a Lilypond file for an
> existing song; this image is from a scan of a hymnal.


If you are having trouble finding the answer to this in the documentation or Web
searches, it's because the term for this bow is “
slur” (not “tie”). A tie is between two notes having the same pitch, and makes
the second silent so that the first one is effectively prolonged.




signature.asc
Description: This is a digitally signed message part


Re: Formatting for a tie

2023-10-28 Thread Werner LEMBERG

> How can I format this tie in Lilypond? I'm writing a Lilypond file
> for an existing song; this image is from a scan of a hymnal.

```
{
  << { a'8[( g']) } \\
 { e'4 } >>
}
```


Werner