Re: Generate staff-less chord and lyrics sheet

2018-12-12 Thread Annette Kusma
Hi Kieren, thanks for your replies. Your first solution was sort of working for me. Seems like a good idea to develop a better solution. One problem I immediately ran into was syncopes at measure boundaries. Assume that the information given to Lilypond is for example that a syllable starts at

Re: Generate staff-less chord and lyrics sheet

2018-12-09 Thread Thomas Morley
Am Sa., 8. Dez. 2018 um 10:08 Uhr schrieb Johan Vromans : > > On Thu, 6 Dec 2018 21:15:43 +0100, Annette Kusma > wrote: > > > The output should look something like this: > > > > C F C > > Mary had a little lamb > > F G C > > Its fleece was white as

Re: Generate staff-less chord and lyrics sheet

2018-12-08 Thread Johan Vromans
On Thu, 6 Dec 2018 21:15:43 +0100, Annette Kusma wrote: > The output should look something like this: > > C F C > Mary had a little lamb > F G C > Its fleece was white as snow > > I could simply write my sheet in some office programme, Instead of

Re: Generate staff-less chord and lyrics sheet

2018-12-07 Thread Kieren MacMillan
Hi Carl (et al.), > I really find Kieren's solution to be interesting. I’m glad! Below, I’ve done a little custom-context-building, in the hopes we might crowd-source a real solution to this problem (which crops up on the list fairly often). I’ve added a way (using tags) to break lyrics at

Re: Generate staff-less chord and lyrics sheet

2018-12-06 Thread Carl Sorensen
On 12/6/18, 6:41 PM, "Carl Sorensen" wrote: What I've been using is Chordii/ChordPro. It's not as powerful as LilyPond, but also not as complicated. Oops -- that's my mistake. I haven't been using Chordii, I've been using the gchords package in LaTeX, which is similar.

Re: Generate staff-less chord and lyrics sheet

2018-12-06 Thread Carl Sorensen
On 12/6/18, 1:15 PM, "Annette Kusma" wrote: Hi, I have a working .ly-file that displays a staff with notes, lyrics and chordnames, all correctly counted/aligned. I wonder if there is any command to generate a sheet with only chords and lyrics, no staves.

Re: Generate staff-less chord and lyrics sheet

2018-12-06 Thread Kieren MacMillan
Hi Annette, Here’s a simpler version that seems to work. Kieren. \version "2.19.80" theMelody = { e'4 d' c' d' e'4 4 4 4 d'4 4 e' d' c'2. r4 } theChords = \chordmode { c2 f c1 f2 g c1 } theWords = \lyricmode { Mar -- y had a lit -- tle lamb, Its fleece was white as snow.

Re: Generate staff-less chord and lyrics sheet

2018-12-06 Thread Kieren MacMillan
Hi Annette, > I wonder if there is any command to generate a sheet with only chords > and lyrics, no staves. Here’s one attempt. You should be able to take it from here. Hope this helps! Kieren. %%% SNIPPET BEGINS \version "2.19.80" theMelody = { e'4 d' c' d' e'4 4 4 4 d'4 4 e' d'

Re: Generate staff-less chord and lyrics sheet

2018-12-06 Thread Andrew Bernard
Hi Annette, A minimal working example would be good (MWE). But can't you simply hide the staff? See NR for 2.19.82 Section 1.6.2, subsection Hiding Staves. [Works in earlier lilypond versions as well.] "Staff lines can be hidden by removing the Staff_symbol_engraver from the Staff context. As