On mar, 2001-10-02 at 14:36, Antoniouk Sergio wrote:
> I want create paper without any notation - clefs, barlines, notes -
> just five line staffs like this
>
> =======
>
> =======
>
> =======
>
> ...
Yes, but you'd better do it with TeX \ LaTeX. I get a script in the FAQ
who work perfectly.
I can't find it in the FAQ now, I put it in attachment. (be carefull
it's not sure that it's the original one, I may have change some things
for having more staff in a page, but it's not very had to understand).
> I need it for writing.
>
> Is it possible with lilypond?
>
> Also I may need to create paper with staffs and clefs for orchestral
> scores.
>
> I try some ways, but none works.
>
> Can anybody help me, please?
>
> _______________________________________________
> Lilypond-user mailing list
> [EMAIL PROTECTED]
> http://mail.gnu.org/mailman/listinfo/lilypond-user
>
--
Olivier Gu�ry [EMAIL PROTECTED]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% notepaper.tex
% Mats Bengtsson, 18/5 2000
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper]{article}
\usepackage{ifthen}
\usepackage[noheadfoot,hmargin=15mm,vmargin=20mm]{geometry}
\pagestyle{empty}
\newcounter{staffnumber}
\newlength{\interstaffline}
\newcommand{\drawline}{\hbox{\rule{\textwidth}{0.5pt}}
\nointerlineskip\vskip\interstaffline\nointerlineskip}
\newcommand{\printstaff}{\vfill
\vbox{\drawline\drawline\drawline\drawline\drawline}
\vfill}
\begin{document}
\typeout{}\typeout{}
\typein[\staffsize]{Type in the staff size (20pt is a common value):}
\setlength{\interstaffline}{\staffsize}
\setlength{\interstaffline}{.25\interstaffline}
\typeout{}
\typein[\num]{Type in the number of staffs:}
\setcounter{staffnumber}{\num}
\mbox{} % To get a starting point for the \vfill
\whiledo{\value{staffnumber}>0}{%
\printstaff \addtocounter{staffnumber}{-1}}
\end{document}