@end example
+@subsubsection Can I make blank manuscript paper with LilyPond?
+
+Theoretically, yes but it is easier to do with TeX:
+
+@example
+\def\foo{\hbox{\vrule width 15.0cm height 0.5pt depth 0.0pt}
+\nointerlineskip
+\vskip 5pt\nointerlineskip}
+\def\musicline{\vbox {
+ \foo\foo\foo\foo\foo
+}\par}
+
+\musicline
+\musicline
+\musicline
+\musicline
+\bye
+
+@end example
+
+
@node Development, Running, How do I -, FAQ - GNU LilyPond FAQs
@section Development
}
s = get_property (span_req_l_drul_[START]->span_type_str_ + "Spanner");
+
+
+ /*
+ TODO: Use symbols.
+ */
if (gh_string_p (s)) //&& ly_scm2string (s) != "hairpin")
{
cresc_p_->set_elt_property ("spanner", s);
rc = \spanrequest \stop "crescendo"
rced = \spanrequest \stop "decrescendo"
-%% urg, these don't work yet.
-%% must set manually
-xcresc = {
-%\spanrequest \start "crescendo"
-\property Voice.crescendoText = "cresc."
-\property Voice.crescendoSpanner = "dashed"
+cresc = \notes {
+ \commandspanrequest \start "crescendo" ;
+ \property Voice.crescendoText = "cresc."
+ \property Voice.crescendoSpanner = "dashed-line"
}
-xendcresc = {
-%\spanrequest \start "crescendo"
+endcresc = \notes {
+\commandspanrequest \stop "crescendo";
\property Voice.crescendoText = ##f
\property Voice.crescendoSpanner = ##f
}
+%{
+
cresc = \spanrequest \start "crescendo"
endcresc = \spanrequest \stop "crescendo"
+%}
+
% better name sustainstart/stop?
sustaindown = \spanrequest \start "Sustain"
sustainup = \spanrequest \stop "Sustain"