Re: Fwd: re: removing staff and clef w/o removing bar lines and brackets

2017-07-16 Thread Reilly Farrell
It works!  Issue resolved - thank you so much for your support.

On Wed, Jul 12, 2017 at 5:50 AM, Karlin High  wrote:

> On 7/11/2017 11:11 AM, Reilly Farrell wrote:
> > I'm creating some sight-singing examples for a class
>
> Are you aware of this sight-singing textbook...
> http://www.lightandmatter.com/sight/sight.html
> ...made with Lilypond and LaTeX, with source code available and
> customization encouraged under CC-BY-SA license?
> --
> Karlin High
> Missouri, USA
>



-- 
Reilly Farrell
reillycfarr...@gmail.com
(650) 787-2751
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Fwd: re: removing staff and clef w/o removing bar lines and brackets

2017-07-12 Thread Karlin High
On 7/11/2017 11:11 AM, Reilly Farrell wrote:
> I'm creating some sight-singing examples for a class

Are you aware of this sight-singing textbook...
http://www.lightandmatter.com/sight/sight.html
...made with Lilypond and LaTeX, with source code available and 
customization encouraged under CC-BY-SA license?
--
Karlin High
Missouri, USA
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Fwd: re: removing staff and clef w/o removing bar lines and brackets

2017-07-11 Thread Malte Meyn



Am 11.07.2017 um 18:11 schrieb Reilly Farrell:

Hi All,



I'm creating some sight-singing examples for a class and would like to
start with some examples with no staff,no clef,no key signature, though
keeping bar lines and system brackets (for duet examples) (Solfege
syllables are provided as lyrics.)


How about this?

\version "2.18.2"

\new ChoirStaff <<
  \new Staff \relative {
c'4 d e f g1
  }
  \addlyrics {
do re mi fa so
  }
  \new Staff \relative {
g'2 c~
c b
  }
  \addlyrics {
so do ti
  }
>>

\layout {
  \context {
\Staff
\omit Clef
\omit StaffSymbol
\omit TimeSignature
\omit LedgerLineSpanner
  }
}

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Fwd: re: removing staff and clef w/o removing bar lines and brackets

2017-07-11 Thread Reilly Farrell
Hi All,



I'm creating some sight-singing examples for a class and would like to
start with some examples with no staff,no clef,no key signature, though
keeping bar lines and system brackets (for duet examples) (Solfege
syllables are provided as lyrics.)



Currently I am doing something like this: (though this makes bar lines
disappear and I want to keep bar lines)



melody = { c4 d e2 }

solfege = \lyricmode { do re mi ...}

\score {

<<

% beginning of critical code

\new Staff \with {   \remove "Staff_symbol_engraver" }

{ \override Staff.Clef #'stencil = ##f

%end of critical code

\melody

}

\addlyrics \solfege

>>

\midi{}

\layout{}

}



Are there ways to make the staff disappear and keep barlines and system
braces?



Thanks much
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user