lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Text formatting question


From: chiffonMyst
Subject: Text formatting question
Date: Tue, 11 Jun 2013 21:49:04 -0700 (PDT)

note_worksheet_G_position.pdf
Hey everyone, this is my first post. I'm somewhat new to lilypond... I've been using it for a year now and I am completely in love with it. I'm still learning and could use some help on a note worksheet I created.

I've created a basic note learning worksheet to give to my piano students. What I would like to do is add some text (or possible a piano-key graphic) to the block of open white space next to the easy-note heads. I've been reading through the manual for about 3 hours now and can't seem to find anything that works.

The other thing I would like to do is give a little more spacing after the title... I've used after-title-spacing but every time I try it nothing happens.

So here is my code. I spent a while on it and now it compiles without any error messages. Any critiques are welcome. If you have any ideas on how to refactor some parts or best practices and such I would deeply appreciate it.

\version "2.16.0"
#(set-global-staff-size 35)
\header {
	title = "G Position Notes"
	tagline = ""
	}

demo_treble = \relative c' {
	\clef treble
	\key c \major
	\easyHeadsOn

  g'4_\markup { Right Hand Notes } a b c d 

}


demo_bass = \relative c' {
	\clef bass
	\key c \major
	\easyHeadsOn

 g,4_\markup { Left Hand Notes } a b c d

}


treble = \relative c' {
  \clef treble
  \key c \major
  \hideNotes

c1 c c c c c c c c c

 
}
\addlyrics { G C D A B C B D A G }




bass = \relative c' {
	\clef bass
	\key c \major
	\hideNotes

c1 c c c c c c c c c

}
\addlyrics { D B C G A G C D A B }



\score {

	\new Staff 
	\with { \remove Bar_engraver
			\remove "Time_signature_engraver" } 
	\demo_treble
}
\score {
	\new Staff
	\with { \remove Bar_engraver
			\remove "Time_signature_engraver" }
	\demo_bass
}		
		\markup { Draw in the notes for each letter name }
\score {
	\new Staff
	\with { \remove "Time_signature_engraver" }
	\treble
}		
\score {
	\new Staff
	\with { \remove "Time_signature_engraver" }
	\bass
}

\layout {
  \context {
	
    \Score
    \remove "Bar_number_engraver"
	
  }
}


View this message in context: Text formatting question
Sent from the User mailing list archive at Nabble.com.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]