From 122dfca698905ea9711c387f66d6fc92e29ad949 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:01:53 +0000 Subject: [PATCH] lilypond-0.1.33 --- lily/paper-def.cc | 11 +++++++++++ 1 file changed, 11 insertions(+) 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; +} -- 2.39.5