]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.33
authorfred <fred>
Sun, 24 Mar 2002 20:01:53 +0000 (20:01 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:01:53 +0000 (20:01 +0000)
lily/paper-def.cc

index 3056dc6a2110b821c8f3d4ba1a9731e15d0ef8e0..0f9ee0f4d0fdd9bd52cbc50f3d6d9dde9f303188 100644 (file)
@@ -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<String,Real> i (*real_vars_p_); i.ok(); i++)
+    s += String ("\\def\\mudelapaper") + i.key () + "{" + i.val () + "}\n";
+  return s;
+}