Hi,
One possibility is to attach the numbers as text scripts to invisible
note heads. The attached file could be used as a starting point.
It's probably possible to use the tablature mechanism as well.
/Mats
Carlos Betancourt wrote:
Hello lilyponders,
I'm trying to transcribe my teacher's solfegio class notes into latex
using lilypond-book. For our very first lesson I need to print the line
and interline numbers in the staff (including the clef simbol), as
follows:
----------------------------5-----------------
4
----------------------4-----------------------
3
-----------------3----------------------------
2
-----------2----------------------------------
1
-----1----------------------------------------
How can I do that using lilypond?
Thanks in advance for your help.
Carlos
_______________________________________________
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user
--
=============================================
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44 STOCKHOLM
Sweden
Phone: (+46) 8 790 8463
Fax: (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~matsb
=============================================
\score{
\notes\relative c'{
e1^"1" g-"2" b-"3" d-"4" f-"5"
}
\paper{
\translator{
\ScoreContext
scriptHorizontal = ##t
TextScript \set #'extra-offset = #'(-0.5 . -0.5)
NoteHead \override #'transparent = ##t
defaultBarType = #""
}
}
}