From: fred Date: Sun, 24 Mar 2002 20:03:26 +0000 (+0000) Subject: lilypond-0.1.33 X-Git-Tag: release/1.5.59~3564 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3ed4a8c88c32b154af762c63d46b20c9e14f9ce1;p=lilypond.git lilypond-0.1.33 --- diff --git a/TODO b/TODO index b38448220b..f15bfb654c 100644 --- a/TODO +++ b/TODO @@ -69,7 +69,7 @@ PROJECTS * Unicode support? - 16 bit Strings - -u switch - - detect of 16/8 bit files + - detect of 16/8 bit files - examples to go with it. * Spring_spacer: @@ -79,9 +79,11 @@ PROJECTS - used fixed point fp * \header - - write perl script for handling it into databases + - write perl/python script for handling it into databases - write TeX macros to generate titles - adapt make-website to use \header info. + - output header info to MIDI too. + * Makefile stuff: - Use Automake diff --git a/lily/include/paper-def.hh b/lily/include/paper-def.hh index d87a5e637d..826918fa2f 100644 --- a/lily/include/paper-def.hh +++ b/lily/include/paper-def.hh @@ -83,6 +83,7 @@ public: Real geometric_spacing(Moment) const; Real arithmetic_constant(Moment minimal_mom) const; Real arithmetic_spacing( Moment mom,Real constant) const; + String TeX_output_settings_str () const; }; #endif // Paper_def_HH diff --git a/lily/p-score.cc b/lily/p-score.cc index c2af728860..39ada58c3b 100644 --- a/lily/p-score.cc +++ b/lily/p-score.cc @@ -206,8 +206,9 @@ Paper_score::tex_output () { tex_out << header_l_->TeX_string(); } + tex_out << paper_l_->TeX_output_settings_str (); + - tex_out << "\n "<< paper_l_->lookup_l ()->texsetting << "%(Tex id)\n"; if (experimental_features_global_b) tex_out << "\\turnOnExperimentalFeatures%\n"; super_elem_l_->output_all ();