From: fred Date: Sun, 24 Mar 2002 20:01:53 +0000 (+0000) Subject: lilypond-0.1.33 X-Git-Tag: release/1.5.59~3639 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=122dfca698905ea9711c387f66d6fc92e29ad949;p=lilypond.git lilypond-0.1.33 --- diff --git a/lily/paper-def.cc b/lily/paper-def.cc index 3056dc6a21..0f9ee0f4d0 100644 --- a/lily/paper-def.cc +++ b/lily/paper-def.cc @@ -161,3 +161,14 @@ Paper_def::lookup_l() } IMPLEMENT_IS_TYPE_B1(Paper_def, Music_output_def); + +String +Paper_def::TeX_output_settings_str () const +{ + + String s("\n "); + s += lookup_p_->texsetting + "%(Tex id)\n"; + for (Assoc_iter i (*real_vars_p_); i.ok(); i++) + s += String ("\\def\\mudelapaper") + i.key () + "{" + i.val () + "}\n"; + return s; +}